$npx -y skills add xwtro0tk1t-cloud/harness --skill harness-help--- description: Triggered when the user says "harness help", "harness commands", "harness usage", "what commands are available", or "show harness commands". Displays the Harness command index, installed Skill inventory, and high-frequency scenario entry points. ---
| 1 | # Harness Help — Command Index & Scenario Quick Reference |
| 2 | |
| 3 | --- |
| 4 | description: Triggered when the user says "harness help", "harness commands", "harness usage", "what commands are available", or "show harness commands". Displays the Harness command index, installed Skill inventory, and high-frequency scenario entry points. |
| 5 | --- |
| 6 | |
| 7 | ## Behavior |
| 8 | |
| 9 | 1. Display Harness command index |
| 10 | 2. Scan `~/.claude/skills/` to list installed Skills by category |
| 11 | 3. Show high-frequency scenario → command/Skill quick entry points |
| 12 | |
| 13 | --- |
| 14 | |
| 15 | ## Command Index |
| 16 | |
| 17 | ``` |
| 18 | Harness Command System: |
| 19 | |
| 20 | harness — Project initialization (full 8-step workflow) |
| 21 | harness help — This help page (command index + scenario quick ref) |
| 22 | harness audit — Project health check (verify CLAUDE.md/docs/hooks/skill completeness) |
| 23 | harness quality gate — Pre-commit quality gate (tests + lint + security review + doc sync) |
| 24 | harness guide — Skill recommendation (match the best Skill for your scenario) |
| 25 | harness cleanup — Interactive temp file archive (scan → confirm → move to archive/, never deletes) |
| 26 | harness resume — Lightweight context recovery (same session after /compact, ~3k tokens) |
| 27 | harness handoff — Deep context handoff (new agent / crash recovery, ~8k tokens) |
| 28 | ``` |
| 29 | |
| 30 | ## Installed Skills Inventory |
| 31 | |
| 32 | Scan `~/.claude/skills/` directory, display by category: |
| 33 | |
| 34 | ``` |
| 35 | 🔧 Infrastructure (behavior control + planning + knowledge extraction): |
| 36 | [status] superpowers — brainstorming/TDD/debugging/code-review/verification |
| 37 | [status] planning-with-files — /plan task planning + 4 hooks for continuous injection |
| 38 | [status] claudeception — lessons learned → auto-generate Skills |
| 39 | |
| 40 | 🏭 Skill Factories (generate new Skills): |
| 41 | [status] skill-creator — codify workflows into Skills |
| 42 | [status] security-review-skill-creator — generate security audit rules for a project |
| 43 | |
| 44 | 🔒 Security: |
| 45 | [status] security-review-skill-for-docker — Docker/container security |
| 46 | [status] security-review-skill-for-terraform — Terraform/IaC security |
| 47 | [status] sca-ai-denoise — SCA vulnerability denoising |
| 48 | [status] supply-chain-audit — supply chain poisoning detection |
| 49 | [status] skills-audit — third-party Skill audit |
| 50 | [status] web-vuln-analyzer — web vulnerability analysis |
| 51 | [status] android-vuln-analyzer — Android vulnerability analysis |
| 52 | [status] security-review-skill-for-* — project-specific security audit |
| 53 | |
| 54 | 🎨 Development Aids: |
| 55 | [status] frontend-design — frontend UI generation |
| 56 | [status] canvas-design — visual design |
| 57 | |
| 58 | 📝 Project Skills (.claude/skills/): |
| 59 | [list project-level Skills] |
| 60 | ``` |
| 61 | |
| 62 | Status labels: ✅ Installed | ❌ Not installed | ⚠️ Needs configuration |
| 63 | |
| 64 | ## High-Frequency Scenarios |
| 65 | |
| 66 | | Scenario | Action | |
| 67 | |----------|--------| |
| 68 | | Initialize a new project | Say "harness" | |
| 69 | | Start a new feature | Say "/plan" → use superpowers brainstorming | |
| 70 | | Debug a bug | superpowers auto-injects systematic-debugging | |
| 71 | | Security audit | "Generate a security audit skill for this project" → security-review-skill-creator | |
| 72 | | SCA denoising | "Analyze these SCA vulnerabilities" → sca-ai-denoise | |
| 73 | | Supply chain audit | "Check dependency security" → supply-chain-audit | |
| 74 | | Docker security review | "Review Docker configuration" → security-review-skill-for-docker | |
| 75 | | Pre-commit check | Say "quality gate" → harness-quality-gate | |
| 76 | | Check project health | Say "harness audit" | |
| 77 | | Clean up temp files | Say "harness cleanup" → interactive archive to archive/ | |
| 78 | | Resume after /compact | Say "harness resume" → lightweight recovery (~3k tokens) | |
| 79 | | Hand off to new agent | Say "harness handoff" → deep handoff (~8k tokens) | |
| 80 | | Recommend a Skill | Say "harness guide" or "which skill should I use" | |
| 81 | | Capture experience | Say "/claudeception" | |
| 82 | | Create a new Skill | "Help me create a skill for XX" → skill-creator | |
| 83 | |
| 84 | --- |
| 85 | |
| 86 | ## Re-initialization |
| 87 | |
| 88 | If you need to reconfigure (e.g., add Skills, update hooks): |
| 89 | - Re-run `harness` — idempotent execution, only supplements missing parts, never overwrites existing content |