/** * @creative-int/pi-prompts — Shared system-prompt scaffolding for pi coding-agent forks. * * Forks supply their own domain-specific body (identity paragraph, core * expertise, principles, domain doc pointers, tool descriptions). This * package wraps that body with the shared scaffolding: tool-aware * guidelines, optional appends, project context files, skills block, and * the canonical date/time + working-directory footer. */ export type { BuildSystemPromptOptions, PromptContextFile, PromptSkill, } from "./types.js"; export { STANDARD_TOOL_DESCRIPTIONS, STANDARD_TOOL_NAMES, STRICT_JSON_OUTPUT_RULES, buildStandardGuidelines, formatSkillsForPrompt, getCurrentDateTimeString, parseSpecialistArtifactText, renderProjectContextSection, renderToolsList, } from "./primitives.js"; export { buildSystemPrompt } from "./build.js"; //# sourceMappingURL=index.d.ts.map