From principled-implementation
Validate task implementations by running the project's test suite, linters, and CI checks. Discovers test commands from common project patterns (package.json, Makefile, pytest, cargo, go) and reports pass/fail with details. Use after a sub-agent completes a task.
How this skill is triggered — by the user, by Claude, or both
Slash command
/principled-implementation:check-implThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run the project's test suite and checks against a task's implementation to verify correctness.
Run the project's test suite and checks against a task's implementation to verify correctness.
/check-impl [--task <task-id>] [--all]
| Argument | Required | Description |
|---|---|---|
--task <id> | Yes (unless --all) | Specific task to validate |
--all | No | Validate all tasks with status validating |
Parse arguments. Determine target task(s) from $ARGUMENTS.
Identify worktree path(s). For each target task:
bash scripts/task-manifest.sh --get-task --task-id <id>git worktree list matching the branch nameDiscover check commands. Run:
bash scripts/run-checks.sh --discover --cwd <worktree-path>
Reports which checks were discovered and their sources. See reference/check-discovery.md for supported project types.
Run checks. For each task, within its worktree:
bash scripts/run-checks.sh --execute --cwd <worktree-path>
Runs each discovered check and captures exit code + output.
Update manifest. Run:
bash scripts/task-manifest.sh --update-status \
--task-id <task-id> \
--status passed|failed \
--check-results "<summary>"
Report results. For each task:
/merge-work <task-id> to merge."/spawn <task-id> to retry, or address manually in the worktree."scripts/run-checks.sh — Check discovery and execution (canonical copy)scripts/task-manifest.sh — Task manifest CRUD (copy from decompose)reference/check-discovery.md — How check commands are discovered from various project typesnpx claudepluginhub alexnodeland/principled --plugin principled-implementationOrchestrates verification of completed implementations via subagents for completeness checks, test execution, code review, pragmatic review, production readiness, and reality assessment. Compiles read-only report.
Verifies completed implementations for quality via subagents: completeness, test execution, code review, pragmatic review, production readiness, reality assessment. Compiles read-only reports.
Verifies plan completion by checking task status, running tests, measuring coverage, building, linting, and checking file sizes. Outputs a verification report.