//#region src/index.d.ts /** * @contentrain/skills — AI agent skills for Contentrain * * Agent Skills standard format: SKILL.md + references/ for progressive disclosure. * Also includes workflow procedures and framework integration guides. */ declare const AGENT_SKILLS: readonly [{ readonly name: "contentrain"; readonly description: "Contentrain CMS architecture, content formats, and MCP tool usage"; }, { readonly name: "contentrain-normalize"; readonly description: "Two-phase normalize: extract hardcoded strings and patch source files"; }, { readonly name: "contentrain-quality"; readonly description: "Content quality, SEO, accessibility, and media rules"; }, { readonly name: "contentrain-sdk"; readonly description: "Query SDK usage: #contentrain imports, QueryBuilder, type-safe content access"; }, { readonly name: "contentrain-content"; readonly description: "Create and manage content entries for existing models"; }, { readonly name: "contentrain-model"; readonly description: "Design and save model definitions"; }, { readonly name: "contentrain-init"; readonly description: "Initialize a new Contentrain project"; }, { readonly name: "contentrain-bulk"; readonly description: "Batch operations on content entries"; }, { readonly name: "contentrain-validate-fix"; readonly description: "Validate content and auto-fix structural issues"; }, { readonly name: "contentrain-review"; readonly description: "Review content changes before publishing"; }, { readonly name: "contentrain-translate"; readonly description: "Translate content across supported locales"; }, { readonly name: "contentrain-generate"; readonly description: "Generate the typed SDK client from models"; }, { readonly name: "contentrain-serve"; readonly description: "Start the local review and normalize UI"; }, { readonly name: "contentrain-diff"; readonly description: "View content diffs between branches"; }, { readonly name: "contentrain-doctor"; readonly description: "Diagnose project health issues"; }]; type AgentSkillName = (typeof AGENT_SKILLS)[number]['name']; declare const WORKFLOW_SKILLS: readonly ["contentrain-init", "contentrain-model", "contentrain-content", "contentrain-bulk", "contentrain-normalize", "contentrain-validate-fix", "contentrain-review", "contentrain-diff", "contentrain-doctor", "contentrain-serve", "contentrain-translate", "contentrain-generate"]; type WorkflowSkill = (typeof WORKFLOW_SKILLS)[number]; declare const FRAMEWORK_GUIDES: readonly ["nuxt", "next", "astro", "sveltekit", "vue", "react", "expo", "react-native", "node"]; type FrameworkGuide = (typeof FRAMEWORK_GUIDES)[number]; //#endregion export { AGENT_SKILLS, AgentSkillName, FRAMEWORK_GUIDES, FrameworkGuide, WORKFLOW_SKILLS, WorkflowSkill }; //# sourceMappingURL=index.d.cts.map