Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/vinilana/dotcontext --skill feature-name명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Implement or review bounded MCP inputs and responses. Use for gateway response helpers, MCP Zod schemas, list actions, cursor pagination, maxEvents, JSON serialization, audit logging, response metadata, artifact exports, or payload-size and client-compatibility changes.
Implement or review child-process execution with bounded stdout and stderr memory. Use for Node spawn wrappers, sensors, test runners, acceptance commands, timeout handling, output tails, truncation, or any change that captures subprocess output in the dotcontext harness.
Design, implement, or review bounded cache and persistent-index lifecycle. Use for ContextCache, SemanticContextBuilder, tree-sitter analysis cache, MCP session cache, hook host-session bindings, checkpoints, TTL, LRU, byte budgets, invalidation, cleanup timers, disposal, migration, or runtime retention configuration.
SOC 직업 분류 기준
SKILL.md 표시 중
| type | skill |
| name | Documentation |
| description | Generate and update technical documentation |
| skillSlug | documentation |
| phases | ["P","C"] |
| generated | "2026-03-18T00:00:00.000Z" |
| status | filled |
| scaffoldVersion | 2.0.0 |
Guidelines for creating and maintaining documentation in the @dotcontext/cli project.
.context/plans/.context/docs/.context/ content (docs, agents, skills, plans)| Location | Purpose | Format |
|---|---|---|
.context/docs/ | Project knowledge base (generated scaffolds) | Markdown with YAML frontmatter |
.context/agents/ | AI agent playbooks | Markdown with YAML frontmatter |
.context/skills/ | On-demand expertise guides | Markdown with YAML frontmatter |
.context/plans/ | Feature plans and tracking | Markdown with YAML frontmatter |
README.md | Public-facing project overview | Standard Markdown |
CHANGELOG.md | Version history (Keep a Changelog format) | Standard Markdown |
CONTRIBUTING.md | Contributor guidelines | Standard Markdown |
AGENTS.md | Agent knowledge base reference | Standard Markdown |
CLAUDE.md | Claude-specific project instructions | Standard Markdown |
Scaffold docs use v2 frontmatter:
---
type: documentation
name: Project Overview
description: High-level project summary
category: core
generated: 2026-03-18
status: filled
scaffoldVersion: "2.0.0"
---
Core docs in this project:
project-overview.md -- Technology stack, entry points, getting starteddevelopment-workflow.md -- Branching, CI, contributing processtesting-strategy.md -- Jest config, test types, quality gatestooling.md -- CLI scripts, dev commands, IDE setupcodebase-map.json -- Auto-generated semantic analysis outputWhen updating, preserve the frontmatter and set status: filled.
Each playbook follows this structure:
Available agents: code-reviewer, bug-fixer, feature-developer, refactoring-specialist, test-writer, documentation-writer, performance-optimizer.
Skills use this structure:
Follow Keep a Changelog format. Group changes under version headers:
## [0.7.2]
### Included Pull Requests
- [#XX](url) - type: description
### Added
- **Feature Name**: Details
### Changed
- **Area**: What changed
### Fixed
- **Bug**: What was fixed
Plans are created via context({ action: 'scaffoldPlan', planName: '...' }) or manually. Structure:
---
type: plan
name: feature-name
planSlug: feature-name
status: active
---
# Feature Name
## Goal
What this achieves.
## Phases
### Phase 1: Planning
- [ ] Step 1
- [ ] Step 2
### Phase 2: Execution
- [ ] Step 1
src/services/mcp/mcpServer.ts, not "the MCP server file"npx tsx src/index.ts <command>--- delimiterssrc/utils/i18n.tsen and pt-BR localesStandalone CLI AI generation is not supported. Documentation completion flows through MCP:
context({ action: 'fillSingle', filePath: '/path/to/doc.md' }) -- returns semantic context and scaffold structure for one filecontext({ action: 'fill', target: 'docs' }) -- returns batched guidance for multiple scaffold filessrc/services/autoFill/autoFillService.ts -- provides static starter content during scaffold generationThe MCP fill process:
context({ action: 'init' })SemanticContextBuilderstatus: filled