@markjaquith/agency 2.43.0 → 2.43.1
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
CHANGED
|
@@ -95,6 +95,8 @@ orchestration, loads Agency's hidden instructions in addition to any user-owned
|
|
|
95
95
|
root `AGENTS.md`, advertises the complete workbase as one portable reference,
|
|
96
96
|
and replaces the built-in Plan agent with `agency-plan`. That planning agent can
|
|
97
97
|
update `TASK.md`, `PHASE.md`, and `EPIC.md` while other edits remain disabled.
|
|
98
|
+
When the subagent launches work in another agent, it verifies that the runner
|
|
99
|
+
started and returns without waiting for the task to finish.
|
|
98
100
|
OpenCode discovers the config from task and epic launch directories. Agents
|
|
99
101
|
receive whole-workbase visibility from that reference. Bash and Agency operations
|
|
100
102
|
must still follow the write authority reported by `agency context`.
|
package/package.json
CHANGED
|
@@ -172,6 +172,12 @@ describe("IntegrationService", () => {
|
|
|
172
172
|
expect(config.agent.agency.permission).toBeUndefined()
|
|
173
173
|
expect(config.agent.agency.hidden).toBeUndefined()
|
|
174
174
|
expect(config.agent.agency.steps).toBeUndefined()
|
|
175
|
+
expect(config.agent.agency.prompt).toContain(
|
|
176
|
+
"verify that the runner started successfully",
|
|
177
|
+
)
|
|
178
|
+
expect(config.agent.agency.prompt).toContain(
|
|
179
|
+
"return without waiting for the task to finish",
|
|
180
|
+
)
|
|
175
181
|
expect(config.references).toEqual({
|
|
176
182
|
workbase: {
|
|
177
183
|
path: "..",
|
|
@@ -21,7 +21,7 @@ const body = () =>
|
|
|
21
21
|
"Handles Agency workbase orchestration and workflow operations with the Agency CLI",
|
|
22
22
|
mode: "subagent",
|
|
23
23
|
prompt:
|
|
24
|
-
"You are the Agency workflow specialist. Use the Agency CLI to handle delegated workbase orchestration and workflow operations. Always start with `agency context . --json`, follow the managed Agency instructions and reported authority, use Agency commands for durable mutations, and report the resulting state concisely.",
|
|
24
|
+
"You are the Agency workflow specialist. Use the Agency CLI to handle delegated workbase orchestration and workflow operations. Always start with `agency context . --json`, follow the managed Agency instructions and reported authority, use Agency commands for durable mutations, and report the resulting state concisely. When delegated to start or kick off work in another agent, launch it, verify that the runner started successfully, and return without waiting for the task to finish.",
|
|
25
25
|
},
|
|
26
26
|
plan: {
|
|
27
27
|
disable: true,
|