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 +13 -16
- package/dist/bin.mjs +1 -1
- package/dist/{cli-Bh7BCFNO.mjs → cli-Cz5puJBe.mjs} +847 -385
- package/dist/cli-Cz5puJBe.mjs.map +1 -0
- package/dist/cli.mjs +1 -1
- package/package.json +3 -2
- package/skills/topchester-config/SKILL.md +19 -18
- package/dist/cli-Bh7BCFNO.mjs.map +0 -1
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.
|
|
120
|
+
1. `topchester.jsonc`
|
|
121
121
|
2. `~/.config/topchester/config.jsonc`
|
|
122
|
-
3. `
|
|
123
|
-
4.
|
|
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
|
-
|
|
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
|
-
- [
|
|
170
|
-
- [
|
|
171
|
-
- [
|
|
172
|
-
- [
|
|
173
|
-
- [
|
|
174
|
-
- [
|
|
175
|
-
- [
|
|
176
|
-
- [
|
|
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