fix: tighten project instruction path handling

This commit is contained in:
Yichen Jiang
2026-06-29 21:42:23 +08:00
parent 234ffe4604
commit 21ae734839
20 changed files with 247 additions and 30 deletions

View File

@@ -28,6 +28,7 @@ graph TD
invariants --> session
project-instructions --> agent
project-instructions --> llm
project-instructions --> paths
session-persistence-jsonl --> session
session-persistence-jsonl --> session-persistence
session-persistence-sqlite --> session
@@ -100,6 +101,7 @@ graph TD
| Package | Depends on |
| --- | --- |
| `brand` | — |
| `paths` | — |
| `bash` | `brand` |
| `llm` | `brand` |
| `bash-local` | `bash` |
@@ -112,7 +114,7 @@ graph TD
| `llm-replay` | `llm`, `session` |
| `session-persistence` | `session` |
| `invariants` | `agent`, `llm`, `session` |
| `project-instructions` | `agent`, `llm` |
| `project-instructions` | `agent`, `llm`, `paths` |
| `session-persistence-jsonl` | `session`, `session-persistence` |
| `session-persistence-sqlite` | `session`, `session-persistence` |
| `tools` | `agent`, `llm`, `system-prompt` |