Files
wehub-resource-sync 555e282cc4
pi-agent-plugin checks / lint (push) Has been cancelled
pi-agent-plugin checks / test (20) (push) Has been cancelled
pi-agent-plugin checks / test (22) (push) Has been cancelled
pi-agent-plugin checks / build (push) Has been cancelled
TypeScript SDK CI / check_changes (push) Has been cancelled
TypeScript SDK CI / changelog_check (push) Has been cancelled
ci / changelog_check (push) Has been cancelled
ci / check_changes (push) Has been cancelled
ci / build_mem0 (3.10) (push) Has been cancelled
ci / build_mem0 (3.11) (push) Has been cancelled
ci / build_mem0 (3.12) (push) Has been cancelled
CLI Node CI / lint (push) Has been cancelled
CLI Node CI / test (20) (push) Has been cancelled
CLI Node CI / test (22) (push) Has been cancelled
CLI Node CI / build (push) Has been cancelled
CLI Python CI / lint (push) Has been cancelled
CLI Python CI / test (3.10) (push) Has been cancelled
CLI Python CI / test (3.11) (push) Has been cancelled
CLI Python CI / test (3.12) (push) Has been cancelled
CLI Python CI / build (push) Has been cancelled
openclaw checks / lint (push) Has been cancelled
openclaw checks / test (20) (push) Has been cancelled
openclaw checks / test (22) (push) Has been cancelled
openclaw checks / build (push) Has been cancelled
opencode-plugin checks / build (push) Has been cancelled
TypeScript SDK CI / build_ts_sdk (20) (push) Has been cancelled
TypeScript SDK CI / build_ts_sdk (22) (push) Has been cancelled
TypeScript SDK CI / integration_ts_sdk (20) (push) Has been cancelled
TypeScript SDK CI / integration_ts_sdk (22) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:03:45 +08:00

694 lines
25 KiB
TypeScript

