@astrosheep/keiyaku 0.1.86 → 0.1.87
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 +3 -1
- package/build/.tsbuildinfo +1 -1
- package/build/agents/claude-agent-sdk-exec.js +104 -0
- package/build/agents/codex-cli-exec.js +3 -1
- package/build/agents/codex-sdk-exec.js +75 -0
- package/build/agents/gemini-cli-core-exec.js +1 -1
- package/build/agents/index.js +3 -2
- package/build/agents/progress-reporter.js +137 -0
- package/build/agents/round-runner.js +1 -0
- package/build/cli/index.js +56 -16
- package/build/config/architect-hints.js +15 -12
- package/build/config/env-keys.js +2 -0
- package/build/config/schema.js +3 -0
- package/build/generated/version.js +1 -1
- package/build/git/core.js +0 -1
- package/build/responses/responses.js +21 -36
- package/build/tools/schema.js +1 -0
- package/build/tools/status/read.js +10 -7
- package/build/tools/summon/run.js +1 -0
- package/package.json +2 -2
- package/skills/keiyaku/SKILL.md +4 -3
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@ Open a git repo. Run `keiyaku guide` and `keiyaku zako list`. Then use `keiyaku
|
|
|
26
26
|
## Flow
|
|
27
27
|
|
|
28
28
|
```
|
|
29
|
-
bind → round open → [summon | amend | delivery work] → delivery commits → round close → [round open | amend | petition]
|
|
29
|
+
bind → round open → [summon/ask | amend | delivery work] → delivery commits → round close → [round open | amend | petition]
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
---
|
|
@@ -35,6 +35,8 @@ bind → round open → [summon | amend | delivery work] → delivery commits
|
|
|
35
35
|
|
|
36
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
|
+
`ask <name> [prompt|-]` is the short alias for the same behavior.
|
|
39
|
+
|
|
38
40
|
```
|
|
39
41
|
Implement the retry tests. Report touched files and verification.
|
|
40
42
|
```
|