| name | team-shinchan:lint-harness |
| description | Use when you need to run plugin consistency checks or drift detection. |
| user-invocable | false |
Lint Harness Skill
Check plugin consistency and detect configuration drift.
Usage
/team-shinchan:lint-harness
/team-shinchan:lint-harness --category agents
/team-shinchan:lint-harness --category structure
/team-shinchan:lint-harness --category drift
/team-shinchan:lint-harness --format table
Arguments
| Arg | Default | Description |
|---|
--category {name} | (all) | Check only: agents, structure, or drift |
--format {fmt} | json | Output format: json or table |
Process
Step 1: Run Lint Script
Execute the harness lint script:
node ${CLAUDE_PLUGIN_ROOT}/src/harness-lint.js [args]
Step 2: Display Results
Show the output from the lint script directly to the user.
- JSON format: structured report with categories, checks, pass/fail, details
- Table format: colored text table with PASS/FAIL indicators
Step 3: Summarize
After displaying results, provide a brief summary:
Harness Lint: {passed}/{total} checks passed
{list any FAIL items with recommended fixes}
Categories
| Category | What it checks |
|---|
| agents | Required frontmatter, coding-principles refs, maxTurns, permissionMode |
| structure | Skill-command parity, hook registration, cross-refs, layer-map |
| drift | Output-formats refs, self-check refs, version consistency, ARCHITECTURE.md staleness, Assumption Audit (Skepticism Rules, Sprint-Contract, eval-rubrics.json, resume handoff) |
Important
- Script writes
.shinchan-docs/.last-lint timestamp after running
- Recommended to run at least once per week
- Zero external dependencies — uses only Node.js built-in modules