triclaude

Automate TriClaude pull, sync, and launch with localhost and TailScale URLs.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/yousufjoyian/claude-skills --skill triclaude
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: triclaude
Source: https://github.com/yousufjoyian/claude-skills/tree/main/triclaude
Command: npx skills add https://github.com/yousufjoyian/claude-skills --skill triclaude

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

TriClaude management simplifies pulling latest code, syncing to runtime, ensuring all services are running, and providing localhost and TailScale access URLs for development and debugging.

Core Features & Use Cases

  • Pull latest: synchronizes the local TriClaude repository with GitHub.
  • Sync to runtime: rsyncs the project into the runtime cache for fast launches.
  • Check & start services: verifies essential services and starts any that are missing.
  • Provide URLs: yields both localhost and TailScale access points for developers.

Quick Start

Use the triclaude skill to pull the latest code, sync to runtime, check service status, and obtain access URLs. Example workflow:

  • cd /home/yousuf/local_workspaces/triclaude && git pull
  • rsync -av --exclude=node_modules --exclude=package-lock.json --exclude=dist --exclude=.git /home/yousuf/local_workspaces/triclaude/ /home/yousuf/dev/cache/triclaude/
  • curl -s http://localhost:7690/api/health > /dev/null && echo "Project API: UP" || echo "Project API: DOWN"
  • Retrieve local and TailScale URLs as described in the Quick Start guide.

Frequently Asked Questions about triclaude

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I pull and sync TriClaude code to my local runtime?

Pull the latest TriClaude repository from GitHub, then rsync it to your runtime cache, excluding node_modules, package-lock.json, dist, and .git. This synchronizes your development environment with the current codebase for fast service launches.

Can I access TriClaude services over both localhost and TailScale?

Yes, TriClaude exposes both localhost and TailScale URLs for the web UI, API, Consigliere, bridge, and dynamic terminals. This enables development and debugging across local and remote network access points.

What services does TriClaude orchestrate and how do I verify they're running?

TriClaude orchestrates the web UI, API, Consigliere, bridge, and dynamic terminals. Health checks via curl against localhost:7690/api/health confirm service status before providing access URLs.

Is TriClaude suitable for multi-service development environments?

Yes, TriClaude automates pull, sync, and launch workflows for multi-service orchestration. It enforces operational requirements including code retrieval, runtime sync, service health checks, and URL provisioning in development contexts.

What DevOps setup do I need before using TriClaude?

You need git for repository pulls, rsync for cache synchronization, curl for health checks, and TailScale configured for remote access. TriClaude automates the orchestration once these prerequisites are in place.