一键导入
doc
Documentation generation and update. Creates README, API docs, architecture docs. Use when documentation is needed or outdated.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Documentation generation and update. Creates README, API docs, architecture docs. Use when documentation is needed or outdated.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Orchestrates a dual-AI engineering loop where Claude CLI runs with `--dangerously-skip-permissions` for planning/implementation and Codex validates/reviews outputs. Use when users ask for Claude+Codex collaboration, cross-review, dual AI loop, or explicit Claude CLI execution with skip-permission mode ("claude", "dangerously-skip-permission", "dangerously-skip-permissions", "codex claude", "dual AI", "교차 검증", "claude 협업").
Codex Agent 작성 전문가. Frontmatter 검증, 트리거 키워드 제안, 구조 템플릿 제공, 테스트 시나리오 작성을 지원합니다.
Synchronize all agile development artifacts in one command. Updates CHANGELOG, README stats, progress tracking, and validates documentation completeness.
Agent/Skill 사용 통계 및 성과 리포트 생성 전문가. CLI 차트로 시각화하고 인사이트를 제공합니다. "통계", "사용량", "analytics", "성과", "리포트", "메트릭", "분석", "usage", "metrics", "statistics", "report" 키워드에 반응.
Tool/Agent 사용 통계를 CLI 차트로 시각화. "통계", "사용량", "analytics", "metrics", "리포트" 키워드에 반응.
Use when creating or developing, before writing code or implementation plans - refines rough ideas into fully-formed designs through collaborative questioning, alternative exploration, and incremental validation. Don't use during clear 'mechanical' processes
| name | doc |
| description | Documentation generation and update. Creates README, API docs, architecture docs. Use when documentation is needed or outdated. |
/doc [type] [target]
type: readme | api | arch | guide | changelogtarget: File or directory to document/doc readme
/doc api src/routes/
/doc arch
/doc guide deployment
/doc changelog v1.2.0
/doc readme)Creates or updates project README.md:
# Project Name
Brief description.
## Features
- Feature 1
- Feature 2
## Installation
```bash
npm install project-name
import { feature } from 'project-name';
MIT
### API Documentation (`/doc api`)
Documents API endpoints or module exports:
```markdown
# API Reference
## Endpoints
### `GET /api/users`
Returns list of users.
**Parameters**
| Name | Type | Required | Description |
|------|------|----------|-------------|
| limit | number | No | Max results |
**Response**
```json
{
"data": [{ "id": 1, "name": "John" }],
"total": 100
}
POST /api/usersCreates a new user.
Body
{
"name": "string",
"email": "string"
}
### Architecture (`/doc arch`)
Documents system architecture:
```markdown
# Architecture
## System Overview
┌─────────┐ ┌─────────┐ ┌─────────┐ │ Client │────▶│ API │────▶│ DB │ └─────────┘ └─────────┘ └─────────┘
## Components
### Frontend
- Framework: React
- State: Redux
- Routing: React Router
### Backend
- Runtime: Node.js
- Framework: Express
- Database: PostgreSQL
## Data Flow
1. User action triggers API call
2. API validates and processes
3. Database query/update
4. Response returned
## Directory Structure
src/ ├── components/ # UI components ├── services/ # Business logic ├── models/ # Data models └── utils/ # Utilities
/doc guide)Creates how-to guides:
# {Topic} Guide
## Overview
What this guide covers.
## Prerequisites
- Requirement 1
- Requirement 2
## Steps
### Step 1: Setup
Description and code.
### Step 2: Configuration
Description and code.
### Step 3: Execution
Description and code.
## Troubleshooting
### Common Issue 1
Solution.
### Common Issue 2
Solution.
## Related
- [Other Guide](other.md)
/doc changelog)Updates CHANGELOG.md:
# Changelog
## [1.2.0] - YYYY-MM-DD
### Added
- New feature X
- New feature Y
### Changed
- Improved performance of Z
### Fixed
- Bug in component A
- Issue with feature B
### Deprecated
- Old method C (use D instead)
### Removed
- Legacy feature E
### Security
- Fixed vulnerability in F
# Find existing docs
Glob: **/*.md, docs/**
# Find code to document
Glob: src/**/*.{ts,js}
Grep: "export|module\.exports"