원클릭으로
documentation
Use when updating documentation, writing changelogs, or creating technical docs. Provides doc standards and templates.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when updating documentation, writing changelogs, or creating technical docs. Provides doc standards and templates.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when reviewing code for security, performance, or quality issues. Provides checklists and patterns for thorough code review.
Use when running tests, analyzing coverage, writing test cases, or hunting for bugs. Provides testing strategies and bug report formats.
| name | documentation |
| description | Use when updating documentation, writing changelogs, or creating technical docs. Provides doc standards and templates. |
| version | 1.0.0 |
Knowledge for writing and maintaining technical documentation. Read the code before trusting existing docs.
Documentation should match reality, not aspirations.
Always verify against actual code before updating docs.
# Project Name
One-line description of what this does.
## Quick Start
Minimum steps to get running:
1. Install: `npm install`
2. Configure: Copy `.env.example` to `.env`
3. Run: `npm run dev`
## Features
- Feature 1 - brief description
- Feature 2 - brief description
## Documentation
- [API Reference](docs/api.md)
- [Configuration](docs/config.md)
- [Contributing](CONTRIBUTING.md)
## License
MIT
Follow Keep a Changelog format:
# Changelog
All notable changes to this project will be documented in this file.
## [Unreleased]
### Added
- New feature X for doing Y (#123)
### Changed
- Updated Z to handle edge case (#124)
### Fixed
- Bug where A caused B (#125)
### Security
- Patched vulnerability in dependency C
### Removed
- Deprecated feature Q
## [1.2.0] - 2024-01-15
### Added
- User authentication with OAuth
- Password reset flow
### Fixed
- Session timeout not redirecting to login
## Create User
Creates a new user account.
**Endpoint:** `POST /api/users`
**Headers:**
| Header | Required | Description |
|--------|----------|-------------|
| Authorization | Yes | Bearer token |
| Content-Type | Yes | application/json |
**Request Body:**
```json
{
"email": "user@example.com",
"name": "John Doe",
"role": "user"
}
Response: 201 Created
{
"id": "usr_123",
"email": "user@example.com",
"name": "John Doe",
"createdAt": "2024-01-15T10:30:00Z"
}
Errors:
| Code | Description |
|---|---|
| 400 | Invalid request body |
| 409 | Email already exists |
| 401 | Unauthorized |
## Documentation Style Guide
### Principles
1. **Concise** - Brevity over completeness
2. **Practical** - Examples over theory
3. **Accurate** - Verified against code
4. **Scannable** - Headers, bullets, tables
5. **Current** - No outdated information
### Writing Rules
- Use present tense ("Returns" not "Will return")
- Use active voice ("The function returns" not "The value is returned by")
- Use second person sparingly ("You can configure..." is OK)
- Be direct (no "basically", "simply", "just")
- Include code examples for anything non-obvious
### What to Include
- ✅ How to install/setup
- ✅ How to use (with examples)
- ✅ Configuration options
- ✅ Common problems and solutions
- ✅ API reference for public interfaces
### What to Skip
- ❌ Implementation details that may change
- ❌ Obvious code comments
- ❌ Internal architecture (unless for contributors)
- ❌ Future plans (use issues/roadmap instead)
## Update Process
1. **Check git diff** - What files changed?
2. **Read the code** - Understand actual behavior
3. **Compare to docs** - What's now wrong or missing?
4. **Update minimally** - Only what's necessary
5. **Verify accuracy** - Does the doc match the code?
## Detailed References
- [Changelog Format](references/changelog.md) - Full changelog guidelines
- [Style Guide](references/style.md) - Writing style rules