buddy
nWave concierge — ask any question about methodology, project state, commands, migration, or troubleshooting. Read-only, contextual answers.
Git change frequency hotspot analysis — find the most-changed files in your codebase
> /plugin marketplace add nWave-ai/nWave > /plugin install nw@nwave-marketplace
How it fires
How this command gets triggered: by you, by Claude, or both.
/hotspotContext preview
What this command does when you run it.
Git change frequency hotspot analysis — find the most-changed files in your codebase
description: "Git change frequency hotspot analysis — find the most-changed files in your codebase" argument-hint: "[--top=N] [--since=6m] [--json] [--rank report.md] [--detail file]"
**Wave**: CROSS_WAVE **Execution**: Inline (no agent — Claude executes git commands directly) **Inspiration**: Adam Tornhill's "Your Code as a Crime Scene"
Analyze git change frequency to identify the most-changed files in a codebase. Pure git churn — no complexity metrics. Use as a **pre-filter** to scope analysis or a **post-filter** to prioritize existing findings.
Run `git log --name-only` over the configured time period, count commits per file, rank by frequency.
Show the most-changed files in the repo. Output is inline only — no files persisted.
/nw-hotspot /nw-hotspot --top=20 /nw-hotspot --since=12m
**Steps:** 1. Run: `git log --since={since} --format=format: --name-only | sort | uniq -c | sort -rn` 2. Exclude deleted files (verify each file still exists with `test -f`) 3. For each file, get last changed date: `git log -1 --format="%ar" -- {file}` 4. Display ranked table (top N):
Rank │ Commits │ Last Changed │ File
──────┼─────────┼──────────────┼─────────────────────────
1 │ 87 │ 2 days ago │ src/services/payment.ts
2 │ 64 │ 1 week ago │ src/api/controllers/user.ts
3 │ 51 │ 3 days ago │ src/models/order.ts5. Show summary: total files changed in period, time period, top N shown
**Defaults:** `--top`: 15, `--since`: 6 months
Overlay churn data on an existing analysis report to prioritize findings.
/nw-hotspot --rank code-smell-detector-report.md
**Steps:** 1. Run the same git churn analysis 2. Read the specified report file 3. Extract file paths mentioned in the report 4. Annotate each file with its commit count 5. Re-sort findings by churn (highest first). Findings without extractable file paths go at the bottom. 6. Show noise reduction: "X of Y findings are in low-churn files (< 20 commits)"
Deep-dive into a single file's change history.
/nw-hotspot --detail src/services/payment.ts
**Steps:** 1. Monthly commit breakdown over the period 2. Top contributors to the file 3. Co-change coupling: top 5 files that frequently change alongside this one 4. Last 10 commit messages for context
/nw-hotspot --top=10 --json
Output: `[{"path": "src/services/payment.ts", "commits": 87, "last_changed": "2 days ago"}, ...]`
| Flag | Default | Description | |------|---------|-------------| | `--top` | 15 | Number of files to show | | `--since` | 6m | Time period (e.g., 3m, 12m, 2024-01-01) | | `--json` | false | Output as JSON array | | `--rank` | - | Path to existing report to re-rank by churn | | `--detail` | - | Path to single file for deep-dive |
Run `/nw-hotspot --top=10 --json` first, then pass the file list to:
Run `/nw-hotspot --rank {report.md}` after any analysis to prioritize by churn.
**Usage Context**: Inline utility, composable with any analysis skill **Handoff To**: Invoking context (no sequential handoff)
/nw-hotspot
/nw-hotspot --top=10 --json
/nw-hotspot --rank code-refactoring-report.md
/nw-hotspot --detail src/services/payment.ts
The invoked agent MUST create a task list from its workflow phases at the start of execution using TaskCreate. Each phase becomes a task with the gate condition as completion criterion. Mark tasks in_progress when starting each phase and completed when the gate passes. This gives the user real-time visibility into progress.
No persistent files. Output is displayed inline. JSON mode outputs a JSON array for composition with other tools.
AI agents that guide you from idea to working code, with human judgment at every gate. nWave runs inside Claude Code. It breaks feature delivery into seven waves (discover, diverge, discuss, design, devops, distill, deliver).
Repo: nWave-ai/nWave
nWave concierge — ask any question about methodology, project state, commands, migration, or troubleshooting. Read-only, contextual answers.
Bug fix workflow: root cause analysis → user review → regression test + fix via TDD
Detects current wave progress for a feature and resumes at the next step. Scans docs/feature/ for artifacts.
Orchestrates the full DELIVER wave end-to-end (roadmap > execute-all > finalize). Use when all prior waves are complete and the feature is ready for…
Designs system architecture with C4 diagrams and technology selection. Use when defining component boundaries, choosing tech stacks, or creating architecture…
Designs CI/CD pipelines, infrastructure, observability, and deployment strategy. Use when preparing platform readiness for a feature.