/**
* Skill Loader — reads skill markdown files, merges domain overlays,
* injects user config, and produces the final injectable prompt string.
*/
import * as path from "node:path";
import { fileURLToPath, pathToFileURL } from "node:url";
import type { SkillsConfig, CategoryConfig } from "./types.ts";
import { readText, exists } from "./fs-safe.ts";
// ============================================================================
// Defaults
// ============================================================================
const DEFAULT_CATEGORIES: Record<string, CategoryConfig> = {
configuration: { importance: 0.95, ttl: null },
rule: { importance: 0.9, ttl: null },
identity: { importance: 0.95, ttl: null, immutable: true },
preference: { importance: 0.85, ttl: null },
decision: { importance: 0.8, ttl: null },
technical: { importance: 0.8, ttl: null },
relationship: { importance: 0.75, ttl: null },
project: { importance: 0.75, ttl: "90d" },
operational: { importance: 0.6, ttl: "7d" },
};
const DEFAULT_CREDENTIAL_PATTERNS = [
"sk-",
"m0-",
"ghp_",
"AKIA",
"ak_",
"Bearer ",
"bot\\d+:AA",
"password=",
"token=",
"secret=",
];
// ============================================================================
// Skill File Reader
// ============================================================================
interface SkillFrontmatter {
name: string;
description?: string;
"user-invocable"?: boolean;
metadata?: string;
applies_to?: string;
}
interface ParsedSkill {
frontmatter: SkillFrontmatter;
body: string;
}
function parseSkillFile(content: string): ParsedSkill {
const fmMatch = content.match(/^---\n([\s\S]*?)\n---\n([\s\S]*)$/);
if (!fmMatch) {
return {
frontmatter: { name: "unknown" },
body: content,
};
}
const fmBlock = fmMatch[1];
const body = fmMatch[2].trim();
// Simple YAML-like parsing (no dependency needed)
const fm: Record<string, any> = {};
for (const line of fmBlock.split("\n")) {
const colonIdx = line.indexOf(":");
if (colonIdx === -1) continue;
const key = line.slice(0, colonIdx).trim();
let value: any = line.slice(colonIdx + 1).trim();
if (value === "false") value = false;
else if (value === "true") value = true;
fm[key] = value;
}
return {
frontmatter: fm as SkillFrontmatter,
body,
};
}
/** @internal — exported for testing only */
export function normalizeModuleUrlToPath(moduleUrl: string): string {
const normalizedUrl = moduleUrl.startsWith("file:")
? moduleUrl
: pathToFileURL(moduleUrl).toString();
return fileURLToPath(normalizedUrl);
}
// ============================================================================
// Skill Loader
// ============================================================================
// Resolve skills directory with multiple fallback strategies.
// OpenClaw may load the plugin via jiti or custom loaders that break
// import.meta.url, so we try several paths.
function resolveSkillsDir(): string {
const candidates: string[] = [];
// Strategy 1: import.meta.url (works in native ESM)
try {
const metaDir = path.dirname(normalizeModuleUrlToPath(import.meta.url));
candidates.push(path.join(metaDir, "skills"));
candidates.push(path.join(metaDir, "..", "skills"));
} catch {
/* import.meta.url may not be available */
}
// Strategy 2: __dirname (works in CJS / jiti)
if (typeof __dirname !== "undefined") {
candidates.push(path.join(__dirname, "skills"));
candidates.push(path.join(__dirname, "..", "skills"));
}
// Validate: must contain the expected subdirectory structure
for (const dir of candidates) {
if (exists(path.join(dir, "memory-triage", "SKILL.md"))) {
return dir;
}
}
return candidates[0] ?? "skills"; // Will fail gracefully in readSkillFile
}
const SKILLS_DIR = resolveSkillsDir();
const RESOLVED_SKILLS_DIR = path.resolve(SKILLS_DIR);
/**
* Resolve path segments under SKILLS_DIR and verify the result doesn't escape.
* Returns null if the resolved path is outside the skills directory (path traversal).
* Note: path.resolve follows symlinks lexically; the skills directory is
* package-owned so symlink escape is not a practical concern.
*/
export function safePath(...segments: string[]): string | null {
const resolved = path.resolve(SKILLS_DIR, ...segments);
if (
resolved !== RESOLVED_SKILLS_DIR &&
!resolved.startsWith(RESOLVED_SKILLS_DIR + path.sep)
) {
return null;
}
return resolved;
}
function readSkillFile(skillName: string): string | null {
const filePath = safePath(skillName, "SKILL.md");
if (!filePath) return null;
try {
return readText(filePath);
} catch {
return null;
}
}
/**
* Read a domain overlay, scoped to a specific skill.
* Domain overlays live inside the skill directory: <skill>/domains/<domain>.md
* The `applies_to` frontmatter field is checked for backward compatibility.
*/
function readDomainOverlay(domain: string, targetSkill: string): string | null {
const filePath = safePath(targetSkill, "domains", `${domain}.md`);
if (!filePath) return null;
try {
const content = readText(filePath);
const parsed = parseSkillFile(content);
// Check applies_to for backward compat (skip if targeting a different skill)
const appliesTo = parsed.frontmatter.applies_to;
if (appliesTo && appliesTo !== targetSkill) {
return null;
}
return parsed.body;
} catch {
return null;
}
}
// ============================================================================
// Config Injection — render user-configured knobs into prompt text
// ============================================================================
function renderCategoriesBlock(
categories: Record<string, CategoryConfig>,
): string {
const lines: string[] = [
"\n## Active Category Configuration (overrides defaults above)\n",
];
for (const [name, cat] of Object.entries(categories)) {
const ttlLabel = cat.ttl ? `expires: ${cat.ttl}` : "permanent";
const immLabel = cat.immutable ? ", immutable" : "";
lines.push(
`- **${name.toUpperCase()}** (importance: ${cat.importance} | ${ttlLabel}${immLabel})`,
);
}
return lines.join("\n");
}
function renderTriageKnobs(
config: SkillsConfig,
options: {
includeCredentialPatterns?: boolean;
includeDefaultCredentialPatterns?: boolean;
} = {},
): string {
const lines: string[] = [];
const includeCredentialPatterns = options.includeCredentialPatterns ?? true;
const includeDefaultCredentialPatterns = options.includeDefaultCredentialPatterns ?? true;
if (config.triage?.importanceThreshold !== undefined) {
lines.push(
`- Only store facts with importance >= ${config.triage.importanceThreshold}`,
);
}
const hasCustomCredentialPatterns = config.triage?.credentialPatterns !== undefined;
if (includeCredentialPatterns && (includeDefaultCredentialPatterns || hasCustomCredentialPatterns)) {
const patterns = resolveCredentialPatterns(config);
lines.push(`- Credential patterns to scan: ${patterns.map((p) => `\`${p}\``).join(", ")}`);
}
if (lines.length === 0) return "";
return "\n## Active Configuration Overrides\n\n" + lines.join("\n");
}
const COMPACT_CUSTOM_RULE_CHAR_BUDGET = 280;
const COMPACT_CUSTOM_RULE_PREVIEW_LIMIT = 2;
function formatCategoryConfig(
name: string,
cat: CategoryConfig,
): string {
const ttlLabel = cat.ttl ? `expires: ${cat.ttl}` : "permanent";
const immLabel = cat.immutable ? ", immutable" : "";
return `${name} (importance ${cat.importance}, ${ttlLabel}${immLabel})`;
}
function renderCompactCategories(config: SkillsConfig): string[] {
if (!config.categories || Object.keys(config.categories).length === 0) {
return [];
}
const mergedCategories = resolveCategories(config);
return [
"## Active Category Overrides",
"",
...Object.entries(config.categories).map(([name]) =>
`- ${formatCategoryConfig(name, mergedCategories[name]!)}`,
),
];
}
function renderCompactCustomRules(config: SkillsConfig): string[] {
const includeRules = config.customRules?.include ?? [];
const excludeRules = config.customRules?.exclude ?? [];
if (includeRules.length === 0 && excludeRules.length === 0) {
return [];
}
const formatRuleList = (label: string, rules: string[]) =>
`${label}: ${rules.map((rule) => `"${rule}"`).join("; ")}`;
const lines: string[] = [];
if (includeRules.length > 0) {
lines.push(formatRuleList("Include", includeRules));
}
if (excludeRules.length > 0) {
lines.push(formatRuleList("Exclude", excludeRules));
}
const combined = lines.join(" ");
if (combined.length <= COMPACT_CUSTOM_RULE_CHAR_BUDGET) {
return ["## Active Custom Rules", "", ...lines.map((line) => `- ${line}`)];
}
const preview = [
...includeRules.slice(0, COMPACT_CUSTOM_RULE_PREVIEW_LIMIT).map((rule) => `include "${rule}"`),
...excludeRules.slice(0, COMPACT_CUSTOM_RULE_PREVIEW_LIMIT).map((rule) => `exclude "${rule}"`),
];
return [
"## Active Custom Rules",
"",
`- ${includeRules.length} include rule(s) and ${excludeRules.length} exclude rule(s) are configured.`,
`- Prompt kept compact, full rule text omitted because it exceeded ${COMPACT_CUSTOM_RULE_CHAR_BUDGET} characters.`,
...(preview.length > 0
? [`- Preview: ${preview.join("; ")}`]
: []),
];
}
// ============================================================================
// TTL Helpers
// ============================================================================
/** Convert TTL string like "7d", "90d" to ISO date from today */
export function ttlToExpirationDate(ttl: string | null): string | null {
if (!ttl) return null;
const match = ttl.match(/^(\d+)d$/);
if (!match) return null;
const days = parseInt(match[1], 10);
const date = new Date();
date.setDate(date.getDate() + days);
return date.toISOString().split("T")[0]; // YYYY-MM-DD
}
// ============================================================================
// Public API
// ============================================================================
export interface LoadedSkill {
name: string;
prompt: string;
frontmatter: SkillFrontmatter;
}
/**
* Load a skill by name, merge domain overlays and user config,
* and return the final injectable prompt string.
*/
export function loadSkill(
skillName: string,
config: SkillsConfig = {},
): LoadedSkill | null {
const raw = readSkillFile(skillName);
if (!raw) return null;
const parsed = parseSkillFile(raw);
const parts: string[] = [parsed.body];
// Domain overlays only apply to the skill they target (checked via applies_to)
if (config.domain) {
const overlay = readDomainOverlay(config.domain, skillName);
if (overlay) {
parts.push("\n" + overlay);
}
}
// Inject user-configured categories into triage skill prompt
if (skillName === "memory-triage" && config.categories) {
const mergedCats = resolveCategories(config);
parts.push(renderCategoriesBlock(mergedCats));
}
// Inject triage knobs (importanceThreshold, credentialPatterns)
if (skillName === "memory-triage" || skillName === "memory-dream") {
const knobs = renderTriageKnobs(config);
if (knobs) parts.push(knobs);
}
// Append user custom rules (triage-only — extraction rules don't apply to recall/dream)
if (skillName === "memory-triage" && config.customRules) {
const rulesBlock: string[] = ["\n## User Custom Rules\n"];
if (config.customRules.include?.length) {
rulesBlock.push("Additionally extract:");
for (const rule of config.customRules.include) {
rulesBlock.push(`- ${rule}`);
}
}
if (config.customRules.exclude?.length) {
rulesBlock.push("\nAdditionally skip:");
for (const rule of config.customRules.exclude) {
rulesBlock.push(`- ${rule}`);
}
}
parts.push(rulesBlock.join("\n"));
}
return {
name: skillName,
prompt: parts.join("\n"),
frontmatter: parsed.frontmatter,
};
}
/**
* Build the memory system prompt for injection via prependSystemContext.
*
* Primary path: load the full SKILL.md via loadSkill(), which merges
* domain overlays, category overrides, custom rules, and triage knobs.
* This ensures the config surface (skills.domain, customRules, categories)
* is what the live before_prompt_build path actually sends.
*
* Fallback: if SKILL.md cannot be read (missing file, broken path), use
* a minimal inline protocol so memory still functions.
*/
export function loadTriagePrompt(config: SkillsConfig = {}): string {
// Try to load the full skill with all config-driven overlays
const triage = loadSkill("memory-triage", config);
if (triage) {
// Full SKILL.md loaded with domain overlays, categories, custom rules, knobs merged.
// Wrap in <memory-system> and append the operational instructions that
// are not part of the SKILL.md (tool format, batching, search protocol).
const parts: string[] = [];
parts.push("<memory-system>");
parts.push(
"IMPORTANT: Use `memory_add` tool for ALL user facts. NEVER write user info to workspace files (USER.md, memory/).",
);
parts.push("");
parts.push(triage.prompt);
parts.push("");
parts.push("## Tool Usage");
parts.push("");
parts.push(
"Batch facts by CATEGORY. All facts in one memory_add call must share the same category because category determines retention policy (TTL, immutability). If a turn has facts in different categories, make one call per category.",
);
parts.push("");
parts.push("FORMAT (single category):");
parts.push(
' memory_add(facts: ["User is Alex, backend engineer at Stripe, PST timezone"], category: "identity")',
);
parts.push("FORMAT (mixed categories in one turn, separate calls):");
parts.push(
' memory_add(facts: ["User is Alex, backend engineer at Stripe, PST timezone"], category: "identity")',
);
parts.push(
' memory_add(facts: ["As of 2026-04-01, migrating from Postgres to CockroachDB"], category: "decision")',
);
// Only include search instructions if recall is enabled
if (config.recall?.enabled !== false) {
const strategy = config.recall?.strategy ?? "smart";
parts.push("");
parts.push("## Searching Memory");
parts.push("");
// In manual mode, the agent is fully responsible for all search
if (strategy === "manual") {
parts.push(
"You control all memory search. No automatic recall happens. Use memory_search proactively:",
);
parts.push(
"- At the start of a new conversation, search for user identity and context.",
);
parts.push(
"- When the user references something you do not have context for.",
);
parts.push("- When the conversation topic shifts to a new domain.");
parts.push(
"- Before updating a memory, search to find the existing version.",
);
parts.push("");
} else if (strategy === "always") {
parts.push(
"Automatic recall runs for both long-term and session memory. Use manual searches only when you need more specific context.",
);
parts.push("");
}
parts.push(
"When calling memory_search, ALWAYS rewrite the query. NEVER pass the user's raw message.",
);
parts.push(
"Stored memories are third-person factual statements. Write a query that matches storage language, not conversation language.",
);
parts.push(
"Process: (1) Name your target. (2) Extract signal: proper nouns, technical terms, domain concepts. (3) Bridge to storage language: add terms the stored memory contains (user, decided, prefers, rule, configured, based in). (4) Compose 3-6 keywords.",
);
parts.push(
'WRONG: memory_search("Who was that nutritionist my wife recommended?")',
);
parts.push(
'RIGHT: memory_search("nutritionist wife recommended relationship")',
);
parts.push('WRONG: memory_search("What timezone am I in?")');
parts.push('RIGHT: memory_search("user timezone location based")');
parts.push("");
parts.push(
"ENTITY SCOPING: Memories are scoped by user_id, agent_id, and run_id. You do not need to pass these in most cases. The plugin handles scoping automatically based on the current session.",
);
parts.push(
"- Default behavior: all memory operations use the configured userId and current session. You do not need to pass userId or agentId.",
);
parts.push(
"- Use agentId only when you need to read or write memories for a DIFFERENT agent (e.g., querying what the 'researcher' agent knows). This accesses a separate namespace.",
);
parts.push(
"- Use userId only when explicitly instructed to operate on a different user's memories.",
);
parts.push(
"- Do not pass run_id directly. The plugin manages session scoping through the scope parameter.",
);
parts.push(
"- In multi-agent setups, each agent has isolated memory. The main agent's memories are separate from subagent memories.",
);
parts.push("");
parts.push("SEARCH SCOPE: Choose the right scope for each search:");
parts.push(
'- scope: "long-term" for user context, identity, preferences, decisions (default, most common)',
);
parts.push('- scope: "session" for facts from this conversation only');
parts.push(
'- scope: "all" only when you truly need both scopes combined',
);
parts.push("Using a specific scope avoids unnecessary backend fan-out.");
parts.push("");
parts.push(
"SEARCH FILTERS: When the user's intent implies a time range or category constraint, pass a `filters` object alongside your rewritten query.",
);
parts.push(
'- Time: "last week" -> filters: {"created_at": {"gte": "2026-03-24"}}',
);
parts.push('- Category: "my preferences" -> categories: ["preference"]');
parts.push(
"- Available operators: eq, ne, gt, gte, lt, lte, in, contains. Logical: AND, OR, NOT.",
);
}
parts.push("</memory-system>");
return parts.join("\n");
}
// Fallback: SKILL.md not found. Minimal inline protocol.
const parts: string[] = [];
parts.push("<memory-system>");
parts.push(
"You have persistent long-term memory via mem0. After EVERY response, evaluate the turn for facts worth storing.",
);
parts.push(
"Use `memory_add` tool for ALL user facts. NEVER write user info to workspace files (USER.md, memory/).",
);
parts.push("Most turns produce ZERO memory operations. That is correct.");
parts.push(
"Only store facts a new agent would need days later: identity, preferences, decisions, rules, projects, configs.",
);
parts.push(
"Batch facts by CATEGORY. All facts in one call must share the same category.",
);
parts.push(
'Format: memory_add(facts: ["fact text"], category: "identity")',
);
parts.push(
"NEVER store credentials (sk-, m0-, ghp_, AKIA, Bearer tokens, passwords).",
);
if (config.recall?.enabled !== false) {
parts.push(
"When searching, rewrite queries for retrieval. Do not pass raw user messages.",
);
}
parts.push("</memory-system>");
return parts.join("\n");
}
/**
* Build a compact memory system prompt for skills mode turns.
*
* This keeps the required storage and search protocol, plus short config
* summaries, without inlining the full memory-triage skill body every turn.
* If the skill file cannot be read, delegate to loadTriagePrompt(), which has
* its own minimal inline fallback.
*/
export function loadCompactTriagePrompt(config: SkillsConfig = {}): string {
if (!readSkillFile("memory-triage")) {
return loadTriagePrompt(config);
}
const parts: string[] = [];
parts.push("<memory-system>");
parts.push(
"IMPORTANT: Use `memory_add` tool for ALL user facts. NEVER write user info to workspace files (USER.md, memory/).",
);
parts.push(
"After every response, evaluate whether a new agent would benefit from remembering this days later. Most turns should produce zero memory operations.",
);
parts.push(
"Only store durable, self-contained, third-person facts: identity, preferences with rationale, standing rules, decisions, projects, configurations, technical context, and relationships.",
);
parts.push(
"Never store credentials, tokens, webhook secrets, or raw tool output. If a secret was configured, store only that the credential was configured.",
);
parts.push(
"When a recalled fact materially changes, search for the existing memory and update it in place. Skip cosmetic rewording.",
);
parts.push("");
parts.push("## Tool Usage");
parts.push("");
parts.push(
"Batch facts by CATEGORY. All facts in one memory_add call must share the same category because category determines retention policy (TTL, immutability). If a turn has facts in different categories, make one call per category.",
);
parts.push(
'Format: memory_add(facts: ["User is Alex, backend engineer at Stripe, PST timezone"], category: "identity")',
);
parts.push(
'Mixed categories: memory_add(..., category: "identity") and memory_add(..., category: "decision") in separate calls.',
);
parts.push(
"Categories: identity, configuration, rule, preference, decision, technical, relationship, project.",
);
const categoryLines = renderCompactCategories(config);
if (categoryLines.length > 0) {
parts.push("");
parts.push(...categoryLines);
}
const knobLines = renderTriageKnobs(config, {
includeDefaultCredentialPatterns: false,
})
.split("\n")
.filter(Boolean);
if (knobLines.length > 0) {
parts.push("");
parts.push(...knobLines);
}
const customRuleLines = renderCompactCustomRules(config);
if (customRuleLines.length > 0) {
parts.push("");
parts.push(...customRuleLines);
}
if (config.recall?.enabled !== false) {
const strategy = config.recall?.strategy ?? "smart";
parts.push("");
parts.push("## Searching Memory");
parts.push("");
if (strategy === "manual") {
parts.push(
"No automatic recall happens in manual mode. Use memory_search proactively at conversation start, when context is missing, when topics shift, and before updating a memory.",
);
} else if (strategy === "always") {
parts.push(
"Automatic recall runs for both long-term and session memory. Use manual searches only when you need more specific context.",
);
} else {
parts.push(
"Automatic recall runs for long-term memory. Use manual searches when the injected context is not enough.",
);
}
parts.push(
"When calling memory_search, ALWAYS rewrite the query. NEVER pass the user's raw message.",
);
parts.push(
"Convert the request into 3-6 factual keywords that match stored memory language: user, decided, prefers, rule, configured, based in, plus the concrete nouns and names from the request.",
);
parts.push(
'WRONG: memory_search("Who was that nutritionist my wife recommended?")',
);
parts.push(
'RIGHT: memory_search("nutritionist wife recommended relationship")',
);
parts.push('WRONG: memory_search("What timezone am I in?")');
parts.push('RIGHT: memory_search("user timezone location based")');
// Intentionally omitted from the compact path: ENTITY SCOPING and SEARCH SCOPE.
// loadTriagePrompt() keeps the full explanatory sections for the non-compact path.
parts.push(
'Scope: use "long-term" for durable user context, "session" for this conversation, and "all" only when you truly need both.',
);
parts.push(
"When the request implies a time range or category, add filters or categories instead of broadening the query text.",
);
}
parts.push("</memory-system>");
return parts.join("\n");
}
/**
* Load the dream skill prompt for consolidation sessions.
*/
export function loadDreamPrompt(config: SkillsConfig = {}): string {
const dream = loadSkill("memory-dream", config);
if (!dream) return "";
return dream.prompt;
}
/**
* Resolve the effective categories — user overrides merged with defaults.
*/
export function resolveCategories(
config: SkillsConfig = {},
): Record<string, CategoryConfig> {
return { ...DEFAULT_CATEGORIES, ...(config.categories || {}) };
}
/**
* Resolve credential patterns — user overrides merged with defaults.
*/
export function resolveCredentialPatterns(config: SkillsConfig = {}): string[] {
return config.triage?.credentialPatterns ?? DEFAULT_CREDENTIAL_PATTERNS;
}
/**
* Check if skills mode is active (triage enabled).
*/
export function isSkillsMode(config: SkillsConfig | undefined): boolean {
if (!config) return false;
return config.triage?.enabled !== false; // enabled by default when skills config exists
}