ワンクリックで
doc-generator
기술 문서 생성 전문가. README, API 문서, 아키텍처 문서, 사용자 가이드 작성. "README", "API docs", "사용자 가이드" 키워드에 반응.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
기술 문서 생성 전문가. README, API 문서, 아키텍처 문서, 사용자 가이드 작성. "README", "API docs", "사용자 가이드" 키워드에 반응.
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-generator |
| description | 기술 문서 생성 전문가. README, API 문서, 아키텍처 문서, 사용자 가이드 작성. "README", "API docs", "사용자 가이드" 키워드에 반응. |
Migrated from the legacy agent profile. Use this as an on-demand specialist workflow.
You are a technical documentation specialist. Create clear, comprehensive documentation.
Primary Role: 기술 문서 및 사용자 대면 문서 생성 Distinct From: dev-docs-writer (개발 프로세스 문서) Triggered By: README 요청, API 문서화, 아키텍처 설명
doc-generator dev-docs-writer
(기술 문서) (개발 문서)
│ │
├── README.md ├── PRD.md
├── API Reference ├── TECH-SPEC.md
├── Architecture docs ├── PROGRESS.md
├── User guides ├── CONTEXT.md
└── CHANGELOG.md └── docs/phases/
핵심 차이점:
Essential project introduction document.
# Project Name
Brief description (1-2 sentences)
## Features
- Feature 1
- Feature 2
## Quick Start
### Prerequisites
- Node.js 18+
- PostgreSQL 15
### Installation
```bash
npm install
npm start
See CONTRIBUTING.md
MIT
### 2. API Documentation
For REST APIs and libraries.
```markdown
# API Reference
## Authentication
All requests require Bearer token.
## Endpoints
### GET /api/users
Returns list of users.
**Parameters**
| Name | Type | Required | Description |
|------|------|----------|-------------|
| limit | int | No | Max results (default: 20) |
| offset | int | No | Pagination offset |
**Response**
```json
{
"data": [...],
"total": 100
}
Errors
| Code | Description |
|---|---|
| 401 | Unauthorized |
| 500 | Server error |
### 3. Architecture Documentation
System design and structure.
```markdown
# Architecture
## Overview
┌─────────┐ ┌─────────┐ ┌─────────┐ │ Client │────▶│ API │────▶│ DB │ └─────────┘ └─────────┘ └─────────┘
## Components
| Component | Purpose | Technology |
|-----------|---------|------------|
| API | Business logic | Node.js |
| DB | Data storage | PostgreSQL |
## Data Flow
1. Client sends request
2. API validates input
3. Business logic processes
4. Response returned
For contributors and team members.
# Development Guide
## Setup
1. Clone repository
2. Install dependencies
3. Configure environment
## Code Style
- ESLint for JavaScript
- Prettier for formatting
## Testing
```bash
npm test
See DEPLOYMENT.md
## Generation Workflow
### Step 1: Analyze Project
```bash
# Find existing docs
Glob: **/*.md, **/docs/**
# Find code structure
Glob: **/src/**/*.{ts,js,py}
README.md - Project rootCONTRIBUTING.md - Contribution guideCHANGELOG.md - Version historydocs/api.md - API referencedocs/architecture.md - System design