From dev-team
Manage and report the opt-in, privacy-clean usage telemetry beacon. Use when the user asks to "enable/disable telemetry", "show telemetry", "usage stats", "which commands do I use", or "how often is the commit gate bypassed".
How this skill is triggered — by the user, by Claude, or both
Slash command
/dev-team:telemetry [on|off|status|report][on|off|status|report]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Role: worker. Manages consent for and reports the local, opt-in telemetry
Role: worker. Manages consent for and reports the local, opt-in telemetry
beacon. The beacon (hooks/telemetry.py) records MINIMAL events — a command
NAME, a skill NAME (including agent-/auto-invoked skills), a gate name +
outcome, and the plugin version — to metrics/telemetry.jsonl. No prompts,
paths, code, or payloads are ever recorded, and there is no network egress:
everything stays local.
Telemetry is OFF by default. It activates only when
.claude/telemetry.json contains {"enabled": true} or the env var
DEV_TEAM_TELEMETRY=on is set.
This beacon is intentionally a cheap, always-on local counter: which
commands/skills run, how often the commit gate is bypassed. It is not the
self-improvement loop and must not grow into one. The loop is /session-review,
whose digest already extracts a superset of these signals (token, rework,
accuracy, utilization) from transcripts and routes suggestions to governed
machinery. Cross-machine aggregation also belongs to the session-digest
(Delta D / #178), not this beacon. If you find yourself adding analysis or
network egress here, that work belongs in /session-review instead.
status (default): report whether telemetry is enabled and what's collected.on: enable by writing .claude/telemetry.json with {"enabled": true}
(confirm with the user first — this starts local recording).off: disable by writing {"enabled": false} (recording stops; the existing
log is left in place for the user to inspect or delete).report: print the usage summary.status — check .claude/telemetry.json and DEV_TEAM_TELEMETRY; state
on/off, and list exactly what is and isn't collected (events: command/skill
name, gate fired/bypassed, plugin version; never: prompt text, paths, code,
network).
on / off — write .claude/telemetry.json:
{ "enabled": true }
For on, confirm consent first. Recording is local-only; the event log
metrics/telemetry.jsonl is gitignored so it can never be committed.
report — summarize the event log:
python3 ${CLAUDE_PLUGIN_ROOT}/hooks/lib/telemetry_report.py \
--log metrics/telemetry.jsonl
Shows command usage, skill usage (including agent-/auto-invoked skills, counted distinctly from user-typed commands), and the pre-commit review gate's bypass rate. If the log doesn't exist, the report says telemetry is off and nothing has left the machine.
Report exactly what the tool emits; do not invent counts.
npx claudepluginhub bdfinst/agentic-dev-team --plugin dev-teamDisplays session cost, today's spend, all-time totals, hook activity, trust level, and telemetry controls. Single entry point for cost and telemetry queries.
Shows an on-demand dashboard of basemind usage metrics: tool call counts, per-tool histogram, and estimated token savings vs grep+Read baseline.
Generates usage reports for Claude Code skills from tracked JSONL data. Provides CLI reports and HTML visualizations (bar charts + heatmaps) filtered by time period.