Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
46
A TDD-first workflow for AI coding agents. Ship features with confidence.
Sign in to like and favorite skills
A TDD-first workflow for AI coding agents. Ship features with confidence.
| Stage | Command | Description |
|---|---|---|
| 1 | | Check current context, active work, recent completions |
| 2 | | Deep research with web search, document to docs/research/ |
| 3 | | Create implementation plan, branch, OpenSpec if strategic |
| 4 | | TDD development (RED-GREEN-REFACTOR cycles) |
| 5 | | Validation (type/lint/security/tests) |
| 6 | | Create PR with full documentation |
| 7 | | Address ALL PR feedback |
| 8 | | Update docs, merge PR, cleanup |
| 9 | | Final documentation verification |
/status → /research → /plan → /dev → /check → /ship → /review → /merge → /verify
gh)bun add -g @beads/bd && bd initbun add -g @fission-ai/openspec && openspec init/status - Check where you are/research <feature-name> - Research the feature/plan <feature-slug> - Create formal plan/dev - Implement with TDD/check - Validate everything/ship - Create PR/status)Check current context before starting work:
/research <feature-name>)Research before building:
docs/research/<feature>.md/plan <feature-slug>)Create implementation plan:
/dev)TDD implementation:
/check)Validate everything:
/ship)Create pull request:
/review)Address ALL feedback:
/merge)Complete the work:
/verify)Final documentation check:
your-project/ ├── AGENTS.md # This file (universal) ├── CLAUDE.md # Claude Code ├── GEMINI.md # Google Antigravity ├── .cursorrules # Cursor ├── .windsurfrules # Windsurf ├── .clinerules # Cline/Roo Code ├── .github/ │ └── copilot-instructions.md # GitHub Copilot │ ├── .claude/commands/ # Claude Code commands ├── .agent/workflows/ # Antigravity workflows ├── .cursor/rules/ # Cursor rules ├── .windsurf/workflows/ # Windsurf workflows ├── .kilocode/workflows/ # Kilo Code workflows ├── .opencode/commands/ # OpenCode commands ├── .continue/prompts/ # Continue prompts ├── .roo/commands/ # Roo Code commands │ └── docs/ ├── planning/ │ └── PROGRESS.md ├── research/ │ └── TEMPLATE.md └── WORKFLOW.md
The
forge-workflow skill is installed to all supporting agents:
.claude/skills/forge-workflow/SKILL.md.agent/skills/forge-workflow/SKILL.md (Antigravity).cursor/skills/forge-workflow/SKILL.md.windsurf/skills/forge-workflow/SKILL.md.kilocode/skills/forge-workflow/SKILL.md.cline/skills/forge-workflow/SKILL.md.continue/skills/forge-workflow/SKILL.md.opencode/skills/forge-workflow/SKILL.mdThis workflow works with ALL major AI coding agents:
| Agent | Instructions | Commands | Skills |
|---|---|---|---|
| Claude Code | CLAUDE.md | .claude/commands/ | .claude/skills/ |
| Google Antigravity | GEMINI.md | .agent/workflows/ | .agent/skills/ |
| Cursor | .cursorrules | .cursor/rules/ | .cursor/skills/ |
| Windsurf | .windsurfrules | .windsurf/workflows/ | .windsurf/skills/ |
| Kilo Code | AGENTS.md | .kilocode/workflows/ | .kilocode/skills/ |
| OpenCode | AGENTS.md | .opencode/commands/ | .opencode/skills/ |
| Cline | .clinerules | AGENTS.md | .cline/skills/ |
| Roo Code | .clinerules | .roo/commands/ | - |
| Continue | .continuerules | .continue/prompts/ | .continue/skills/ |
| GitHub Copilot | .github/copilot-instructions.md | .github/prompts/ | - |
| Aider | AGENTS.md (via config) | In-chat | - |
MIT
See
docs/WORKFLOW.md for the complete workflow guide.