topchester-ai 0.1.0 → 0.3.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 +12 -0
- package/dist/cli.mjs +1230 -109
- package/dist/cli.mjs.map +1 -1
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -41,8 +41,20 @@ topchester kb init
|
|
|
41
41
|
topchester kb compile
|
|
42
42
|
topchester kb status
|
|
43
43
|
topchester kb reset
|
|
44
|
+
|
|
45
|
+
topchester
|
|
46
|
+
topchester --resume latest
|
|
47
|
+
topchester --resume <session-id>
|
|
44
48
|
```
|
|
45
49
|
|
|
50
|
+
## Sessions
|
|
51
|
+
|
|
52
|
+
Running `topchester` starts a fresh project-local session by default. Session data is stored under `.agents/topchester/sessions/<session-id>/`, including `metadata.json` and an append-only `events.jsonl` log.
|
|
53
|
+
|
|
54
|
+
Use `topchester --resume latest` to continue the newest session, or `topchester --resume <session-id>` to continue a specific session. Resume restores the visible history and appends new events to the same log.
|
|
55
|
+
|
|
56
|
+
`.agents/topchester/sessions/` is local session data and should not be committed.
|
|
57
|
+
|
|
46
58
|
## Configuration
|
|
47
59
|
|
|
48
60
|
Model settings are loaded from YAML config files and merged in this order:
|