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…
Locks the codebase to prevent unintended writes during a freeze period such as before a release or during an incident. Use when the user mentions freezing, code lock, or release lockdown.
$ npx -y skills add tranhieutt/software_development_department --skill freeze --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/freezeContext preview
The summary Claude sees to decide when to auto-load this skill.
Locks the codebase to prevent unintended writes during a freeze period such as before a release or during an incident. Use when the user mentions freezing, code lock, or release lockdown.
name: freeze type: workflow description: "Locks the codebase to prevent unintended writes during a freeze period such as before a release or during an incident. Use when the user mentions freezing, code lock, or release lockdown." argument-hint: "[reason]" user-invocable: true allowed-tools: Read, Write, Bash effort: 1 agent: release-manager when_to_use: "Before release cut, hotfix deployment, or when a stabilization period is needed"
Lock the codebase in preparation for a release. Create a `.freeze` file containing freeze information.
Check if `.freeze` already exists by reading the file. If it exists, display the information and ask: > "The codebase is currently frozen for: [REASON]. Do you want to override the current freeze? (yes/no)"
If no, stop.
If no argument is provided, ask: > "What is the reason for the freeze? (e.g., 'Release v2.1.0', 'Hotfix deployment', 'Sprint end')"
Write the following content:
FROZEN=true REASON=[reason] FROZEN_AT=[ISO timestamp] BRANCH=[current branch from git rev-parse --abbrev-ref HEAD]
Display:
🔒 CODEBASE FROZEN Reason : [reason] Time : [timestamp] Branch : [branch] Non-critical merges are blocked. Only hotfixes are permitted. To unlock: /unfreeze
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,…