repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | /** |
| #2 | * Skills Loader |
| #3 | * |
| #4 | * Discovers and loads SKILL.md files from ~/.automaton/skills/ |
| #5 | * Each skill is a directory containing a SKILL.md file with |
| #6 | * YAML frontmatter + Markdown instructions. |
| #7 | */ |
| #8 | import type { Skill, AutomatonDatabase } from "../types.js"; |
| #9 | /** |
| #10 | * Scan the skills directory and load all valid SKILL.md files. |
| #11 | * Returns loaded skills and syncs them to the database. |
| #12 | */ |
| #13 | export declare function loadSkills(skillsDir: string, db: AutomatonDatabase): Skill[]; |
| #14 | /** |
| #15 | * Get the active skill instructions to inject into the system prompt. |
| #16 | * Only returns instructions from auto-activate skills that are enabled. |
| #17 | */ |
| #18 | export declare function getActiveSkillInstructions(skills: Skill[]): string; |
| #19 | //# sourceMappingURL=loader.d.ts.map |