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.