topchester-ai 0.42.0 → 0.44.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 CHANGED
@@ -117,16 +117,12 @@ Do not commit API keys. Put keys in environment variables, a user config file, o
117
117
 
118
118
  Topchester reads config in this order, with later entries overriding earlier ones:
119
119
 
120
- 1. `~/.config/topchester/config.yaml`
120
+ 1. `topchester.jsonc`
121
121
  2. `~/.config/topchester/config.jsonc`
122
- 3. `topchester.yaml`
123
- 4. `topchester.jsonc`
124
- 5. `.topchester/config.local.yaml`
125
- 6. `.topchester/config.local.jsonc`
126
- 7. `TOPCHESTER_CONFIG`
127
- 8. `--config <path>`
122
+ 3. `TOPCHESTER_CONFIG`
123
+ 4. `--config <path>`
128
124
 
129
- Prefer `topchester.jsonc` for new project config. YAML paths are kept for compatibility.
125
+ On first startup, Topchester creates `~/.config/topchester/config.jsonc` with a commented minimal example. Uncomment it to set your personal default model, or keep shared project policy in `topchester.jsonc`.
130
126
 
131
127
  ## How The Knowledge Base Works
132
128
 
@@ -166,11 +162,12 @@ The package name is `topchester-ai`; the installed command is `topchester`.
166
162
  ## Read More
167
163
 
168
164
  - [Onboarding](onboarding.md)
169
- - [CLI Commands](docs/cli.md)
170
- - [TUI Guide](docs/tui.md)
171
- - [Skills](docs/skills.md)
172
- - [Configuration](docs/config.md)
173
- - [Model Configuration](docs/MODEL_CONFIG.md)
174
- - [Knowledge System](docs/KNOWLEDGE.md)
175
- - [Architecture](docs/ARCHITECTURE.md)
176
- - [Sessions](docs/SESSIONS.md)
165
+ - [Docs](docs/README.md)
166
+ - [Quickstart](docs/getting-started/quickstart.md)
167
+ - [CLI Commands](docs/reference/cli.md)
168
+ - [TUI](docs/features/tui.md)
169
+ - [Skills](docs/features/skills.md)
170
+ - [Configuration](docs/configuration/config-files.md)
171
+ - [Models and providers](docs/configuration/models-and-providers.md)
172
+ - [Knowledge base](docs/features/knowledge-base.md)
173
+ - [Sessions](docs/features/sessions.md)
package/dist/bin.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { t as runTopchesterCli } from "./cli-Bh7BCFNO.mjs";
2
+ import { t as runTopchesterCli } from "./cli-Cz5puJBe.mjs";
3
3
  //#region src/bin.ts
4
4
  await runTopchesterCli();
5
5
  //#endregion