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…
Adapts SDD for Codex while preserving Claude Code behavior. Use when working in Codex, setting up Codex compatibility, mapping Claude tools to Codex tools, or explaining how SDD should run outside Claude Code.
$ npx -y skills add tranhieutt/software_development_department --skill codex-sdd --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/codex-sddContext preview
The summary Claude sees to decide when to auto-load this skill.
Adapts SDD for Codex while preserving Claude Code behavior. Use when working in Codex, setting up Codex compatibility, mapping Claude tools to Codex tools, or explaining how SDD should run outside Claude Code.
name: codex-sdd type: workflow description: "Adapts SDD for Codex while preserving Claude Code behavior. Use when working in Codex, setting up Codex compatibility, mapping Claude tools to Codex tools, or explaining how SDD should run outside Claude Code." argument-hint: "[codex-task-or-compatibility-question]" user-invocable: true allowed-tools: Read, Glob, Grep, Bash context: main effort: 2 agent: technical-director when_to_use: "Use at the start of Codex sessions in this repo, before Codex implementation work governed by SDD, and whenever the task mentions Codex compatibility, AGENTS.md, .codex, or Claude-to-Codex workflow mapping."
`codex-sdd` is the Codex adapter for the Software Development Department.
It does not replace Claude Code behavior. It helps Codex follow the existing SDD contract without changing the Claude-native runtime.
Treat these files as the SDD source of truth:
1. `CLAUDE.md` 2. `.claude/skills/using-sdd/SKILL.md` 3. `docs/technical/SDD_LIFECYCLE_MAP.md` 4. `.claude/settings.json` for Claude-only runtime behavior
Use `using-sdd` for routing. Use this skill only for Codex-specific adaptation.
Do not change these for Codex-only reasons:
SDD commands
Codex compatibility must be additive unless the user explicitly approves a broader Claude regression-tested change.
At the start of a Codex session in SDD:
1. Read `AGENTS.md`. 2. Read `.claude/skills/using-sdd/SKILL.md`. 3. Use `docs/technical/SDD_LIFECYCLE_MAP.md` for phase orientation. 4. Select the governing SDD skill for the user request. 5. Remember that Claude hooks do not auto-run in Codex.
| Claude-style tool | Codex equivalent | | --- | --- | | `Read` | shell read commands or direct file inspection | | `Glob` | `rg --files` or shell listing | | `Grep` | `rg` | | `Write` | `apply_patch` | | `Edit` | `apply_patch` | | `Bash` | `shell_command` | | `RunCommand` | `shell_command` | | `Task` | `spawn_agent` only when explicitly authorized | | `TodoWrite` | `update_plan` | | `AskUserQuestion` | concise direct user question | | `WebSearch` | web search only when required or explicitly requested |
Claude Code hooks in `.claude/settings.json` do not run automatically in Codex. Use manual equivalents:
| Claude behavior | Codex behavior | | --- | --- | | Session bootstrap | Read `AGENTS.md`, `using-sdd`, lifecycle map, and relevant memory. | | Pre-code gate | State the SDD pre-code gate before edits. | | Bash safety | Follow Codex sandbox and escalation rules. | | File history | Use `git log -- <file>` when needed. | | Write logging | Use git diff/status and final changed-file summary. | | Circuit guard | Inspect `.claude/memory/circuit-state.json` before subagent workflows. | | Completion gate | Use `verification-before-completion` before success claims. |
Before implementation edits, state:
Pre-code gate: <Fast|Spec|Plan|Interview|Override> satisfied by <evidence>; next edit: <file>; verification: <command/check>.
If the gate is not satisfied, stop and ask for the missing approval or clarification.
For SDD repo changes, run:
powershell -ExecutionPolicy Bypass -File scripts\codex-preflight.ps1
If verification cannot be run, say exactly what was skipped and why.
For narrower checks, use:
powershell -ExecutionPolicy Bypass -File scripts\validate-skills.ps1 node scripts\harness-audit.js --compact
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,…