@wrongstack/cli 0.275.1 → 0.276.2
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 -11
- package/data/providers.json +8 -0
- package/dist/index.js +2049 -758
- package/dist/index.js.map +1 -1
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -71,22 +71,23 @@ wstack plugin remove @wrongstack/telegram # remove from config.plugins
|
|
|
71
71
|
~/.wrongstack/projects/<hash>/ per-project state
|
|
72
72
|
memory.md project memory (auto-gitignored)
|
|
73
73
|
sessions/ per-session artifacts
|
|
74
|
-
<
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
74
|
+
<date>/
|
|
75
|
+
sess_<ULID>.jsonl append-only event log (messages, tool calls, task_* events)
|
|
76
|
+
sess_<ULID>.summary.json fast-path manifest read by /sessions
|
|
77
|
+
sess_<ULID>.todos.json ctx.todos checkpoint (atomic-written on every mutation)
|
|
78
|
+
sess_<ULID>.plan.json /plan strategic roadmap (atomic-written on every mutation)
|
|
79
|
+
sess_<ULID>/ multi-agent (director mode) fleet workspace
|
|
80
|
+
fleet.json director manifest (debounced ~2s; final on shutdown)
|
|
81
|
+
director-state.json live task graph: pending/running/completed + spawn roster
|
|
82
|
+
shared/ cross-subagent scratchpad (markdown findings)
|
|
83
|
+
subagents/<runId>/<subagentId>.jsonl per-subagent transcripts
|
|
84
|
+
attachments/ spooled images/files for the session
|
|
84
85
|
trust.json per-project tool/permission trust
|
|
85
86
|
.wrongstack/AGENTS.md committable project memory
|
|
86
87
|
.wrongstack/skills/ committable project skills
|
|
87
88
|
```
|
|
88
89
|
|
|
89
|
-
**Resume semantics.** `wstack --resume <id>` replays the messages JSONL into the agent context, reloads
|
|
90
|
+
**Resume semantics.** `wstack --resume <id>` replays the messages JSONL into the agent context, reloads the session-scoped todos sidecar if present, and surfaces a banner summarizing any prior plan items and unfinished fleet tasks. Per-subagent transcripts under `subagents/` survive crashes — combine with the `director-state.json` checkpoint to inspect what each worker was doing when the run was interrupted.
|
|
90
91
|
|
|
91
92
|
API keys are encrypted at rest with AES-256-GCM and the key file at `~/.wrongstack/.key`. The vault auto-bootstraps on first run; the key never leaves the machine.
|
|
92
93
|
|
package/data/providers.json
CHANGED
|
@@ -251,5 +251,13 @@
|
|
|
251
251
|
"cost": { "input": 0.3, "output": 0.5 }
|
|
252
252
|
}
|
|
253
253
|
}
|
|
254
|
+
},
|
|
255
|
+
"omniroute": {
|
|
256
|
+
"id": "omniroute",
|
|
257
|
+
"name": "OmniRoute",
|
|
258
|
+
"npm": "@ai-sdk/openai-compatible",
|
|
259
|
+
"api": "http://localhost:20128/v1",
|
|
260
|
+
"doc": "https://github.com/WrongStack/WrongStack",
|
|
261
|
+
"models": {}
|
|
254
262
|
}
|
|
255
263
|
}
|