Implementation with TDD. Write tests first, implement to pass, commit atomically. Includes debugging mode for test failures.
/plugin marketplace add astrosteveo/claude-code-plugins/plugin install astrosteveo-explore-plan-implement-commit-plugins-explore-plan-implement-commit@astrosteveo/claude-code-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Execute implementation tasks using TDD. Write tests first, implement to pass them, commit after each task.
Real tests:
Not real tests:
// GOOD: Real test
it('should hash password and verify correctly', async () => {
const password = 'test123';
const hash = await hashPassword(password);
expect(hash).not.toBe(password);
expect(await verifyPassword(password, hash)).toBe(true);
expect(await verifyPassword('wrong', hash)).toBe(false);
});
// BAD: Fake test
it('should hash password', () => {
expect(() => hashPassword('test')).not.toThrow();
});
Structured task template from the workflow:
Task [N]: [Name]
Files to create/modify:
- [file list]
Requirements:
- [requirement list]
Context from design:
- [relevant design excerpts]
Expected output:
- [what should exist when done]
code: [what was done]plan.md with commit hashAfter each task:
Task [N]: Complete
- Files: [created/modified list]
- Tests: PASS
- Commit: [hash]
When tests fail unexpectedly:
Gather evidence
Form hypothesis
Test hypothesis
Fix root cause
Verify fix
Prevent regression
code: [what was done]
Examples:
code: implement login route and validation
code: add session middleware
code: write auth integration tests
code: fix token expiry calculation
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.