Replaces the inline 3-repo list with a 5-repo card table (mascot above 64x64, title below) matching the design used in sibling gemini-cli-hooks README. Adds the two previously-missing Gemini cards: Gemini CLI Best Practice and Gemini CLI Hooks. Preserves the `<tool>-jumping.svg` for best-practice repos and `<tool>-speaking.svg` for hooks repos convention.
Co-Authored-By: Claude <noreply@anthropic.com>
Adds the speaking Gemini mascot (copied from sibling gemini-cli-hooks/!/) so the Gemini CLI Hooks card in the Other Repos section has its matching hooks-repo mascot (speaking variant, per the `<tool>-speaking.svg` = hooks-repo naming convention).
Co-Authored-By: Claude <noreply@anthropic.com>
Records 13 items: Hooks row updated to include `mcp_tool` as a 5th handler type (v2.1.118 adds "Hooks can invoke MCP tools directly"), Workflows row description filled in, CLI Startup Flags row references new /usage merger, plus verification items for hooks/ultrareview/checkpointing pages. One RECURRING INVALID (slash-commands URL redirect, kept across 18+ runs per user preference).
Co-Authored-By: Claude <noreply@anthropic.com>
No drift detected — report is fully in sync with official docs. All 16 frontmatter fields and 5 built-in agents match.
Co-Authored-By: Claude <noreply@anthropic.com>
No drift detected — all 16 frontmatter fields and 5 built-in agents match official docs. Badge timestamp refreshed to Apr 24, 2026 12:27 AM PKT.
Co-Authored-By: Claude <noreply@anthropic.com>
- Add `arguments` frontmatter field (count 14 → 15) — named positional $name substitution in skill content, accepts space-separated string or YAML list
- Refresh badge to Apr 24, 2026 12:27 AM PKT, v2.1.118
Co-Authored-By: Claude <noreply@anthropic.com>
Records 13 drift items: 3 new additions (wslInheritsWindowsSettings, $defaults sentinel, DISABLE_UPDATES), 3 stale removals resolved from v2.1.74 (askEdits, viewOnly, allow_remote_sessions), cleanupPeriodDays v2.1.117 scope expansion, Pro/Max effort default change, 2 changelog-only env vars promoted, and 3 ON HOLD items (OTEL_LOG_TOOL_DETAILS/USER_PROMPTS/TOOL_CONTENT recurring pending official docs).
Co-Authored-By: Claude <noreply@anthropic.com>
- Add `wslInheritsWindowsSettings` managed setting (WSL inherits Windows HKLM/registry policy chain)
- Document `"$defaults"` sentinel in `autoMode` — inherits built-in rules at that position so custom entries are added alongside them
- Add `DISABLE_UPDATES` env var (strictly blocks all update paths, stronger than DISABLE_AUTOUPDATER)
- Add `OTEL_LOG_RAW_API_BODIES` and `CLAUDE_CODE_FORK_SUBAGENT` env vars (changelog-only, flagged as such)
- Remove stale `askEdits`, `viewOnly`, `allow_remote_sessions` entries — not documented in official docs since v2.1.74 (40+ days)
- Expand `cleanupPeriodDays` description — v2.1.117 adds ~/.claude/tasks/, shell-snapshots/, and backups/ to the startup sweep
- Note v2.1.117 default-effort change from medium → high for Pro/Max on Opus 4.6 and Sonnet 4.6
- Refresh badge to Apr 24, 2026 12:27 AM PKT, v2.1.118
Co-Authored-By: Claude <noreply@anthropic.com>
Records 8 drift items resolved for v2.1.118: `arguments` frontmatter field added, /cost+/stats collapsed into /usage aliases, /voice/tap/hold/off mode, /theme custom themes, /terminal-setup editor list refresh, /effort max session-only note.
Co-Authored-By: Claude <noreply@anthropic.com>
- Add `arguments` frontmatter field (count 14 → 15) for named positional $name substitution
- Merge /cost and /stats as aliases of /usage (canonical command); update /usage description
- Update /voice signature to [hold|tap|off]
- Expand /theme description with custom themes from ~/.claude/themes/ and plugins
- Update /terminal-setup terminal list: drop Warp, add Cursor/Windsurf/Zed
- Mark /effort `max` level as session-only
- Refresh badge to Apr 24, 2026 12:29 AM PKT, v2.1.118
Co-Authored-By: Claude <noreply@anthropic.com>
Records the Apr 24 table update: sort swap (Superpowers↔ECC), 9 star bumps, 5 count changes. Flags 2 recurring ON HOLD items (ECC directory-count discrepancy, GSD commands 122→85) now on their 3rd consecutive run — signal that the lower directory-enumerated counts may be the accurate shipped surface.
Co-Authored-By: Claude <noreply@anthropic.com>
All three MCP servers used `npx -y <package>` without version pins,
causing npx to auto-install the latest version on each invocation.
A compromised or breaking release would silently affect all users.
Pinned to current stable versions verified against npm registry:
- @playwright/mcp@0.0.70
- @upstash/context7-mcp@2.1.8
- deepwiki-mcp@0.0.6
Update these pins deliberately when upgrading rather than auto-pulling.
Co-Authored-By: Claude Code <noreply@anthropic.com>
hooks.py logs full hook event data (including tool_input, which may contain
file contents or command arguments) to .claude/hooks/logs/hooks-log.jsonl.
This log file was not excluded from git, creating a risk of accidentally
committing sensitive data such as file contents passed to Write/Edit tools
or command arguments passed to Bash.
Added .claude/hooks/logs/ to .gitignore to prevent accidental commits.
Co-Authored-By: Claude Code <noreply@anthropic.com>
Two agent files both declared `name: time-agent` with different implementations:
- `.claude/agents/time-agent.md` (root): PKT, UTC+5 (Pakistan Standard Time)
- `agent-teams/.claude/agents/time-agent.md` (agent-teams): Dubai GST, UTC+4
When both scopes are active, Claude Code may invoke the wrong time-agent —
serving PKT time when a Dubai command expects GST, or vice versa.
Renamed the root agent's `name` from `time-agent` to `time-agent-pkt` so
the two agents are unambiguous. The agent-teams variant retains `name: time-agent`
since `agent-teams/.claude/commands/time-orchestrator.md` explicitly invokes it
by that name for Dubai time display.
Co-Authored-By: Claude Code <noreply@anthropic.com>