Skip to main content
ClaudeWave
Skill456 estrellas del repoactualizado 2d ago

ship-feature

The ship-feature skill provides a structured workflow for implementing medium to large features across a Claude Code repository, encompassing backend, frontend, and MCP components. Use it when adding or modifying functionality that requires exploration of affected modules, implementation planning, verification testing, and documentation updates, with built-in safeguards for API stability, destructive operations, and quality assurance checkpoints.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/hoangsonww/Claude-Code-Agent-Monitor /tmp/ship-feature && cp -r /tmp/ship-feature/.claude/skills/ship-feature ~/.claude/skills/ship-feature
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# Ship Feature

Use this workflow for medium or large implementation tasks.

## Steps
- Explore impacted modules first.
- Write a short implementation plan before editing.
- Implement smallest coherent diff that satisfies requirements.
- Run relevant verification commands.
- Update docs when commands, paths, architecture, or behavior changed.

## Required quality checks
- Keep API and websocket contracts stable unless intentionally changed.
- Keep destructive operations behind explicit guardrails.
- Avoid broad refactors in feature tickets unless requested.

## Finish checklist
- Tests/build/typecheck completed or explicitly reported as not run.
- Changed file set is scoped and intentional.
- User-facing docs updated if behavior changed.

## References
- Checklist template: `references/feature-checklist.md`