Help us improve
Share bugs, ideas, or general feedback.
From lacp-hardening
Shows LACP hardening status including active hooks, context mode, eval checkpoint state, recent quality gate decisions, and handoff artifact.
npx claudepluginhub 0xnyk/lacp --plugin lacp-hardeningHow this command is triggered — by the user, by Claude, or both
Slash command
/lacp-hardening:hardening-statusThe summary Claude sees in its command listing — used to decide when to auto-load this command
Show the current LACP hardening status by checking: 1. **Active hooks**: Which LACP hooks are installed and firing 2. **Context mode**: What `LACP_CONTEXT_MODE` is set (if any) 3. **Eval checkpoint**: Whether continuous QA is enabled and its last result 4. **Quality gate**: Recent telemetry decisions (blocks, allows, scores) 5. **Handoff**: Whether a handoff artifact exists for this directory Run these commands to gather the data: Present the results as a clear status report.
/harness-statusDisplays harness health from HARNESS.md: last audit, constraints enforcement ratio (deterministic/agent/unverified), garbage collection active ratio, and drift status.
/doctorRuns health check for the great_cto pipeline, reporting missing required files, PROJECT.md format issues, hook status, last run per agent, and permission-denied tails. Optional --fix flag outputs remediation commands.
/harness-auditAudits the repository's agent harness setup across tool coverage, context efficiency, quality gates, and more, producing an overall score out of 70, category breakdowns, findings, top 3 actions with file paths, and suggested ECC skills. Supports optional scopes and JSON format.
/scanRuns a multi-surface security scanner (SCA, secrets, authz, MCP, pipeline, logic, diff) with focused modes and supplementary output blocks. Exit codes convey severity.
/verificationRuns harness verification on project [--path <path>] [--session-slug <session-slug>], checking health/compliance via validation commands, reporting violations, and remediating critical issues.
/thumbgate-doctorAudits ThumbGate wiring in the current project — checks hooks, MCP server reachability, and agent-readiness — then reports what's broken with fix commands.
Share bugs, ideas, or general feedback.
Show the current LACP hardening status by checking:
LACP_CONTEXT_MODE is set (if any)Run these commands to gather the data:
# Check hook telemetry (last 5 entries)
tail -5 ~/.local/share/claude-hooks/telemetry.jsonl 2>/dev/null | python3 -c "
import json, sys
for line in sys.stdin:
try:
e = json.loads(line.strip())
print(f\" {e.get('ts','?')[:19]} {e.get('hook','?'):10s} {e.get('decision','?'):6s} {e.get('reason','')[:60]}\")
except: pass
" || echo " No telemetry data"
# Check eval checkpoint
cat ~/.lacp/hooks/contracts/*/eval_checkpoint.json 2>/dev/null | python3 -c "
import json, sys
try:
d = json.load(sys.stdin)
print(f\" Writes: {d.get('write_count',0)}, Last: {d.get('last_result','?')}, Fails: {d.get('fail_count',0)}\")
except: print(' No checkpoint data')
"
# Check context mode
echo " Mode: ${LACP_CONTEXT_MODE:-none}"
echo " Eval checkpoint: ${LACP_EVAL_CHECKPOINT_ENABLED:-disabled}"
Present the results as a clear status report.