con un clic
test-first-feature-dev
Implement features using test-driven development approach
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Implement features using test-driven development approach
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Use when code changes require documentation updates. Ensures documentation stays synchronized with code, API, and feature changes. Detects doc drift and maintains consistency.
Use when working with GitHub issues, pull requests, releases, or repository operations. Provides systematic approach to GitHub API interactions via gh CLI.
Use when releasing a new version of the software. Automates version bumping, changelog updates, git tagging, and release creation. Supports both single and dual-repository release workflows.
Use when starting a new feature or project to systematically capture user requirements through Socratic questioning. Creates a requirements document that can be used for design and implementation planning.
Decompose complex tasks into GitHub sub-issues and coordinate workflow
Systematic approach to identifying, analyzing, and fixing bugs
| name | test-first-feature-dev |
| description | Implement features using test-driven development approach |
| license | MIT |
describe('FeatureName', () => {
describe('methodName or scenario', () => {
it('should do something specific', () => {
// Arrange
const input = 'test data';
const expected = 'expected result';
// Act
const result = functionUnderTest(input);
// Assert
expect(result).toBe(expected);
});
});
});