mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 22:03:45 +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
54 lines
1.6 KiB
TypeScript
54 lines
1.6 KiB
TypeScript
/**
|
|
* Custom System Prompt
|
|
*
|
|
* Shows how to replace or modify the default system prompt.
|
|
*/
|
|
|
|
import { createAgentSession, DefaultResourceLoader, SessionManager } from "@mariozechner/pi-coding-agent";
|
|
|
|
// Option 1: Replace prompt entirely
|
|
const loader1 = new DefaultResourceLoader({
|
|
systemPromptOverride: () => `You are a helpful assistant that speaks like a pirate.
|
|
Always end responses with "Arrr!"`,
|
|
appendSystemPromptOverride: () => [],
|
|
});
|
|
await loader1.reload();
|
|
|
|
const { session: session1 } = await createAgentSession({
|
|
resourceLoader: loader1,
|
|
sessionManager: SessionManager.inMemory(),
|
|
});
|
|
|
|
session1.subscribe((event) => {
|
|
if (event.type === "message_update" && event.assistantMessageEvent.type === "text_delta") {
|
|
process.stdout.write(event.assistantMessageEvent.delta);
|
|
}
|
|
});
|
|
|
|
console.log("=== Replace prompt ===");
|
|
await session1.prompt("What is 2 + 2?");
|
|
console.log("\n");
|
|
|
|
// Option 2: Append instructions to the default prompt
|
|
const loader2 = new DefaultResourceLoader({
|
|
appendSystemPromptOverride: (base) => [
|
|
...base,
|
|
"## Additional Instructions\n- Always be concise\n- Use bullet points when listing things",
|
|
],
|
|
});
|
|
await loader2.reload();
|
|
|
|
const { session: session2 } = await createAgentSession({
|
|
resourceLoader: loader2,
|
|
sessionManager: SessionManager.inMemory(),
|
|
});
|
|
|
|
session2.subscribe((event) => {
|
|
if (event.type === "message_update" && event.assistantMessageEvent.type === "text_delta") {
|
|
process.stdout.write(event.assistantMessageEvent.delta);
|
|
}
|
|
});
|
|
|
|
console.log("=== Modify prompt ===");
|
|
await session2.prompt("List 3 benefits of TypeScript.");
|
|
console.log();
|