Standardized output formats for research, planning, implementation, and review agents. Use when generating agent outputs or parsing agent responses.
Provides standardized output format templates for research, planning, implementation, and review agents. Claude uses this when generating or parsing agent outputs triggered by keywords like "output format", "research findings", or "code review".
/plugin marketplace add akaszubski/autonomous-dev/plugin install autonomous-dev@autonomous-devThis skill is limited to using the following tools:
examples/implementation-output-example.mdexamples/planning-output-example.mdexamples/research-output-example.mdexamples/review-output-example.mdStandardized output formats for all agent types to ensure consistent communication and parsing across the autonomous development workflow.
Research agents (e.g., researcher, issue-creator, brownfield-analyzer) should structure outputs with these sections:
## Patterns Found
[List of discovered patterns with examples]
- **Pattern Name**: Description
- Example: Code snippet or reference
- Use case: When to apply this pattern
## Best Practices
[Industry best practices and recommendations]
- **Practice Name**: Description
- Benefit: Why this matters
- Implementation: How to apply
## Security Considerations
[Security implications and requirements]
- **Security Concern**: Description
- Risk: Potential vulnerabilities
- Mitigation: How to address
## Recommendations
[Actionable recommendations for implementation]
1. **Recommendation**: Detailed guidance
- Priority: High/Medium/Low
- Effort: Time estimate
- Impact: Expected benefit
See examples/research-output-example.md for a complete example.
Planning agents (e.g., planner, migration-planner, setup-wizard) should structure outputs with these sections:
## Feature Summary
[Brief description of what will be built]
**Goal**: What this achieves
**Scope**: What's included/excluded
**Success Criteria**: How to measure success
## Architecture
[High-level design and component relationships]
**Components**: List of major components
**Data Flow**: How data moves through system
**Integration Points**: External dependencies
## Components
[Detailed component specifications]
### Component 1: [Name]
- **Purpose**: What it does
- **Responsibilities**: Core functions
- **Dependencies**: What it needs
- **Files**: Where it lives
## Implementation Plan
[Step-by-step implementation guide]
**Phase 1**: [Description]
1. Step one
2. Step two
**Phase 2**: [Description]
1. Step one
2. Step two
## Risks and Mitigations
[Potential issues and how to address them]
- **Risk**: Description
- **Impact**: Severity and consequences
- **Mitigation**: How to prevent or handle
See examples/planning-output-example.md for a complete example.
Implementation agents (e.g., implementer, retrofit-executor) should structure outputs with these sections:
## Changes Made
[Summary of what was implemented]
**Feature**: What was built
**Approach**: How it was implemented
**Design Decisions**: Key choices made
## Files Modified
[List of changed files with descriptions]
### Created Files
- `path/to/file.py`: Description of new file
- `path/to/test.py`: Test coverage
### Modified Files
- `path/to/existing.py`: Changes made
- Added: New functionality
- Modified: Updated behavior
- Removed: Deprecated code
## Tests Updated
[Test coverage changes]
**New Tests**:
- Test file: What it covers
- Coverage: Percentage or lines
**Updated Tests**:
- Test file: What changed
- Reason: Why it was needed
## Next Steps
[Follow-up actions and recommendations]
1. **Action**: What needs to happen next
- Owner: Who should do it
- Priority: Urgency level
- Blockers: Any dependencies
See examples/implementation-output-example.md for a complete example.
Review agents (e.g., reviewer, security-auditor, quality-validator) should structure outputs with these sections:
## Findings
[Overview of review results]
**Reviewed**: What was examined
**Scope**: What was checked
**Summary**: High-level results
## Code Quality
[Code quality assessment]
### Strengths
- **Aspect**: What's done well
- Evidence: Specific examples
### Areas for Improvement
- **Issue**: What needs work
- Severity: Critical/Major/Minor
- Recommendation: How to fix
- Location: Where the issue is
## Security
[Security analysis]
### Security Strengths
- **Protection**: What's secure
- Implementation: How it's done
### Security Concerns
- **Vulnerability**: Potential issue
- CWE Reference: Standard classification
- Risk Level: High/Medium/Low
- Remediation: How to fix
## Documentation
[Documentation assessment]
### Documentation Completeness
- **Aspect**: What's documented
- Quality: How well it's done
### Documentation Gaps
- **Missing**: What needs docs
- Priority: How important
- Suggestion: What to add
## Verdict
[Final recommendation]
**Status**: ✅ APPROVED / ⚠️ APPROVED WITH CHANGES / ❌ NEEDS REVISION
**Rationale**: Why this verdict
**Blockers**: Must-fix issues (if any)
**Suggestions**: Nice-to-have improvements
See examples/review-output-example.md for a complete example.
Commit message generator agents should follow conventional commits:
<type>(<scope>): <subject>
<body>
<footer>
feat: New featurefix: Bug fixdocs: Documentation onlystyle: Formatting, no code changerefactor: Code restructuringtest: Adding testschore: Maintenance tasksfeat(skills): add agent-output-formats skill for standardized outputs
Extracts duplicated output format specifications from 15 agent prompts
into a reusable skill package following progressive disclosure architecture.
Token savings: ~3,000 tokens (200 tokens per agent × 15 agents)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
PR description generator agents should follow this structure:
## Summary
[Brief description of changes]
- Key change 1
- Key change 2
- Key change 3
## Test Plan
- [ ] Unit tests pass
- [ ] Integration tests pass
- [ ] Manual testing completed
- [ ] Documentation updated
## Related Issues
Closes #XXX
🤖 Generated with [Claude Code](https://claude.com/claude-code)
When creating or updating agent prompts:
When executing agents:
By centralizing output formats in this skill:
This skill uses Claude Code 2.0+ progressive disclosure architecture:
When you use terms like "output format", "research findings", "planning document", or "code review", Claude Code automatically loads the full skill content to provide detailed guidance.
Complete example outputs are available in the examples/ directory:
research-output-example.md: Sample research agent outputplanning-output-example.md: Sample planning agent outputimplementation-output-example.md: Sample implementation agent outputreview-output-example.md: Sample review agent outputRefer to these examples when generating agent outputs to ensure consistency and completeness.
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.