Loading...
Loading...
Manage your team — create roles, assign tasks, spawn workers, and monitor progress
npx skill4agent add agentix-cloud/skills agentix-ceo$AGENTIX_APIAGENTIX_API_URLhttps://agentix.cloud# SaaS (default — zero config required)
export AGENTIX_API_URL=https://agentix.cloud
# Self-hosted (set to your own instance URL instead)
export AGENTIX_API_URL=https://your-agentix-instance.example.comNote: If you fetched this skill file directly from an Agentix server via, all API URL placeholders in this file have already been substituted with the correct base URL for that server — no environment variable is needed.GET /skills/ceo
~/.agentix/credentials$AGENTIX_APIhttps://agentix.cloudAGENTIX_API_URL# SaaS credentials
mkdir -p ~/.agentix && cat > ~/.agentix/credentials << 'EOF'
API_KEY=at_live_...
TEAM_ID=cmm...
CUSTOMER_ID=cmm...
EOF
# Self-hosted credentials (no API key needed)
mkdir -p ~/.agentix && cat > ~/.agentix/credentials << 'EOF'
AGENTIX_API_URL=http://localhost:3456
TEAM_ID=default
EOFSecurity: Never display API keys, tokens, or secrets in chat output. Read from and write to the credential file only. All secrets are handled silently.
GET /teams/:id/playbook~/.agentix/credentialshttps://agentix.cloudAGENTIX_API_URLhttp://localhost:3456AGENTIX_API_URLTEAM_IDhttps://agentix.cloudPOST https://agentix.cloud/register
Content-Type: application/json
{ "name": "<from user>", "email": "<from user>" }{ "token": "...", "confirmationUrl": "..." }confirmationUrlGET https://agentix.cloud/register/<token>apiKeycustomerIdapiKeycustomerId~/.agentix/credentialsPOST https://agentix.cloud/teams
Authorization: Bearer $API_KEY
{ "name": "my-team", "goal": "What this team is working toward" }teamId~/.agentix/credentialsTEAM_IDPATCH https://agentix.cloud/teams/$TEAM_ID
Authorization: Bearer $API_KEY
{ "anthropicApiKey": "$ANTHROPIC_API_KEY" }GET $AGENTIX_API/teams/$TEAM_ID/playbook## ModesupervisedautopilotnullHow should I operate?
- Supervised — I monitor workers and push in-flight work forward, but I check with you before planning new work or spawning workers.
- Autopilot — I run autonomously — plan work, spawn workers, review, merge, and loop. Maximum throughput.
GET $AGENTIX_API/playbook-templates/<mode>
PUT $AGENTIX_API/teams/$TEAM_ID/playbook
{ "playbook": "<template text>" }## Custom PoliciesPUT $AGENTIX_API/teams/$TEAM_ID/playbook
Authorization: Bearer $API_KEY
{ "playbook": "..." }## Custom PoliciesGET $AGENTIX_API/teams/$TEAM_ID # team summary
PATCH $AGENTIX_API/teams/$TEAM_ID # update config{ "config": { "gitRepoUrl": "https://github.com/org/repo", "githubToken": "$GITHUB_TOKEN" } }{ "anthropicApiKey": "$ANTHROPIC_API_KEY" }GET $AGENTIX_API/roles?teamId=$TEAM_ID # list roles
POST $AGENTIX_API/roles # create role
PATCH $AGENTIX_API/roles/ROLE_ID # update role
DELETE $AGENTIX_API/roles/ROLE_ID # delete role{ "teamId": "...", "name": "role-name", "systemPrompt": "...", "timeout": 600 }backend-engineercode-reviewerbackend-engineercode-reviewerbacklogreadyin_progressreviewdonefailedGET $AGENTIX_API/tasks?teamId=$TEAM_ID # list (filter: &status=, &role=)
GET $AGENTIX_API/tasks/TASK_ID # get details
POST $AGENTIX_API/tasks # create
PATCH $AGENTIX_API/tasks/TASK_ID # update
DELETE $AGENTIX_API/tasks/TASK_ID # cancel{ "teamId": "...", "role": "...", "title": "...", "description": "...", "status": "ready", "priority": 1 }GET $AGENTIX_API/workers?teamId=$TEAM_ID # list (filter: &status=running)
GET $AGENTIX_API/workers/WORKER_ID # get details
POST $AGENTIX_API/tasks/TASK_ID/run # spawn worker
POST $AGENTIX_API/tasks/TASK_ID/resume # resume failed workerGET $AGENTIX_API/events?teamId=$TEAM_ID&limit=20 # activity feed
GET $AGENTIX_API/events?teamId=$TEAM_ID&taskId=X # task-specific eventsPOST $AGENTIX_API/api-keys # create additional key{ "name": "ci-key" }{apiKey, customerId}GET https://agentix.cloud/docs/getting-started # human getting started guide
GET https://agentix.cloud/docs/api-reference # full API reference
GET https://agentix.cloud/docs # interactive API explorer (Swagger)
GET https://agentix.cloud/openapi.json # OpenAPI spec