원클릭으로
document
Generates standardized documentation (troubleshooting, guides, architecture) with consistent frontmatter.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generates standardized documentation (troubleshooting, guides, architecture) with consistent frontmatter.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Captures session state for future continuation. Auto-triggers when the user says "drop a breadcrumb", "dead drop", "close out", or asks to pause/wrap up.
Quick session orientation — surfaces state, recent handoffs, and suggests focus. Auto-triggers on "where were we", "what's next", or explicitly starting a session.
Organizes a messy WIP/Storm Session folder into a structured Abstract and Table of Contents. Auto-triggers on "consolidate this", "organize the wip", or "create a brief".
Finds and fixes missing index links for newly created files to prevent orphans. Auto-triggers when completing documentation.
Quarantined workspace for brainstorming and rapid ideation. Auto-triggers when the user says "storm session", "storm sesh", "brainstorm", or "let's ideate".
Structured debugging and problem solving. Auto-triggers when the user reports an error, bug, or unexpected behavior. Supports fast (default) and slow modes.
| name | document |
| description | Generates standardized documentation (troubleshooting, guides, architecture) with consistent frontmatter. |
troubleshoot skill.type of document requested (Troubleshooting vs. Guide).docs/troubleshooting/ or docs/guides/).Use when: Documenting a specific error, bug, or failure and how to fix it.
Path: docs/troubleshooting/<system>/<issue-name>.md
---
type: Troubleshooting
status: Active
system: [System Name]
related_to: []
references: []
---
# Fixing [Issue Name] on [System]
## Symptoms
[What the user sees, exact error messages, stack traces]
## Root Cause
[Brief explanation of why it failed]
## Resolution
[Step-by-step fix]
1. ...
2. ...
## Verification
[How to confirm it's fixed]
## References
[Less is more. If a single authoritative resource covers the solution, only include that one.]
- [Link Title](URL) - [Brief note on what this link provided]
Use when: Documenting how to set something up correctly, or how to avoid an issue entirely.
Path: docs/guides/<system>/<topic>.md
---
type: Guide
status: Active
system: [System Name]
related_to: []
references: []
---
# [Topic / Setup] for [System]
## Overview
[What this configures and why it matters]
## Prerequisites
- [Requirement 1]
## Configuration
[Step-by-step setup]
1. ...
2. ...
## Common Pitfalls
[What to avoid, learned from past troubleshooting]
## References
[Less is more. If a single authoritative resource covers the solution, only include that one.]
- [Link Title](URL) - [Brief note on what this link provided]