mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 14:03:49 +00:00
- pi.sendMessage(msg, options?) now accepts { triggerTurn?, deliverAs? }
- deliverAs: 'steer' (default) or 'followUp' controls delivery timing
- Update all mode handlers to pass options through
- Update file-trigger example to use new API
- Update CHANGELOG
41 lines
1,016 B
TypeScript
41 lines
1,016 B
TypeScript
/**
|
|
* File Trigger Hook
|
|
*
|
|
* Watches a trigger file and injects its contents into the conversation.
|
|
* Useful for external systems to send messages to the agent.
|
|
*
|
|
* Usage:
|
|
* echo "Run the tests" > /tmp/agent-trigger.txt
|
|
*/
|
|
|
|
import * as fs from "node:fs";
|
|
import type { HookAPI } from "@mariozechner/pi-coding-agent";
|
|
|
|
export default function (pi: HookAPI) {
|
|
pi.on("session_start", async (_event, ctx) => {
|
|
const triggerFile = "/tmp/agent-trigger.txt";
|
|
|
|
fs.watch(triggerFile, () => {
|
|
try {
|
|
const content = fs.readFileSync(triggerFile, "utf-8").trim();
|
|
if (content) {
|
|
pi.sendMessage(
|
|
{
|
|
customType: "file-trigger",
|
|
content: `External trigger: ${content}`,
|
|
display: true,
|
|
},
|
|
{ triggerTurn: true }, // triggerTurn - get LLM to respond
|
|
);
|
|
fs.writeFileSync(triggerFile, ""); // Clear after reading
|
|
}
|
|
} catch {
|
|
// File might not exist yet
|
|
}
|
|
});
|
|
|
|
if (ctx.hasUI) {
|
|
ctx.ui.notify(`Watching ${triggerFile}`, "info");
|
|
}
|
|
});
|
|
}
|