plugins/standards/skills/analyze-performance/SKILL.md
Evaluation framework for analyzing decision-making quality across five dimensions.
npx skillsauth add qmu/workaholic analyze-performanceInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Evaluate a development branch's decision-making quality.
bash ${CLAUDE_PLUGIN_ROOT}/skills/analyze-performance/scripts/calculate.sh <base-branch>
Returns JSON with performance metrics:
{
"commits": 5,
"started_at": "2026-01-15T10:00:00+09:00",
"ended_at": "2026-01-15T14:30:00+09:00",
"duration_hours": 4.5,
"duration_days": 1,
"velocity": 1.1,
"velocity_unit": "hour"
}
## Evaluation Framework
Evaluate the developer's decision-making across five dimensions. For each, provide:
- A rating: Strong / Adequate / Needs Improvement
- 1-2 sentences of evidence-based analysis
### 1. Consistency
Did decisions follow established patterns? Were similar problems solved similarly? Did pivots converge toward better solutions rather than oscillate indecisively?
### 2. Intuitivity
Were solutions obvious and easy to understand? Did decisions align with common expectations? Would another developer find the choices natural?
### 3. Describability
Did final names land well? Were naming improvements made when better options were discovered? Did terminology avoid semantic conflicts and support future extension?
### 4. Agility
How well did the developer respond to unexpected issues? Did they iterate effectively, incorporating lessons learned into subsequent work? Were course corrections made quickly when needed?
### 5. Density
Does the code express meaning economically? Is the ratio of conceptual value to textual surface area high? Does the solution achieve its purpose without verbose scaffolding, redundant abstractions, or diluted semantics?
## Output Format
Return structured markdown:
```markdown
### Decision Quality Analysis
| Dimension | Rating | Notes |
| -------------- | --------------------------------- | ----------------- |
| Consistency | Strong/Adequate/Needs Improvement | Brief observation |
| Intuitivity | ... | ... |
| Describability | ... | ... |
| Agility | ... | ... |
| Density | ... | ... |
**Strengths**: [Key positive patterns observed]
**Areas for Improvement**: [Constructive suggestions]
documentation
Release note content structure and guidelines for GitHub Releases.
testing
Ship workflow - merge PR, deploy via CLAUDE.md, and verify production.
development
Generate branch-story sections 4-7 (Outcome, Historical Analysis, Concerns, Successful Development Patterns) from archived tickets and carry-over verdicts. Used by the report workflow when assembling a PR story.
business
Story writing, PR creation, and release readiness assessment for branch reporting.