skills$openclaw/dex
gricha7.0k

by gricha

dex – OpenClaw Skill

dex is an OpenClaw Skills integration for coding workflows. 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/.

7.0k stars7.8k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namedex
descriptionTask 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/. OpenClaw Skills integration.
ownergricha
repositorygricha/dex
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @gricha/dex
last updatedFeb 7, 2026

Maintainer

gricha

gricha

Maintains dex in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
450 B
SKILL.md
1.3 KB
SKILL.md

name: dex 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/.

Dex 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.

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install dex?

Run openclaw add @gricha/dex in your terminal. This installs dex into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/gricha/dex. Review commits and README documentation before installing.