# Command Development

> Create robust repository commands for Codex-driven workflows (Makefile, npm scripts, shell scripts, task runners). Use when user asks to standardize repetitive operations, reduce manual steps, or add reliable automation entrypoints.

- Skill: `rldyourmnd/command-development` (Agent Skill)
- Install (CLI): `npx skillmds@latest add rldyourmnd/command-development`
- Raw SKILL.md: https://api.skillmd.com/api/skills/rldyourmnd/command-development/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: rldyourmnd (https://skillmd.com/u/rldyourmnd)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/rldyourmnd/command-development

---


# Command Development (Codex)

## Design Rules
1. Commands must be deterministic and idempotent when possible.
2. Prefer explicit arguments over hidden behavior.
3. Fail fast with actionable error messages.
4. Keep commands composable and CI-friendly.

## Workflow
1. Define input/output contract.
2. Implement smallest useful command.
3. Add dry-run mode for destructive flows.
4. Add docs and examples in README.
5. Validate on clean workspace and typical dev state.

