From harness
Auto-triggered when reviewing PRs that modify the Feature Table in CLAUDE.md or docs/CLAUDE-feature-table.md. Internal use only. Do NOT load for: standard code implementation, general PR reviews, project setup, or non-Feature-Table documentation changes. Quality guardrail for Claude Code update integration — detects doc-only Feature Table additions without corresponding implementation and requires implementation proposals.
npx claudepluginhub tim-hub/powerball-harness --plugin harnessThis skill is limited to using the following tools:
A quality guardrail that prevents "doc-only" additions to the Feature Table during Claude Code update integration.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
A quality guardrail that prevents "doc-only" additions to the Feature Table during Claude Code update integration. Automatically classifies whether Feature Table additions are accompanied by implementation, and forces output of implementation proposals when lacking.
This skill is triggered in the following situations:
CLAUDE.md / docs/CLAUDE-feature-table.md)/harness-review determines a PR is a CC integration PRSituations where this skill is not triggered:
/work)Each item added to the Feature Table is classified into the following 3 categories.
Definition: Implementation changes to hooks / scripts / agents / skills / core corresponding to the Feature Table addition are included in the same PR.
Criteria:
Examples:
| Feature Table Addition | Corresponding Implementation Change | Classification |
|---|---|---|
PostCompact hook | hooks/post-compact-handler.sh newly created | A |
MCP Elicitation support | Elicitation event added to hooks.json + elicitation-handler.sh created | A |
Worker maxTurns limit | maxTurns field added to agents/worker.md | A |
Result: OK. No additional action needed.
Definition: Rows were added only to the Feature Table with no Harness-side implementation changes. Also does not qualify as CC auto-inherited (Category C).
Criteria:
Examples:
| Feature Table Addition | Corresponding Implementation Change | Classification |
|---|---|---|
PreCompact hook | None (Feature Table only) | B |
Agent Teams | None (Feature Table only) | B |
Desktop Scheduled Tasks | None (Feature Table only) | B |
Result: NG. Block the PR and require an implementation proposal. Output format described below.
Definition: Items such as Claude Code core performance improvements, bug fixes, and internal optimizations that require no Harness-side changes.
Criteria:
Examples:
| Feature Table Addition | Reason | Classification |
|---|---|---|
Streaming API memory leak fix | CC internal memory leak fix. No Harness-side action needed | C |
Compaction image retention | CC retains images during compaction. No Harness changes needed | C |
Parallel tool call fix | CC internal parallel execution fix. Benefits are automatic | C |
Result: OK. However, "CC auto-inherited" must be explicitly noted in the Feature Table column.
Verify the following in order during PR review:
## CC Update Integration Checklist
### 1. Extract Feature Table Diff
- [ ] List added rows from the diff of `CLAUDE.md` or `docs/CLAUDE-feature-table.md`
### 2. Classify Each Item
- [ ] Determine A / B / C for each added row
- [ ] Confirm that Category B items are 0
### 3. Per-Category Verification
- [ ] (A) Has implementation: Are corresponding implementation files correctly linked?
- [ ] (B) Doc-only: Has an implementation proposal been provided? (Block PR if not 0)
- [ ] (C) CC auto-inherited: Is "CC auto-inherited" explicitly noted in the Feature Table?
### 4. CHANGELOG Verification
- [ ] Are Category A items documented in the CHANGELOG in "Before / After" format?
- [ ] Are Category C items documented in the CHANGELOG as CC auto-inherited?
### Classification Results
| # | Feature Table Item | Category | Corresponding File / Notes |
|---|-------------------|----------|---------------------------|
| 1 | (item name) | A / B / C | (file path or notes) |
| 2 | (item name) | A / B / C | (file path or notes) |
When 1 or more Category B items are detected, output an implementation proposal in the following format. This output is mandatory and cannot be omitted.
## Category B Detected: Implementation Proposals
### B-{number}. {Feature Table item name}
**Current state**: Listed in Feature Table only. No Harness-side implementation.
**Harness-specific added value**:
{Specific explanation of how Harness should leverage this feature}
**Implementation proposal**:
| Target File | Change Description |
|------------|-------------------|
| `{file path}` | {specific change description} |
| `{file path}` | {specific change description} |
**User experience improvement**:
- Before: {current user experience}
- After: {user experience after implementation}
**Implementation priority**: {High / Medium / Low}
**Estimated effort**: {Small / Medium / Large}
## Category B Detected: Implementation Proposals
### B-1. Desktop Scheduled Tasks
**Current state**: Listed in Feature Table only. No Harness-side implementation.
**Harness-specific added value**:
Integrate Scheduled Tasks with Harness workflows to automate periodic quality checks,
status syncing, and memory cleanup.
**Implementation proposal**:
| Target File | Change Description |
|------------|-------------------|
| `skills/harness-work/references/scheduled-tasks.md` | Scheduled task templates and guide |
| `scripts/setup-scheduled-tasks.sh` | Initial setup script |
| `hooks/hooks.json` | Cron trigger registration |
**User experience improvement**:
- Before: Users had to manually run periodic tasks
- After: Harness automatically runs periodic quality checks and notifies with results
**Implementation priority**: Medium
**Estimated effort**: Medium
It is recommended to add the following column to the Feature Table:
| Feature | Skill | Purpose | Added Value |
|---|---|---|---|
| PostCompact hook | hooks | Context re-injection | A: Has implementation |
| Streaming leak fix | all | Memory leak fix | C: CC auto-inherited |
This column makes it possible to verify each item's classification at a glance and prevent Category B items from remaining.
harness-review - Code review (internally invokes this skill when a CC integration PR is detected)harness-work - Implementation work (when working based on Category B implementation proposals)memory - SSOT management (recording classification criteria decisions)