Loading...
Loading...
Manage Draxarp Intelligence — projects, tasks, specs, docs, memories, sprints, knowledge graph, context captures, and task decomposition via orbit CLI
npx skill4agent add jorgemuza/orbit draxarpdxorbit draxarporbit dx| Resource | Alias | Description |
|---|---|---|
| | Intelligence projects — group tasks, specs, memories, and docs |
| — | Development tasks with status, priority, activity logs, handoffs, focus, and dependencies |
| | Persistent knowledge — patterns, bugs, decisions, domain context |
| — | Specifications with review workflow (draft → review → approved/rejected) |
| — | Technical documentation with slug-based addressing and wikilink support |
| — | Sprint planning with velocity tracking and AI content suggestions |
| | Context captures — git commits, PRs, CI events, deployments |
| | Knowledge graph — nodes, edges, impact analysis, subgraph, path finding |
| — | AI-powered task decomposition from descriptions |
orbit dx proj ls # List projects
orbit dx proj view <id> # View project details
orbit dx proj create --name "My Project" # Create project
orbit dx proj delete <id> # Delete projectorbit dx task ls --project <id> # List tasks for a project
orbit dx task ls --status in_progress # Filter by status
orbit dx task ls --type epic --project <id> # List only epics
orbit dx task ls --parent <epic-id> # List children of an epic
orbit dx task view <id> # View task details + last 5 activity logs
orbit dx task create --title "Fix bug" --project <id> --priority high
orbit dx task create --title "Wire frontend" --project <id> --depends-on <blocker-id>
orbit dx task create --title "Auth" --project <id> --type epic # Create an epic
orbit dx task create --title "JWT" --project <id> --type story --parent <epic-id> # Story under epic
orbit dx task update <id> --status testing --activity "Running PHPUnit"
orbit dx task assign <id> --assignee claude # Assign task
orbit dx task start <id> # Set status to in_progress
orbit dx task complete <id> # Mark completed (with guard checks)
orbit dx task delete <id> # Delete task
orbit dx task epic <id> # Show epic progress (% complete, children)taskepicstoryorbit dx task focus <id> # One command: assign + start + set focus
orbit dx task focus <id> --agent claude # Specify agent (default: claude)
orbit dx task current # Show currently focused task
orbit dx task current --agent claude # For a specific agent
orbit dx task next --project <id> # Next available task by priority (skips epics & blocked)orbit dx task log <id> "Implemented API endpoints" --tag progress
orbit dx task log <id> "Blocked on DB schema" --tag blocker --agent claude
orbit dx task log <id> "Chose approach A over B" --tag decision
orbit dx task logs <id> # List all logs (newest first)
orbit dx task logs <id> --tag blocker # Filter by tag
orbit dx task logs <id> --limit 10 # Limit results
orbit dx task logs <id> -o json # JSON outputprogressblockerdecisionhypothesistriedresulthandoffnote# Record a handoff (session continuity)
orbit dx task handoff <id> \
--done "Implemented X" --done "Added tests for Y" \
--remaining "Wire up frontend" --remaining "Add error handling" \
--decision "Used approach A because of constraint B" \
--uncertain "Not sure if Z is the right abstraction" \
--files "backend/Services/Foo.php,frontend/Show.tsx" \
--agent claude
# Get AI-optimized context for resuming work
orbit dx task context <id> # Human-readable
orbit dx task context <id> -o json # Structured JSONorbit dx task dep <id> --on <blocking-task-id> # Add dependency
orbit dx task deps <id> # Show dependency tree (blocks/blocked-by)
orbit dx task deps <id> -o json # JSON outputpendingin_progresstestingcompletedblockedcancelledlowmediumhighcriticalorbit dx mem ls --project <id> # List memories
orbit dx mem ls --type architecture # Filter by type
orbit dx mem view <id> # View memory content
orbit dx mem create --title "Pattern: Repo" --content "..." --project <id> --type patterns
orbit dx mem archive <id> # Archive memoryarchitecturepatternsbugsdomaindecisionspreferencescontextorbit dx spec ls --project <id> # List specs
orbit dx spec view <id> # View spec content
orbit dx spec create --title "Auth Spec" --content "..." --project <id>
orbit dx spec submit <id> # Submit for review
orbit dx spec approve <id> # Approve spec
orbit dx spec reject <id> # Reject spec
orbit dx spec delete <id> # Delete specdraftin_reviewapprovedrejectedorbit dx doc ls # List all docs
orbit dx doc ls --category architecture # Filter by category
orbit dx doc toc # Table of contents (no content)
orbit dx doc view <id> # View doc by ID
orbit dx doc view architecture/overview # View by slug (auto-detected)
orbit dx doc create --title "API Guide" --category api --slug api/guide
orbit dx doc sync docs.json # Batch sync from JSON file
orbit dx doc publish <id> # Publish draft doc
orbit dx doc archive <id> # Archive doc
orbit dx doc delete <id> # Delete docarchitecturecomponentsflowssecurityapiinfrastructuregeneraldraftpublishedarchiveddoc view--slugdoc sync[{"slug": "api/guide", "title": "API Guide", "content": "...", "category": "api"}]orbit dx sprint ls --project <id> # List sprints
orbit dx sprint view <id> # View sprint details
orbit dx sprint create --project <id> --name "Sprint 1" --starts-at 2026-03-16 --ends-at 2026-03-30
orbit dx sprint create --project <id> --name "Sprint 2" --starts-at 2026-03-30 --ends-at 2026-04-13 --goal "Ship auth" --velocity-target 20
orbit dx sprint start <id> # Start a sprint
orbit dx sprint complete <id> # Complete a sprint
orbit dx sprint suggest <id> # AI-powered sprint content suggestions
orbit dx sprint velocity --project <id> # Velocity history (last 5 sprints)
orbit dx sprint velocity --project <id> --count 10 # More historyorbit dx capture ls --project <id> # List captures for a project
orbit dx capture view <id> # View capture details + payload
orbit dx capture webhook --project <id> --source git_commit --payload '{"sha":"abc","message":"fix"}'
orbit dx capture persist <id> # Persist capture as a memorygit_commitgit_prci_pipelinedeploymentcode_reviewmanual# Nodes
orbit dx graph nodes --project <id> # List nodes
orbit dx graph nodes --type module # Filter by type
orbit dx graph node <id> # View node details
orbit dx graph create-node --project <id> --type module --name "AuthService"
orbit dx graph delete-node <id> # Delete a node
# Edges
orbit dx graph create-edge --from <id> --to <id> --relationship depends_on
orbit dx graph delete-edge <id> # Delete an edge
# Analysis
orbit dx graph impact <node-id> # Impact analysis (depth 3)
orbit dx graph impact <node-id> --depth 5 # Deeper analysis
orbit dx graph subgraph <node-id> # Local subgraph (depth 2)
orbit dx graph paths --from <id> --to <id> # Find paths between nodes
orbit dx graph paths --from <id> --to <id> --max-depth 8orbit dx decompose create --project <id> --description "Build user auth with JWT"
orbit dx decompose create --project <id> --description "..." --spec <spec-id> # With spec context
orbit dx decompose ls --project <id> # List decompositions
orbit dx decompose view <id> # View decomposition + options
orbit dx decompose accept <id> --indexes 0,1,2 # Accept and create tasks from selected options
orbit dx decompose reject <id> # Reject decomposition# 1. Orient
orbit dx context -p draxarp --project <id>
# 2. Pick up or create task
orbit dx task next --project <id> -p draxarp # Or create new
orbit dx task focus <task-id> -p draxarp # One command: assign + start + focus
# 3. Work (hooks auto-log progress)
# ... edit files, run tests ...
# 4. Log key decisions/blockers manually
orbit dx task log <id> "Chose X because Y" --tag decision -p draxarp
orbit dx task log <id> "Blocked on Z" --tag blocker -p draxarp
# 5. Handoff before session ends
orbit dx task handoff <id> --done "API done" --remaining "Frontend" --agent claude -p draxarp
# 6. Complete
orbit dx task complete <id> -p draxarp
# 7. Next session picks up with context
orbit dx task context <id> -p draxarp~/.config/orbit/config.yamlprofiles:
- name: my-project
services:
- name: draxarp
type: draxarp
base_url: https://your-draxarp-instance.com
auth:
method: token
token: "your-api-token"-p <profile>orbit dx proj ls -p draxarp
orbit dx task ls -p draxarp --project <id>-o jsonorbit dx proj ls -o json
orbit dx mem view <id> -o json
orbit dx doc toc -o json
orbit dx task context <id> -o json
orbit dx sprint ls --project <id> -o json
orbit dx graph nodes --project <id> -o json/api/v1/intelligenceAuthorization: Bearer <token>{ "success": true, "data": [...], "meta": { "current_page", "last_page", "per_page", "total" } }{ "success": true, "data": { ... } }