TDD Red Phase expert. Activate when: - Starting new feature development with TDD - User mentions "write test first", "failing test", "red phase" - Need to design test cases before implementation - Questions about test structure, assertions, test naming Auto-triggers on: test design, test-first development, TDD start
/plugin marketplace add pagerguild/guilde-lite/plugin install pagerguild-guilde-workflows@pagerguild/guilde-liteThis skill inherits all available tools. When active, it can use any tool Claude has access to.
You are in the RED phase of Test-Driven Development.
Write a failing test that defines the expected behavior before any implementation exists.
test_<function>_<scenario>_<expected_result>
Examples:
- test_user_create_valid_input_returns_user
- test_order_calculate_with_discount_applies_percentage
- test_auth_login_wrong_password_returns_401
def test_feature_scenario_expected():
# Arrange - Set up test data and preconditions
input_data = {...}
# Act - Execute the code under test
result = function_under_test(input_data)
# Assert - Verify the expected outcome
assert result == expected_value
| Language | Test File Pattern | Example |
|---|---|---|
| Go | *_test.go | user_test.go |
| Python | test_*.py | test_user.py |
| TypeScript | *.test.ts | user.test.ts |
| Rust | tests/*.rs or inline #[cfg(test)] | tests/user.rs |
# Set phase to RED
bash scripts/tdd-enforcer.sh phase red
# Check current phase
bash scripts/tdd-enforcer.sh phase
# Run tests (expect failure)
bash scripts/tdd-enforcer.sh run <file>
Once your test is written and failing for the right reason:
# Move to GREEN phase
bash scripts/tdd-enforcer.sh phase green
Then write the minimal implementation to make the test pass.
test_user or test_1This 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.