@astrosheep/keiyaku 0.1.84 → 0.1.86
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 +11 -3
- package/build/.tsbuildinfo +1 -1
- package/build/cli/index.js +120 -60
- package/build/config/architect-hints.js +4 -4
- package/build/generated/version.js +1 -1
- package/build/responses/responses.js +1 -1
- package/package.json +1 -1
- package/skills/keiyaku/SKILL.md +16 -2
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ bind → round open → [summon | amend | delivery work] → delivery commits
|
|
|
33
33
|
|
|
34
34
|
## Tools
|
|
35
35
|
|
|
36
|
-
**`summon`** — Calls in an agent to do scoped work. If a round is open, the round scope is injected. Add `--incognito` for a one-off run with no response history.
|
|
36
|
+
**`summon <name> [prompt|-]`** — Calls in an agent to do scoped work. If a round is open, the round scope is injected. Add `--incognito` for a one-off run with no response history.
|
|
37
37
|
|
|
38
38
|
```
|
|
39
39
|
Implement the retry tests. Report touched files and verification.
|
|
@@ -41,7 +41,15 @@ Implement the retry tests. Report touched files and verification.
|
|
|
41
41
|
|
|
42
42
|
---
|
|
43
43
|
|
|
44
|
-
**`
|
|
44
|
+
**`resume <response-path> [prompt|-]`** — Continues a prior summon session from a response artifact.
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
keiyaku resume .keiyaku/response/previous.md "Continue from here"
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
**`zako list` / `zako show <name>`** — Inspect available helpers before choosing `keiyaku summon NAME`.
|
|
45
53
|
|
|
46
54
|
```bash
|
|
47
55
|
keiyaku zako list
|
|
@@ -164,7 +172,7 @@ Per-agent runtime settings live in `.keiyaku/settings.json` and use `provider` /
|
|
|
164
172
|
Claude defaults:
|
|
165
173
|
- `settingSources: ["project"]`
|
|
166
174
|
- `permissionMode: "bypassPermissions"`
|
|
167
|
-
- `
|
|
175
|
+
- `keiyaku resume RESPONSE_PATH` resumes via persisted provider session metadata
|
|
168
176
|
|
|
169
177
|
Codex SDK notes:
|
|
170
178
|
- `config` is passed through to Codex. Use `developer_instructions` for adapter-level instructions.
|