소스 정보
- 저장소
- Maestra-Tech/ContextDevKit
- 최근 소스 활동
- 2026년 8월 9일 14:35
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Maestra-Tech/ContextDevKit --skill source-command-pipeline-pipeline명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Generate, validate, and explicitly accept a canonical ContextDevKit ADR.
Open a multi-agent deliberation — a council of specialist voices debate a hard question with tiered research, a synthesizer converges, the result feeds an ADR. (ADR-0035 / ADR-0070)
Start a mutation-focused session on one objective and keep its scope bounded.
| name | source-command-pipeline-pipeline |
| description | Manage tasks in one canonical ContextDevKit 4 JSON scope. |
Use this skill when the user asks to run the migrated source command pipeline.
Manage the task scope named in $ARGUMENTS. The scope must resolve to a
workflow or batch directory, or directly to its pipeline/tasks.json.
pipeline/tasks.json is the only task and status authority. tasks.md is a
generated projection; never edit or parse it to decide state. There is no
global lane directory and no filesystem move on a status transition.
Use the smallest command that satisfies the request:
node contextkit/tools/scripts/pipeline.mjs list --tasks <scope> [--json]
node contextkit/tools/scripts/pipeline.mjs board --tasks <scope> [--digest]
node contextkit/tools/scripts/pipeline.mjs add --tasks <scope> --title "..." \
[--id T-001] [--priority P0-P4] [--depends-on T-000] \
[--acceptance "criterion one,criterion two"] [--touch-hints "src/a.mjs"] \
[--evidence-refs "gh#42"] [--report-refs "reports/triage.md"]
node contextkit/tools/scripts/pipeline.mjs move <id> <status> --tasks <scope>
node contextkit/tools/scripts/pipeline.mjs start <id> --tasks <scope>
node contextkit/tools/scripts/pipeline.mjs stop <id> --tasks <scope>
node contextkit/tools/scripts/pipeline.mjs qa-reject <id> "feedback" --tasks <scope>
node contextkit/tools/scripts/pipeline.mjs qa-approve <id> --evidence <ref> --tasks <scope>
node contextkit/tools/scripts/pipeline.mjs auto-transition <id> done --evidence <automated-test-ref> --tasks <scope>
node contextkit/tools/scripts/pipeline.mjs validate --tasks <scope>
node contextkit/tools/scripts/pipeline.mjs sync --tasks <scope>
Canonical statuses are backlog, working, blocked, testing, done, and
cancelled. The CLI validates legal edges and uses the document revision for
compare-and-swap. qa-approve is the normal testing -> done path and requires
real evidence. A successful automated suite uses the evidence-bound
auto-transition testing -> done edge immediately; it does not wait for a
second human test. qa-reject accepts testing or done, requires feedback,
clears stale current-cycle evidence, and returns the task to backlog. If its
Workflow was complete, that aggregate/package reopens first. A simple scoped
owner override may resolve a guarded QA verdict; it needs no autonomy grade,
council, agent receipt, or quorum.
sync repairs only the Markdown projection from JSON. A projection failure is
reported honestly after the canonical JSON commit and never rolls task state
back to a lane.
For conversation or read-only exploration, do not call this command and do not create a task. If the user's intent is unclear, ask one short question first.