chore: adapt web seam to master's tsconfig + regenerate catalogs

Register the five web packages in the root tsconfig.json project graph
(master's typecheck moved to `tsc -b tsconfig.json` and dropped the
separate tsconfig.typecheck.json), and regenerate the module graph and
cordis catalog so they reflect the web packages on master.
This commit is contained in:
Dudu-0223
2026-06-26 19:18:46 +08:00
parent 1cd3a454da
commit caef252905
3 changed files with 56 additions and 2 deletions

View File

@@ -15,6 +15,7 @@ graph TD
session --> brand
session --> llm
system-prompt --> llm
web --> llm
agent --> brand
agent --> llm
agent --> session
@@ -23,6 +24,9 @@ graph TD
llm-replay --> llm
llm-replay --> session
session-persistence --> session
web-fetch-local --> web
web-search-exa --> web
web-search-perplexity --> web
invariants --> agent
invariants --> llm
invariants --> session
@@ -54,6 +58,10 @@ graph TD
tool-bash --> bash
tool-bash --> llm
tool-bash --> tools
tool-web --> llm
tool-web --> system-prompt
tool-web --> tools
tool-web --> web
agent-core --> agent
agent-core --> agent-loop
agent-core --> invariants
@@ -102,10 +110,14 @@ graph TD
| `llm-pi-ai` | `llm` |
| `session` | `brand`, `llm` |
| `system-prompt` | `llm` |
| `web` | `llm` |
| `agent` | `brand`, `llm`, `session` |
| `compact` | `llm`, `session` |
| `llm-replay` | `llm`, `session` |
| `session-persistence` | `session` |
| `web-fetch-local` | `web` |
| `web-search-exa` | `web` |
| `web-search-perplexity` | `web` |
| `invariants` | `agent`, `llm`, `session` |
| `session-persistence-jsonl` | `session`, `session-persistence` |
| `session-persistence-sqlite` | `session`, `session-persistence` |
@@ -115,6 +127,7 @@ graph TD
| `agent-loop` | `agent`, `llm`, `session`, `session-persistence`, `system-prompt`, `tools` |
| `subagent` | `agent`, `llm`, `tools` |
| `tool-bash` | `agent`, `bash`, `llm`, `tools` |
| `tool-web` | `llm`, `system-prompt`, `tools`, `web` |
| `agent-core` | `agent`, `agent-loop`, `invariants`, `llm`, `session`, `system-prompt`, `tool-bash`, `tools` |
| `subagent-acp` | `agent`, `llm`, `subagent` |
| `subagent-inprocess` | `agent`, `llm`, `session`, `subagent` |