@dex-ai/coding-extensions
v0.2.8
Published
Coding workflow skills for Dex — spec design, implementation, retrospectives, debugging, code review, and more.
Readme
dex-ai-coding-extensions
Coding workflow skills for Dex — structured methodologies for specification, implementation, retrospectives, and more.
Skills
| Skill | Description |
|-------|-------------|
| spec-design-tasks | Idea → RFC spec → technical design → task breakdown |
| spec-implementation | Phased implementation: review → explore → plan → test → code → verify |
| retrospective | Post-session learning extraction into Dex's memory system |
| skill-creator | Create and manage Dex skills with proper structure |
| git-workflow | Multi-repo git coordination patterns |
| debug-investigate | Structured debugging and root-cause analysis |
| code-review | Structured code review with quality checks |
| extension-dev | Dex extension development patterns |
Usage
import { codingExtensions } from '@dex-ai/coding-extensions';
const agent = await Agent.create({
extensions: [codingExtensions(), ...otherExtensions],
});Load a subset:
codingExtensions({ include: ['spec-implementation', 'debug-investigate'] })Exclude specific skills:
codingExtensions({ exclude: ['extension-dev'] })Structure
src/index.ts # Single extension that loads all skills
skills/
├── spec-design/ # SKILL.md — spec & design workflow
├── spec-impl/ # SKILL.md — implementation phases
├── retrospective/ # SKILL.md — memory-based retrospectives
├── skill-creator/ # SKILL.md — meta-skill for creating skills
├── git-workflow/ # SKILL.md — multi-repo git patterns
├── debug-investigate/# SKILL.md — structured debugging
├── code-review/ # SKILL.md — code review checklist
└── extension-dev/ # SKILL.md — Dex extension patternsDevelopment
bun install
bun run typecheckLicense
MIT
