package tools import "embed" // SkillsFS contains the capability-grouped SKILL.md files for injection // into sandbox workspaces. Each SKILL teaches the LLM how to use a group // of system tools via `tai tool `. // //go:embed skills var SkillsFS embed.FS // SystemPrompt is the shared content appended to both CLAUDE.md and AGENTS.md // in sandbox workspaces. It provides environment variable documentation and // the `tai tool` calling convention. Stored as a single source file to prevent // content drift between the two runner instruction files. // //go:embed prompts/system-tools.md var SystemPrompt []byte