nav-deep-research
Installation
SKILL.md
Navigator Deep Research Skill
One question in, one cited report.md out, conclusions in the knowledge graph. This
file is a thin router: each step's procedure lives in steps/N-name.md and is loaded
with Read at the moment the step starts, so a long run never depends on a procedure
that compaction has already evicted. All fetching, drafting, critique and patching
happens in subagents; the main session sees digests, findings and the final report.
Step 0: enabled check and paths (run before anything else)
python3 - <<'EOF'
import json, pathlib
cfg = json.loads(pathlib.Path(".agent/.nav-config.json").read_text()) if pathlib.Path(".agent/.nav-config.json").exists() else {}
d = cfg.get("deep_research") or {}
print(json.dumps({"enabled": bool(d.get("enabled", False)), "config": d}))
EOF