Skip to content

Commit 18cefcb

Browse files
committed
updates
1 parent 1da57d7 commit 18cefcb

2 files changed

Lines changed: 32 additions & 0 deletions

File tree

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,38 @@ recur stats "Controller.**" --ext .cs # Stats for .cs files only
331331
recur stats "**" --json # JSON output
332332
```
333333
334+
### `recur callers` — find who calls a function or method
335+
```bash
336+
recur callers "CreateUser" --scope "UserService.**"
337+
recur callers "ValidateEmail" --scope "**" --ext .cs
338+
recur callers "ProcessData" --scope "**" --count
339+
git diff --name-only | recur callers "CreateUser" --scope "**" --stdin
340+
```
341+
342+
### `recur callees` — find what a function or method calls
343+
```bash
344+
recur callees "CreateUser" --scope "UserService.**"
345+
recur callees "ProcessRequest" --scope "**" --ext .cs
346+
recur callees "Initialize" --scope "**" --count
347+
git diff --name-only | recur callees "Initialize" --scope "**" --stdin
348+
```
349+
350+
### `recur trace` — visualize multi-level call paths
351+
```bash
352+
recur trace "ApplyAiContent" --scope "LevelController.**" --depth 2
353+
recur trace "GetDeletedComponents" --scope "**" --direction callers --depth 2
354+
recur trace "ValidateInput" --scope "**" --direction both --depth 1
355+
recur trace "HandleRequest" --scope "**" --format graph --depth 3
356+
```
357+
358+
### `recur trace-stats` — analyze call-graph complexity
359+
```bash
360+
recur trace-stats --scope "**" --ext .rs --top 5
361+
recur trace-stats --scope "**" --filter circular-only
362+
recur trace-stats --scope "**" --depth 8 --depth-guard clamp
363+
git diff --name-only | recur trace-stats --scope "**" --stdin --sort-by risk
364+
```
365+
334366
## Advanced Composability
335367
336368
**Hold my beer...** 🍺 These examples showcase the full power of Unix pipe composition with multi-source merging, cross-separator unification, and provenance tracking.

choco/recur.0.2.8.nupkg

-1 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)