@difflabai/ats-cli
v1.2.0
Published
CLI for Agent Task Service - task orchestration between AI agents and humans
Maintainers
Readme
ATS Skill
CLI skill for the Agent Task Service (ATS) - a task orchestration platform that enables intelligent handoffs between AI agents and humans.
Installation
npx skills add difflabai/ats-skillThis adds the ats command to your Claude Code environment.
What it does
The ATS skill allows Claude Code to:
- Create, list, claim, and complete tasks
- Subscribe to real-time task events via WebSocket
- Send messages on task threads
- Coordinate work between agents and humans
- Manage organizations and projects
Usage
See SKILL.md for complete documentation including:
- All available commands
- Task lifecycle and status flow
- Common patterns and examples
- Configuration options
Quick Example
# List pending tasks
ats list
# Create a task
ats create "Review the pull request" --priority 8
# Claim and work on a task
ats claim 123
ats message add 123 "Working on this now"
ats complete 123
# Watch for real-time events
ats watch --channel supportConfiguration
The CLI can be configured via:
- Global config:
~/.ats/config - Project config:
.ats/config(walks up directory tree) - Environment variables:
ATS_URL,ATS_ORG,ATS_PROJECT, etc. - CLI flags:
--url,--org,--project, etc.
Priority: CLI flags > environment variables > project config > global config > defaults
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Submit a pull request
License
MIT - see LICENSE
