topchester-ai 0.2.0 → 0.4.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 +14 -0
- package/dist/cli.mjs +1323 -113
- package/dist/cli.mjs.map +1 -1
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Topchester Agent
|
|
2
2
|
|
|
3
|
+
Website: https://topchester.com
|
|
4
|
+
|
|
3
5
|
## Overview
|
|
4
6
|
|
|
5
7
|
Topchester Agent is a terminal-native TUI coding agent tightly coupled to a committed project knowledge base. The normal workflow is to compile project knowledge first, then let the agent use that knowledge while planning, editing, checking drift, and updating the repository.
|
|
@@ -41,8 +43,20 @@ topchester kb init
|
|
|
41
43
|
topchester kb compile
|
|
42
44
|
topchester kb status
|
|
43
45
|
topchester kb reset
|
|
46
|
+
|
|
47
|
+
topchester
|
|
48
|
+
topchester --resume latest
|
|
49
|
+
topchester --resume <session-id>
|
|
44
50
|
```
|
|
45
51
|
|
|
52
|
+
## Sessions
|
|
53
|
+
|
|
54
|
+
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.
|
|
55
|
+
|
|
56
|
+
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.
|
|
57
|
+
|
|
58
|
+
`.agents/topchester/sessions/` is local session data and should not be committed.
|
|
59
|
+
|
|
46
60
|
## Configuration
|
|
47
61
|
|
|
48
62
|
Model settings are loaded from YAML config files and merged in this order:
|