원클릭으로
sidecar-skill-governance
Architectural rules and standards for creating Sidecar Skills to support Workflows.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Architectural rules and standards for creating Sidecar Skills to support Workflows.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Companion skill for the /open workflow. Automates workspace diagnostic steps when starting a new session on a project. Collects active session status, project contracts, active task metrics, compact memory presence, roadmap phases, pending brainstorms, and git status.
Sidecar data for /brainstorm workflow — Brainstorm (open), Decision (finalized), and Research document templates loaded just-in-time.
Sidecar data for /docs workflow — document templates loaded just-in-time when generating docs.
Modular HTML rendering engine for PARA Workspace. Converts Markdown documents, code graphs, and standalone files into interactive, self-contained HTML pages with consistent Notion-inspired theming. Triggers when the user asks to compile docs to HTML, render graph visualization, export markdown to HTML, view docs statically, or preview documents.
Sidecar data for /plan workflow — Detail Plan and Roadmap templates loaded just-in-time.
Sidecar data for /qa workflow — Red Team personas, dimension checklists, and QA report templates loaded just-in-time.
| name | Sidecar Skill Governance |
| description | Architectural rules and standards for creating Sidecar Skills to support Workflows. |
| source | catalog |
Version: 1.0.0 | Type: Governance Skill
This skill defines the structural standards and OSS compliance rules for creating Sidecar Skills. A Sidecar Skill is a data companion to a Workflow of the same name. It offloads static data (templates, checklists) and complex scripts from the workflow file, keeping the workflow "Zero-fluff" and strictly focused on process logic.
.agents/workflows/<name>.md file must only contain sequential steps and router calls. It should not contain heavy text blocks or large bash scripts..agents/skills/<name>/SKILL.md file serves as the index and router for data, templates, and scripts.cat).All Sidecar Skills must comply with the English-First rule for Open Source Repositories:
.agents/skills/ (including SKILL.md, templates in references/, and scripts in scripts/) MUST be written in English.A compliant Sidecar Skill must follow this exact structure:
.agents/skills/[workflow-name]/
├── SKILL.md ← Router & Governance Index (Required)
├── scripts/ ← Bash scripts to offload CLI logic (Optional)
│ └── example.sh
└── references/ ← Static data, markdown templates, checklists (Optional)
└── example-template.md
When designing or updating a workflow, extract content to a Sidecar Skill if:
references/.jq parsing, heavy sed/awk replacements) must be extracted to an .sh file in scripts/.SKILL.md)The SKILL.md must contain a "Router" table so the Agent knows what files are available:
## Resource Router
| Resource | Relative Path | Description |
| :-- | :-- | :-- |
| Main Template | `references/main-template.md` | Used in step 3 to format the output |
| Build Script | `scripts/build.sh` | Executed to compile assets |
Inside the workflow file, use // turbo bash blocks to invoke scripts or load templates:
# Example: Loading a template safely
cat .agents/skills/[workflow-name]/references/template.md 2>/dev/null || echo "⚠️ Template not found"
# Example: Executing a script
bash .agents/skills/[workflow-name]/scripts/build.sh
This skill provides ready-to-use boilerplate templates to quickly scaffold new sidecar skills:
| Resource | Relative Path | Description |
|---|---|---|
| Workflow Sidecar Template | references/workflow-sidecar-template.md | Boilerplate for creating a sidecar skill attached to a global workflow. |
| Project Sidecar Template | references/project-sidecar-template.md | Boilerplate for creating a domain-specific context skill for a project. |