소스 정보
- 저장소
- 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 commit-message명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | Commit Message |
| description | Generate commit messages following conventional commits with scope detection |
| skillSlug | commit-message |
| phases | ["E","C"] |
| generated | "2026-03-18T00:00:00.000Z" |
| status | filled |
| scaffoldVersion | 2.0.0 |
Generate consistent, informative commit messages for the @dotcontext/cli project.
plan({ action: 'commitPhase' }) MCP tool to auto-commit phase outputsThis project follows Conventional Commits with scope detection:
<type>(<scope>): <description>
[optional body]
[optional footer]
| Type | Use When |
|---|---|
feat | Adding new functionality (new MCP tool, new generator, new CLI command) |
fix | Fixing a bug (broken scaffold generation, incorrect path resolution) |
refactor | Restructuring code without changing behavior (service extraction, gateway consolidation) |
docs | Documentation only (README, CHANGELOG, .context/ content) |
test | Adding or updating tests |
chore | Build, tooling, dependency updates |
ci | CI/CD configuration |
Derive scope from the primary area of change:
| Scope | Directory/Area |
|---|---|
mcp | src/services/mcp/ -- MCP server, gateway tools |
cli | src/index.ts -- CLI commands, commander setup |
context | src/services/ai/tools/, src/services/init/ -- MCP scaffold and semantic-context flows |
init | src/services/init/ -- Scaffold initialization |
sync | src/services/sync/, src/services/export/, src/services/import/ |
semantic | src/services/semantic/ -- Tree-sitter, LSP, codebase analysis |
workflow | src/workflow/, src/services/workflow/ -- PREVC phases, gates |
generators | src/generators/ -- Doc, agent, plan, skill generators |
skills | src/workflow/skills/, .context/skills/ |
agents | src/generators/agents/, .context/agents/ |
plans | src/generators/plans/, src/services/mcp/gateway/plan.ts, .context/plans/ |
i18n | src/utils/i18n.ts -- Translations |
utils | src/utils/ -- Frontmatter, git, CLI UI |
ai | src/services/ai/ -- AI SDK, providers, tools |
types | src/types/, src/types.ts -- Type definitions |
deps | -- Dependency changes |
When changes span multiple scopes, use the most significant one or omit the scope.
Look at what changed:
# New MCP gateway action
feat(mcp): add buildSemantic action to context gateway
# Bug fix in scaffold generation
fix(generators): handle missing frontmatter in skill scaffold files
# Refactoring workflow internals
refactor(workflow): extract gate checking into separate GateChecker class
# Updating translations
feat(i18n): add pt-BR translations for workflow status messages
For multi-file changes, include context:
feat(mcp): add skill management gateway with 6 actions
Add the `skill` gateway tool to the MCP server with actions:
list, getContent, getForPhase, scaffold, export, fill.
Includes Zod schema validation, action logging via wrap(),
and barrel re-exports through gatewayTools.ts.
# Breaking change
feat(mcp)!: consolidate project tools into context gateway
BREAKING CHANGE: Removed standalone project-setup and project-report
tools. Use context({ action: "init" }) and workflow-init instead.
# Issue reference
fix(semantic): handle missing tree-sitter gracefully
Closes #31
# Co-authored commits (used by plan commitPhase)
feat(workflow): implement PREVC phase auto-advance
Co-Authored-By: feature-developer <agent@ai-coders>
# Small fix
git commit -m "fix(frontmatter): detect v2 scaffold format before v1 fallback"
# New feature
git commit -m "feat(mcp): add plan commitPhase action for git integration"
# Dependency update
git commit -m "chore(deps): upgrade @modelcontextprotocol/sdk to 1.25.2"
# Documentation
git commit -m "docs(skills): fill bug-investigation skill with project-specific content"
# Test addition
git commit -m "test(context): cover fillSingle guidance for generated scaffolds"
# Multi-scope refactor
git commit -m "refactor: extract gateway handlers into individual modules"
When using the plan tool's commitPhase action, commits are auto-generated with:
[".context/**"]<type>(<scope>): complete <phase> phase for <plan>For manual phase commits, follow the same pattern:
feat(workflow): complete Planning phase for add-caching-layer
- Created PRD and tech spec in .context/plans/
- Defined acceptance criteria and test plan
- Linked plan to active workflow
Co-Authored-By: planner <agent@ai-coders>
package.json