# Add to your Claude Code skills
git clone https://github.com/dcramer/dexLast scanned: 5/28/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-28T07:59:38.059Z",
"semgrepRan": false,
"npmAuditRan": true,
"pipAuditRan": true
}dex is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by dcramer. Task tracking for Agents. It has 364 GitHub stars.
Yes. dex passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/dcramer/dex" and add it to your Claude Code skills directory (see the Installation section above).
dex is primarily written in TypeScript. It is open-source under dcramer on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh dex against similar tools.
No comments yet. Be the first to share your thoughts!
Task tracking for AI agents. Persistent memory for complex, multi-session work.
Structured tasks, not simple todos. Each task captures full context:
Built for agent coordination. Agents break down work, track progress, and record results that persist across sessions.
Git-friendly storage. JSONL format (one task per line) enables collaboration, versioning, and conflict-free merges.
Install dex globally:
npm install -g @zeeg/dex
Or use the skills installer for your AI agent (Claude Code, OpenCode, Codex, Cursor):
npx skills add dcramer/dex
Use natural language or slash commands:
> Use Dex. Work on the next logical task. When done, run code-simplifier and commit.
/dex create a task to refactor the authentication module
git clone git@github.com:dcramer/dex.git
cd dex
pnpm install && pnpm build
pnpm link # Makes 'dex' command available globally
pnpm dev # Watch mode - auto-rebuild on changes
Test the plugin locally without installing from the marketplace:
claude --plugin-dir plugins/dex
This loads the plugin from the local directory. Restart your AI agent to pick up changes.
# Make changes...
pnpm build
pnpm test
Releases are automated via GitHub Actions when a version tag is pushed.
# Run tests, build, and bump version (creates git tag)
pnpm release patch # 0.1.0 → 0.1.1
pnpm release minor # 0.1.0 → 0.2.0
pnpm release major # 0.1.0 → 1.0.0
# Push commit and tag to trigger publish
git push --follow-tags
The workflow runs tests and publishes to npm with provenance.