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/.
Scanned 9/19/2026
Install to Claude Code
npx -y skills add rondoflow/rondoflow --skill track-async-multi-step-tasks --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Track Async Multi Step Tasks?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/rondoflow-track-async-multi-step-tasks)More formats (shields.io, HTML) on the badges page.
---
name: track-async-multi-step-tasks
description: "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/."
category: "Finance & Crypto"
author: community
version: "1.1.0"
icon: coins
---
# Dex Task Tracking
Track async work: coding agent dispatches, multi-step projects, anything needing follow-up.
## Commands
```bash
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
```bash
# 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.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!