dex
Task tracking for async/multi-step work. Use dex to create, track, and complete tasks that span multiple sessions or require coordination (e.g., coding agent dispatches, PR reviews, background jobs). Tasks stored as JSON files in .dex/tasks/.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/gricha/dexDex Task Tracking
Track async work: coding agent dispatches, multi-step projects, anything needing follow-up.
Commands
dex create -d "Description" --context "Background, goal, done-when"
dex list # Pending tasks
dex list --all # Include completed
dex show <id> # View task
dex show <id> --full # Full context
dex complete <id> --result "What was done, decisions, follow-ups"
dex edit <id> --context "Updated context"
dex delete <id>
Task Structure
- Description: One-line summary
- Context: Background, requirements, done criteria
- Result: What was built, decisions, follow-ups
Example
# Before dispatching agent
dex create -d "Add caching to API" --context "Workspace: feat1 (100.x.x.x)
Branch: feat/cache
Done when: PR merged, CI green"
# After work complete
dex complete abc123 --result "Merged PR #50. Redis caching with 5min TTL."
Storage
.dex/tasks/{id}.json — one file per task, git-friendly.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-gricha-dex": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
workout
Track workouts, log sets, manage exercises and templates with workout-cli. Supports multi-user profiles. Use when helping users record gym sessions, view history, or analyze strength progression.
perry-coding-agents
Dispatch coding tasks to OpenCode or Claude Code on Perry workspaces. Use for development work, PR reviews, or any coding task requiring an isolated environment.
perry-workspaces
Create and manage isolated Docker workspaces on your tailnet with Claude Code and OpenCode pre-installed. Use when working with Perry workspaces, connecting to coding agents, or managing remote development environments.