topchester-ai 0.7.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -1
- package/dist/cli.mjs +4816 -4214
- package/dist/cli.mjs.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ The current `topchester kb compile` command handles L1 file knowledge:
|
|
|
13
13
|
- Requires `topchester kb init` to create the knowledge folders first.
|
|
14
14
|
- Reads workspace `.gitignore` files, lists in-scope project files, and skips generated/cache folders such as `.git/`, `node_modules/`, `dist/`, `coverage/`, `topchester-kb/`, `.agents/topchester/`, and `.agents/topchester-kb-cache/`.
|
|
15
15
|
- Queues L1 work at `.agents/topchester-kb-cache/l1-queue.json`.
|
|
16
|
-
- Processes queued files with the configured `kb.summarize` model, or `
|
|
16
|
+
- Processes queued files with the configured `kb.summarize` model, or the `default` model when `kb.summarize` is not configured.
|
|
17
17
|
- Writes the manifest at `topchester-kb/manifest.json`.
|
|
18
18
|
- Writes current L1 file entries under `topchester-kb/l1-files/`.
|
|
19
19
|
- Exits successfully only when every in-scope file has a current L1 entry.
|
|
@@ -69,11 +69,19 @@ Model settings are loaded from YAML config files and merged in this order:
|
|
|
69
69
|
|
|
70
70
|
Example configs live in `config/example.yaml` and `config/gemini.yaml`. OpenRouter configs expect `OPENROUTER_API_KEY` in the environment; do not commit API keys or other secrets.
|
|
71
71
|
|
|
72
|
+
The smallest OpenRouter config uses one model for every Topchester purpose:
|
|
73
|
+
|
|
74
|
+
```yaml
|
|
75
|
+
models:
|
|
76
|
+
default: openrouter/google/gemini-3.1-flash-lite
|
|
77
|
+
```
|
|
78
|
+
|
|
72
79
|
## Docs
|
|
73
80
|
|
|
74
81
|
- [Architecture](docs/ARCHITECTURE.md)
|
|
75
82
|
- [Knowledge System](docs/KNOWLEDGE.md)
|
|
76
83
|
- [CLI Commands](docs/cli.md)
|
|
84
|
+
- [Configuration](docs/config.md)
|
|
77
85
|
- [TUI Guide](docs/tui.md)
|
|
78
86
|
- [Model Configuration](docs/MODEL_CONFIG.md)
|
|
79
87
|
- [Sessions](docs/SESSIONS.md)
|