Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/vinilana/dotcontext --skill code-review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | Code Review |
| description | Review code quality, patterns, and best practices |
| skillSlug | code-review |
| phases | ["R","V"] |
| generated | "2026-03-18T00:00:00.000Z" |
| status | filled |
| scaffoldVersion | 2.0.0 |
Guidelines for reviewing code changes in the @dotcontext/cli project.
"strict": true)@generators/agents/* maps to src/generators/agents/*Service Layer (22 services in src/services/):
src/services/index.ts barrel filesFillService, WorkflowService, AIContextMCPServerGenerators (src/generators/):
SkillGeneratorResult)src/types/scaffoldFrontmatter.tsUtilities (src/utils/):
frontMatter.ts, contentSanitizer.ts, gitService.tscliUI.ts with CLIInterface typei18n.ts with TranslateFn type and en/pt-BR locale supportMCP Gateway Handlers (src/services/mcp/gateway/):
explore.ts, context.ts, sync.ts, etc.createJsonResponse/createErrorResponse/createTextResponse from response.tsindex.ts and gatewayTools.tsfs-extraconsole.log (use process.stderr.write for debug output)repoPath is never hardcoded; always resolved through options or getRepoPath()any types (use unknown + type guards where needed)anycreateErrorResponse() rather than throwingchalk/ora with user-friendly messagesfs-extra methods which handle missing directoriesfillService.ts, codebaseAnalyzer.ts)SkillGenerator, SemanticContextBuilder)I-free naming (SkillMetadata, not ISkillMetadata)BUILT_IN_SKILLS, PREVC_PHASE_ORDER)workflow-init, workflow-status).test.ts filesjest.mock() for external dependencies (AI providers, file system)fs.mkdtemp() and cleaned up in afterEachCLIInterface and TranslateFn for service tests (see fillService.test.ts)scaffoldVersion: "2.0.0"status field is set correctly (unfilled for new, filled after content generation)skillSlug for skills, agentType for agents, etc.)en and pt-BR in src/utils/i18n.ts'commands.fill.description't() function, not hardcoded stringsindex.ts are updatedAIContextMCPServer accepts contextBuilder for testing).describe() on every param with action prefixcreateJsonResponse/createErrorResponse consistentlygatewayTools.tsrepoPath uses the caching mechanism via getRepoPath()path.join(repoPath, outputDir, ...)force flag is respected (skip existing files when false)createSkillFrontmatter/serializeFrontmatter from scaffoldFrontmatter.tsautonomous or force is true.context/runtime/workflows/