agent-health
Reads production/traces/agent-metrics.jsonl and displays a per-agent performance summary table for the current or a specified session. Highlights agents with…
Executes a hotfix workflow: creates a hotfix branch, applies the targeted fix, runs verification, and prepares release artifacts. Use when a critical production bug needs immediate patching or when the user mentions hotfix or emergency fix.
$ npx -y skills add tranhieutt/software_development_department --skill hotfix --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/hotfixContext preview
The summary Claude sees to decide when to auto-load this skill.
Executes a hotfix workflow: creates a hotfix branch, applies the targeted fix, runs verification, and prepares release artifacts. Use when a critical production bug needs immediate patching or when the user mentions hotfix or emergency fix.
name: hotfix type: workflow description: "Executes a hotfix workflow: creates a hotfix branch, applies the targeted fix, runs verification, and prepares release artifacts. Use when a critical production bug needs immediate patching or when the user mentions hotfix or emergency fix." argument-hint: "[bug-id or description]" user-invocable: true allowed-tools: Read, Glob, Grep, Write, Edit, Bash effort: 2 when_to_use: "When an emergency production bug requires immediate fix bypassing normal sprint processes"
When this skill is invoked:
> **Explicit invocation only**: This skill should only run when the user explicitly requests it with `/hotfix`. Do not auto-invoke based on context matching.
1. **Assess the emergency** — Read the bug description or ID. Determine severity:
2. **Create the hotfix record** at `production/hotfixes/hotfix-[date]-[short-name].md`:
## Hotfix: [Short Description] Date: [Date] Severity: [S1/S2] Reporter: [Who found it] Status: IN PROGRESS ### Problem [Clear description of what is broken and the user impact] ### Root Cause [To be filled during investigation] ### Fix [To be filled during implementation] ### Testing [What was tested and how] ### Approvals - [ ] Fix reviewed by lead-programmer - [ ] Regression test passed (qa-engineer) - [ ] Release approved (producer) ### Rollback Plan [How to revert if the fix causes new issues]
3. **Create the hotfix branch** (if git is initialized):
git checkout -b hotfix/[short-name] [release-tag-or-main]
4. **Investigate and implement the fix** — Focus on the minimal change that resolves the issue. Do NOT refactor, clean up, or add features alongside the hotfix.
5. **Validate the fix** — Run targeted tests for the affected system. Check for regressions in adjacent systems.
6. **Update the hotfix record** with root cause, fix details, and test results.
6b. **Collect approvals** — Use the Task tool to request sign-off:
7. **Output a summary** with: severity, root cause, fix applied, testing status, and what approvals are still needed before deployment.
Deliver exactly:
Repo: tranhieutt/software_development_department
Reads production/traces/agent-metrics.jsonl and displays a per-agent performance summary table for the current or a specified session. Highlights agents with…
Provides the vendored agent-style v0.3.5 prose rule pack as a portable Claude skill. Use when installing, syncing, applying, or auditing SDD Agent-Style…
Provides Angular best practices for components, modules, services, and reactive patterns. Use when working with Angular TypeScript files, component templates,…
Records unexpected API behaviors, undocumented caveats, version bugs, or non-obvious workarounds into .claude/memory/annotations.md. Use immediately when an…
Defines REST and GraphQL API contracts including endpoints, request/response schemas, auth flows, and versioning strategy. Use when designing a new API,…
Manages the ADR (Architecture Decision Record) registry. Use when recording tech-stack choices, design patterns, or infrastructure decisions with context,…