| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-06-02 | 1.9 kB | |
| v0.6.1 source code.tar.gz | 2026-06-02 | 103.8 MB | |
| v0.6.1 source code.zip | 2026-06-02 | 104.4 MB | |
| Totals: 3 Items | 208.2 MB | 0 | |
Changed
- Corp-ship combat now preempts normal task work by waking active TaskAgents into a combat goal or starting an idle ship task through the normal task path, while preserving the existing combat prompt and doctrine injection flow.
- BYOA harnesses can now customize active combat wake behavior with an
@app.on_combat_wakehook.
Fixed
start_tasknow uses Pipecat 1.3'swatch_workers(...)API and disables duplicate auto-watch registration when adding local TaskAgents, unblocking player/corp task startup on the released package.TaskAgent._inject_steeringnow injects steer text as a single<event name="task.steered">user message with a short priority line followed by the raw steer text inline. Same event-xml shape astask.progress/task.cancelledthe agent already reads — without it, the steer was just another peer instruction to the original task description (which is itself a plain user message). Orchestrator side drops its now-redundant"Steering instruction: "text prefix.start_taskandsteer_tasknow pre-flight the target's finishing state. If the in-process TaskAgent has already calledfinished(or been cancelled), the steer would race the terminal turn and silently drop.start_taskhandles this transparently: the public entrypoint waits up toTASK_STEER_CLOSING_WAIT_SECONDS(default 5s) for the slot to free, then retries the start cleanly — the LLM never sees the intermediate state. Explicitsteer_taskreturnserror: "task_closing"for the LLM to chainstart_taskitself. Personal and corp in-process ships symmetric; BYOA skips the check.- Voice agent prompt: removed the contradictory "do NOT call start_task if all slots are occupied" line; added a short note that for steered instructions the agent should read the
task.completedmessage and mention any unfulfilled intent to the commander.