mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 21:03:19 +00:00
- Add ResourceLoader interface and DefaultResourceLoader implementation - Add PackageManager for npm/git extension sources with install/remove/update - Add session.reload() and session.bindExtensions() APIs - Add /reload command in interactive mode - Add CLI flags: --skill, --theme, --prompt-template, --no-themes, --no-prompt-templates - Add pi install/remove/update commands for extension management - Refactor settings.json to use arrays for skills, prompts, themes - Remove legacy SkillsSettings source flags and filters - Update SDK examples and documentation for ResourceLoader pattern - Add theme registration and loadThemeFromPath for dynamic themes - Add getShellEnv to include bin dir in PATH for bash commands
88 lines
2.5 KiB
TypeScript
88 lines
2.5 KiB
TypeScript
/**
|
|
* Extensions Configuration
|
|
*
|
|
* Extensions intercept agent events and can register custom tools.
|
|
* They provide a unified system for extensions, custom tools, commands, and more.
|
|
*
|
|
* By default, extension files are discovered from:
|
|
* - ~/.pi/agent/extensions/
|
|
* - <cwd>/.pi/extensions/
|
|
* - Paths specified in settings.json "extensions" array
|
|
*
|
|
* An extension is a TypeScript file that exports a default function:
|
|
* export default function (pi: ExtensionAPI) { ... }
|
|
*/
|
|
|
|
import { createAgentSession, DefaultResourceLoader, SessionManager } from "@mariozechner/pi-coding-agent";
|
|
|
|
// Extensions are discovered automatically from standard locations.
|
|
// You can also add paths via settings.json or DefaultResourceLoader options.
|
|
|
|
const resourceLoader = new DefaultResourceLoader({
|
|
additionalExtensionPaths: ["./my-logging-extension.ts", "./my-safety-extension.ts"],
|
|
extensionFactories: [
|
|
(pi) => {
|
|
pi.on("agent_start", () => {
|
|
console.log("[Inline Extension] Agent starting");
|
|
});
|
|
},
|
|
],
|
|
});
|
|
await resourceLoader.reload();
|
|
|
|
const { session } = await createAgentSession({
|
|
resourceLoader,
|
|
sessionManager: SessionManager.inMemory(),
|
|
});
|
|
|
|
session.subscribe((event) => {
|
|
if (event.type === "message_update" && event.assistantMessageEvent.type === "text_delta") {
|
|
process.stdout.write(event.assistantMessageEvent.delta);
|
|
}
|
|
});
|
|
|
|
await session.prompt("List files in the current directory.");
|
|
console.log();
|
|
|
|
// Example extension file (./my-logging-extension.ts):
|
|
/*
|
|
import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
|
|
|
|
export default function (pi: ExtensionAPI) {
|
|
pi.on("agent_start", async () => {
|
|
console.log("[Extension] Agent starting");
|
|
});
|
|
|
|
pi.on("tool_call", async (event) => {
|
|
console.log(\`[Extension] Tool: \${event.toolName}\`);
|
|
// Return { block: true, reason: "..." } to block execution
|
|
return undefined;
|
|
});
|
|
|
|
pi.on("agent_end", async (event) => {
|
|
console.log(\`[Extension] Done, \${event.messages.length} messages\`);
|
|
});
|
|
|
|
// Register a custom tool
|
|
pi.registerTool({
|
|
name: "my_tool",
|
|
label: "My Tool",
|
|
description: "Does something useful",
|
|
parameters: Type.Object({
|
|
input: Type.String(),
|
|
}),
|
|
execute: async (_toolCallId, params, _onUpdate, _ctx, _signal) => ({
|
|
content: [{ type: "text", text: \`Processed: \${params.input}\` }],
|
|
details: {},
|
|
}),
|
|
});
|
|
|
|
// Register a command
|
|
pi.registerCommand("mycommand", {
|
|
description: "Do something",
|
|
handler: async (args, ctx) => {
|
|
ctx.ui.notify(\`Command executed with: \${args}\`);
|
|
},
|
|
});
|
|
}
|
|
*/
|