orchardcore-ai
Skill for configuring AI integrations in Orchard Core. Covers AI service registration, MCP enablement, prompt configuration, and agent framework integration.
npx skills add majiayu000/claude-skill-registry --skill orchardcore-ai --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Orchard Core AI - Prompt Templates ## Configure AI Integration You are an Orchard Core expert. Generate code and configuration for AI integrations in Orchard Core. ### Guidelines - Orchard Core supports AI integrations through the CrestApps AI module ecosystem. - Supported AI providers: OpenAI, Azure, AzureAIInference, and Ollama. - Configure AI services through `appsettings.json` or the admin UI. - Use dependency injection to access AI services in modules. - Always secure API keys using user secrets or environment variables, never hardcode them. - AI profiles define how the AI system interacts with users, including system messages and response behavior. - Profile types include `Chat`, `Utility`, and `TemplatePrompt`. ### Enabling AI Features ```json { "steps": [ { "name": "Feature", "enable": [ "CrestApps.OrchardCore.AI" ], "disable": [] } ] } ``` ### AI Configuration in appsettings.json ```json { "OrchardCore": { "CrestApps_AI": { "DefaultParameters": { "Temperature": 0, "MaxOutputTokens": 800, "TopP": 1, "FrequencyPenalty": 0, "PresencePenalty": 0, "PastMessagesCount": 10, "MaximumIterationsPerRequest": 1, "EnableOpenTelemetry": false, "EnableDistributedCaching": true }, "Prov
- Configure AI Integration
- Guidelines
- Enabling AI Features
- AI Configuration in appsettings.json
- Deployment Name Settings
- Adding AI Provider Connection via Recipe
- Creating AI Profiles via Recipe
- Defining Chat Profiles Using Code
- Extending AI Chat with Custom Functions
- Registering Custom AI Tools
- Security Best Practices
What does the orchardcore-ai skill do?
Skill for configuring AI integrations in Orchard Core. Covers AI service registration, MCP enablement, prompt configuration, and agent framework integration.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill orchardcore-ai --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
