codebase-recall 0.7.3

CLI based application for codebase dumper for LLMs and fast review/recall project
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "_comment": "Call edges the layered resolver must / must not produce. Tuples are [from_path, from_name, to_path, to_name].",
  "must_have": [
    ["job.rs", "start", "scheduler.rs", "run"],
    ["job.rs", "start", "worker.rs", "run"],
    ["scheduler.rs", "run", "scheduler.rs", "tick"]
  ],
  "must_not_have": [
    ["main.rs", "main", "worker.rs", "run"],
    ["scheduler.rs", "run", "worker.rs", "run"],
    ["job.rs", "start", "worker.rs", "tick"]
  ]
}