mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 21:03:19 +00:00
- Add setEditorText() and getEditorText() to HookUIContext for prompt generator pattern - custom() now accepts async factories for fire-and-forget work - Add CancellableLoader component to tui package - Add BorderedLoader component for hooks with cancel UI - Export HookAPI, HookContext, HookFactory from main package - Update all examples to import from packages instead of relative paths - Update hooks.md and custom-tools.md documentation fixes #350
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
/**
|
|
* Skills Configuration
|
|
*
|
|
* Skills provide specialized instructions loaded into the system prompt.
|
|
* Discover, filter, merge, or replace them.
|
|
*/
|
|
|
|
import { createAgentSession, discoverSkills, SessionManager, type Skill } from "@mariozechner/pi-coding-agent";
|
|
|
|
// Discover all skills from cwd/.pi/skills, ~/.pi/agent/skills, etc.
|
|
const allSkills = discoverSkills();
|
|
console.log(
|
|
"Discovered skills:",
|
|
allSkills.map((s) => s.name),
|
|
);
|
|
|
|
// Filter to specific skills
|
|
const filteredSkills = allSkills.filter((s) => s.name.includes("browser") || s.name.includes("search"));
|
|
|
|
// Or define custom skills inline
|
|
const customSkill: Skill = {
|
|
name: "my-skill",
|
|
description: "Custom project instructions",
|
|
filePath: "/virtual/SKILL.md",
|
|
baseDir: "/virtual",
|
|
source: "custom",
|
|
};
|
|
|
|
// Use filtered + custom skills
|
|
await createAgentSession({
|
|
skills: [...filteredSkills, customSkill],
|
|
sessionManager: SessionManager.inMemory(),
|
|
});
|
|
|
|
console.log(`Session created with ${filteredSkills.length + 1} skills`);
|
|
|
|
// To disable all skills:
|
|
// skills: []
|
|
|
|
// To use discovery with filtering via settings:
|
|
// discoverSkills(process.cwd(), undefined, {
|
|
// ignoredSkills: ["browser-tools"], // glob patterns to exclude
|
|
// includeSkills: ["brave-*"], // glob patterns to include (empty = all)
|
|
// })
|