# Orchestrating Workflows

> Command workflow orchestration patterns for /code, /fix, /audit, and other implementation commands. Use when implementing features with /code, /fix, /audit commands, or when user mentions workflow, ワークフロー, RGRC, quality gates, 品質ゲート, completion criteria.

- Skill: `majiayu000/orchestrating-workflows-2` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add majiayu000/orchestrating-workflows-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/orchestrating-workflows-2/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/orchestrating-workflows-2

---


# Orchestrating Workflows

## Workflows

| Command | Workflow Reference                                              |
| ------- | --------------------------------------------------------------- |
| `/code` | [@./references/code-workflow.md](./references/code-workflow.md) |
| `/fix`  | [@./references/fix-workflow.md](./references/fix-workflow.md)   |

## Patterns

| Pattern         | Reference                                                                           |
| --------------- | ----------------------------------------------------------------------------------- |
| IDR Generation  | [@../../rules/workflows/IDR_GENERATION.md](../../rules/workflows/IDR_GENERATION.md) |
| TDD Cycle       | [@./references/tdd-cycle.md](./references/tdd-cycle.md)                             |
| Test Generation | [@./references/test-generation.md](./references/test-generation.md)                 |

## Quality Gates

| Gate     | Target           | Verification               |
| -------- | ---------------- | -------------------------- |
| Tests    | All passing      | `npm test` exit code 0     |
| Lint     | 0 errors         | `npm run lint` exit code 0 |
| Types    | No errors        | `tsc --noEmit` exit code 0 |
| Coverage | C0 ≥90%, C1 ≥80% | Coverage report            |

