소스 정보
- 저장소
- vinilana/dotcontext
- 최근 소스 활동
- 2026년 3월 22일 00:29
- 감지된 SKILL.md 언어
- 영어
- 스타
- 557
- 포크
- 93
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/vinilana/dotcontext --skill security-audit명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | Security Audit |
| description | Security review checklist for code and infrastructure |
| skillSlug | security-audit |
| phases | ["R","V"] |
| generated | "2026-03-18T00:00:00.000Z" |
| status | filled |
| scaffoldVersion | 2.0.0 |
Security review checklist specific to the @dotcontext/cli CLI tool and MCP server.
The @dotcontext/cli tool has a specific threat surface:
| Asset | Risk | Location |
|---|---|---|
| AI provider API keys | Exposure via logs, config files, or provider helpers | src/services/ai/providerFactory.ts, env vars |
| File system access | Path traversal, reading outside repo boundaries | src/services/mcp/gateway/explore.ts, readFileTool.ts |
| MCP server stdio | Command injection via tool parameters | src/services/mcp/mcpServer.ts |
| Generated scaffold content | Inclusion of secrets in .context/ output | src/services/ai/tools/, src/services/autoFill/, src/generators/ |
| User repository content | Unintended exposure via exported context | src/services/export/, src/services/sync/ |
| Dependencies | Supply chain vulnerabilities | package.json |
src/services/ai/providerFactory.ts helpers.context/ outputsrc/utils/contentSanitizer.ts) strips potential secrets from generated content.env files are in .gitignorepath.resolve() before access../ sequences that escape the repo rootreadFileTool.ts validates paths are within the project boundaryread action bounds access to the repo pathlist and search actions respect exclude patterns.context/ by default)repoPath parameter is resolved and optionally cached, not used rawprocess.stderr, not process.stdout (which is the MCP transport)wrapWithActionLogging does not log sensitive parameter valuesThe contentSanitizer.ts utility filters generated content:
npm audit shows no high/critical vulnerabilitiestree-sitter and tree-sitter-typescript are optional dependencies (native binaries)@ai-sdk/anthropic, @ai-sdk/openai, @ai-sdk/google) are from official sources@modelcontextprotocol/sdk is from the official MCP organizationaxios usage (if any) validates URLs and does not follow arbitrary redirectsexportRules and exportContext actions do not include API keys in outputreverseSync validates imported file content before writing to .context/dryRun: true) never writes filesgitService.ts does not expose credentialscommitPhase action stages only files matching the provided patterns[".context/**"] -- not ["**"]/[A-Za-z0-9]{32,}/, /sk-[a-zA-Z0-9]+/, /AKIA[A-Z0-9]{16}/path.resolve() or path.join()console.log() in MCP server code pathsnpm audit and address any high/critical findingssrc/services/mcp/gateway/ for input validationsrc/utils/contentSanitizer.ts for completeness of sanitization patternssrc/services/ai/providerFactory.ts and any prompt/default helpers for key handling.gitignore includes .env, *.pem, credentials*.context/ does not contain repo-external pathssrc/services/ai/tools/ for file access boundariesIf a security issue is found:
contentSanitizer.ts if the issue involves generated content### Security