Help us improve
Share bugs, ideas, or general feedback.
From claude-commands
Measures zero-touch and one-touch rates from merged PRs to track agent autonomy in evolve loop cycles.
npx claudepluginhub jleechanorg/claude-commands --plugin claude-commandsHow this skill is triggered — by the user, by Claude, or both
Slash command
/claude-commands:zero-touch-metricsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Measure autonomy metrics for the evolve loop. Run via `/eloop` or standalone.
Generates a PR status report with 6-point green checks and zero-touch rate analysis, displayed inline and posted to Slack.
Collects agent usage metrics from git history and generates health reports or dashboards. Use for measuring adoption rates, system health, or periodic reviews via Python script.
Collects agent usage metrics from git history via Python script and generates markdown/JSON health reports. Use for measuring adoption, system health, or dashboards.
Share bugs, ideas, or general feedback.
Measure autonomy metrics for the evolve loop. Run via /eloop or standalone.
# Run in agent-orchestrator repo
cd $HOME/project_agento/agent-orchestrator
echo "=== Touch Rate (last N PRs) ==="
for pr in $(gh api 'repos/jleechanorg/agent-orchestrator/pulls?state=closed&per_page=30' --jq '.[] | select(.merged_at != null) | .number' 2>/dev/null | head -25); do
author=$(gh api "repos/jleechanorg/agent-orchestrator/pulls/$pr/commits" --jq '.[0].commit.author.name' 2>/dev/null)
echo "$pr|$author"
done
PRIMARY (One-touch rate): X/Y = Z%
SECONDARY (Zero-touch rate): A/B = C%