17 lines
523 B
TypeScript
17 lines
523 B
TypeScript
/**
|
|
* Displays a status widget showing the system prompt length.
|
|
*
|
|
* Demonstrates ctx.getSystemPrompt() for accessing the effective system prompt.
|
|
*/
|
|
import type { ExtensionAPI } from "@jaeswift/jae-coding-agent";
|
|
|
|
export default function (pi: ExtensionAPI) {
|
|
pi.on("agent_start", (_event, ctx) => {
|
|
const prompt = ctx.getSystemPrompt();
|
|
ctx.ui.setStatus("system-prompt", `System: ${prompt.length} chars`);
|
|
});
|
|
|
|
pi.on("session_shutdown", (_event, ctx) => {
|
|
ctx.ui.setStatus("system-prompt", undefined);
|
|
});
|
|
}
|