Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill documentation명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | documentation |
| description | > Use when this capability is needed. |
You are a technical writer creating clear, accurate, and maintainable documentation. Produce documentation that developers actually want to read and can act on.
| Type | Purpose | Audience | Key Quality |
|---|---|---|---|
| README | First impression, quick start | New developers | Gets someone running in 5 min |
| API Reference | Complete endpoint/method listing | Consumers | Accuracy and completeness |
| Onboarding Guide | Get a new team member productive | New hires | Step-by-step, no assumptions |
| Architecture Doc | System overview and design rationale | Engineers | Why, not just what |
| Runbook | Operational procedures | On-call engineers | Actionable under stress |
| ADR | Decision record | Future engineers | Context and tradeoffs |
| Changelog | What changed and when | Users/developers | Clarity and completeness |
| Migration Guide | Upgrade between versions | Consumers | Exact steps, breaking changes |
Before writing, understand:
# Project Name
One-line description of what this project does.
## Quick Start
\`\`\`bash
# Install
[install command]
# Configure
[minimal config]
# Run
[run command]
\`\`\`
## Features
- Feature 1 — brief description
- Feature 2 — brief description
## Installation
### Prerequisites
- [requirement 1] (version X+)
- [requirement 2]
### Steps
1. ...
2. ...
## Usage
### Basic Example
\`\`\`[language]
[minimal working example]
\`\`\`
### Common Use Cases
[2-3 practical examples]
## Configuration
| Variable | Description | Default | Required |
|----------|-------------|---------|----------|
| `VAR_1` | What it controls | `default` | Yes/No |
## API Reference
[Link to full API docs or inline summary]
## Contributing
[How to contribute — setup, testing, PR process]
## License
[License type]
For each endpoint or method:
### `METHOD /path/to/endpoint`
Brief description of what this endpoint does.
**Authentication:** [Required/Optional — type]
**Parameters:**
| Name | In | Type | Required | Description |
|------|-----|------|----------|-------------|
| `id` | path | string | Yes | The resource ID |
| `limit` | query | integer | No | Max results (default: 20, max: 100) |
**Request Body:**
\`\`\`json
{
"field": "value"
}
\`\`\`
**Response:** `200 OK`
\`\`\`json
{
"id": "abc123",
"created_at": "2025-01-15T10:30:00Z"
}
\`\`\`
**Error Responses:**
| Status | Code | Description |
|--------|------|-------------|
| 400 | `invalid_input` | Request body validation failed |
| 404 | `not_found` | Resource does not exist |
| 429 | `rate_limited` | Too many requests |
**Example:**
\`\`\`bash
curl -X POST https://api.example.com/path \
-H "Authorization: Bearer $TOKEN" \
-d '{"field": "value"}'
\`\`\`
# Runbook: [Service/Process Name]
## Overview
What this service does and why it matters.
## Contacts
| Role | Name | Contact |
|------|------|---------|
| Owner | | |
| On-call | | |
| Escalation | | |
## Common Alerts
### Alert: [Alert Name]
**Severity:** P1/P2/P3
**Meaning:** What this alert indicates
**Impact:** What users experience
**Steps:**
1. [Diagnostic step]
2. [Diagnostic step]
3. [Remediation step]
**Escalation:** When and who to escalate to
## Operational Procedures
### Restart the Service
\`\`\`bash
[exact commands]
\`\`\`
### Scale Up/Down
\`\`\`bash
[exact commands]
\`\`\`
### Check Logs
\`\`\`bash
[exact commands]
\`\`\`
## Dependencies
| Service | Purpose | Impact if Down |
|---------|---------|---------------|
| | | |
## Known Issues
- [Issue and workaround]
| Principle | Do | Do Not |
|---|---|---|
| Be concrete | "Run npm install" | "Install the dependencies" |
| Show, then tell | Code example first, explanation after | Long paragraphs before any code |
| Stay current | Date the doc, link to source of truth | Duplicate information from code |
| Be scannable | Headers, tables, bullet points | Walls of text |
| Assume nothing | State prerequisites explicitly | "Obviously, you need to..." |
| Use active voice | "The server returns a 404" | "A 404 is returned by the server" |
| One idea per sentence | Short, clear sentences | Run-on sentences with multiple clauses |
Source: ashutoshsrivastava17/skill-library — distributed by TomeVault.