Standard templates for debugging reports, reviews, and implementation plans
Provides standardized templates for debugging reports, implementation plans, task documents, and review summaries. Claude uses this when you request structured documentation for issues, features, or code reviews to ensure consistent formatting and comprehensive coverage.
/plugin marketplace add p4ndroid/ai-dev-pipeline-architecture/plugin install ai-dev-pipeline@ai-dev-pipeline-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Use these templates for consistent documentation output.
Output Location: {project}-implementation-plan/{NN}-debug-{issue-name}.md
# Debugging Report: [Brief Issue Description]
**Date**: [Current date]
**Status**: [In Progress | Root Cause Identified | Resolved]
## 1. Issue Summary
[Concise description of the problem]
## 2. Evidence Log
[Observed symptoms, error messages, logs]
## 3. Hypotheses
[Potential causes ranked by likelihood]
## 4. Test Results
[Results of investigation steps]
## 5. Root Cause Analysis
[Identified root cause with evidence]
## 6. Resolution
[Fix applied or recommended]
## 7. Lessons Learned
[Prevention strategies for future]
Output Location: {project}-implementation-plan/{NN}-{feature-name}.md
# Implementation Plan: [Feature Name]
## Overview
[Brief description of what will be implemented]
## Prerequisites
[Dependencies, setup requirements]
## Architecture Summary
[High-level design decisions]
## Implementation Steps
1. [Step with file changes]
2. [Step with file changes]
...
## Security Considerations
[Security implications and mitigations]
## Testing Strategy
[Unit, integration, e2e test approach]
## Deployment Notes
[Rollout considerations]
Output Location: {project}-implementation-plan/{NN}-{task-name}.md
# Task: [Descriptive Title]
## Issue Description
[What needs to be done and why]
## Reference
[Link to parent document or issue]
## Scope of Changes
[Files and modules affected]
## Implementation Details
[Specific code changes required]
## Dependencies
[Other tasks this depends on]
## Testing Considerations
[Tests to write or update]
Output Location: {project}-implementation-plan/{NN}-review.md
# Task {NN}: [PR Title] - Review Summary
**PR:** #{PR_NUMBER}
**Branch:** `{BRANCH_NAME}`
**Date:** {current_date}
## Claude Review Summary
### Verdict: [Approve | Request Changes | Conditionally Approve]
Code Quality: X/10 | Test Coverage: X/10 | Documentation: X/10
### Strengths
- [Positive finding]
- [Positive finding]
## Critical Issues
[If any - must fix before merge]
## Medium Issues
[Should fix, lower priority]
## GitHub Review Summary
[Summary of existing GH comments]
## Validation Summary
| Issue | Severity | File | Status |
|-------|----------|------|--------|
| [Title] | CRITICAL | [file:line] | PENDING |
Output Location: {project}-implementation-plan/00-index.md
# Implementation Plan: [Project/Feature Name]
Generated from: `{source-document}`
Created: {date}
## Overview
[Brief summary of scope and approach]
## Task Sequence
| # | Task | Files Affected | Dependencies | Status |
|---|------|----------------|--------------|--------|
| 10 | [Task Name](./10-task-name.md) | file1.py | None | Pending |
| 11 | [Task Name](./11-task-name.md) | file2.py | Task 10 | Pending |
## Review Findings
| # | Document | Source | Key Findings |
|---|----------|--------|--------------|
| 10 | [Review](./10-review.md) | PR #14 | [Summary] |
## Dependency Graph
[ASCII diagram or description]
## Notes
[Additional context, risks, considerations]
| Pattern | Use Case | Example |
|---|---|---|
00-index.md | Always the index file | 00-index.md |
10-{name}.md | First task group | 10-add-database-schema.md |
{NN}-review.md | Review of task NN | 10-review.md |
{NN}-review-impl.md | Implementation plan for fixes | 10-review-impl.md |
{NN}-debug-{name}.md | Debug report | 15-debug-memory-leak.md |
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 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 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.