orchardcore-ai-providers

orchardcore-ai-providers is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 212 tokens per session (4,420 once invoked), scanned A, original, MIT.

A set of Orchard Core modules for connecting AI features to providers such as OpenAI, Azure OpenAI, Azure AI Inference, Ollama, Claude, and Copilot.

In plain words
What is it for?
Use it to create provider connections, map model deployments to those connections, configure orchestration options, and reference deployments from AI profiles.
Why use it?
It separates credentials, model deployments, and AI profile settings, making provider configuration easier to manage across an application.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create provider connections, map model deployments to those connections, configure orchestration options, and reference deployments from AI profiles.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/crestapps/crestapps.agentskills/orchardcore-ai-providers
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add CrestApps/CrestApps.AgentSkills --skill orchardcore-ai-providers
Clone the repo
git clone --depth 1 https://github.com/CrestApps/CrestApps.AgentSkills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for orchardcore-ai-providers

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-ai-providers/github.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-ai-providers)
Your own site
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-ai-providers"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-ai-providers/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for orchardcore-ai-providers

Your own site · 80×15
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-ai-providers"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-ai-providers.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 212 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,420 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 4 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 77
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 99
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 540
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 169
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00212 $0.04420
Opus 5 $0.00106 $0.02210
Sonnet 5 $0.00042 $0.00884
Haiku 4.5 $0.00021 $0.00442

Measured 7d ago against content hash 74dc953ceb22, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

orchardcore-ai-providers scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/crestapps-orchardcore/skills/orchardcore-ai-providers/SKILL.md · 602 lines

How it starts

The opening of the file, as written. The whole thing — 602 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Orchard Core AI Providers - Prompt Templates

Configure AI Providers

You are an Orchard Core expert. Generate code, configuration, and recipes for setting up AI provider modules in an Orchard Core application using CrestApps packages.

Guidelines

  • Every AI feature in Orchard Core requires a provider module. Enable at least one provider alongside CrestApps.OrchardCore.AI.
  • Provider modules fall into two categories: connection-based providers (OpenAI, Azure OpenAI, Azure AI Inference, Ollama) that create connections and deployments, and orchestrators (Claude, Copilot) that provide alternative chat session orchestration via site settings.
  • Connection-based providers follow a three-layer model: a connection holds credentials, a deployment maps a model name to a connection, and an AI profile references deployments by name.
  • Always secure API keys using dotnet user-secrets during development and environment variables or Azure Key Vault in production. Never hardcode keys.
  • Install all CrestApps provider NuGet packages in the web/startup project.
  • When multiple shared connections exist for the same provider, assign the intended ConnectionName on each deployment explicitly.

Provider Feature Overview

Provider Feature ID NuGet Package Description
OpenAI CrestApps.OrchardCore.OpenAI CrestApps.OrchardCore.OpenAI Connect to OpenAI or any OpenAI-compatible endpoint (DeepSeek, Gemini, Together AI, LM Studio, etc.)
Azure OpenAI CrestApps.OrchardCore.OpenAI.Azure CrestApps.OrchardCore.OpenAI.Azure Azure-hosted OpenAI models with support for API key, Managed Identity, and Azure AI Services speech
Azure AI Inference CrestApps.OrchardCore.AzureAIInference CrestApps.OrchardCore.AzureAIInference Azure AI Inference service and GitHub Models
Ollama CrestApps.OrchardCore.Ollama CrestApps.OrchardCore.Ollama Local Ollama models for self-hosted AI
Claude Orchestrator CrestApps.OrchardCore.AI.Chat.Claude CrestApps.OrchardCore.AI.Chat.Claude Claude-based orchestrator for AI chat sessions using the Anthropic API
Copilot Orchestrator CrestApps.OrchardCore.AI.Chat.Copilot CrestApps.OrchardCore.AI.Chat.Copilot GitHub Copilot SDK-based orchestrator for AI chat sessions

Read the full file on GitHub · 602 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 602 lines · 212 tokens per session scan A 74dc953ceb22

Subscribe to this mod's changes

orchardcore-ai-providers is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 13d ago), licensed MIT. It adds 212 tokens to every session and 4,420 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

microsoft-extensions-ai

Build provider-agnostic .NET AI integrations with Microsoft.Extensions.AI, IChatClient, embeddings, middleware, structured output, vector search, and evaluation. USE FOR: building or reviewing .NET code that uses Microsoft.Extensions.AI, Microsoft.Extensions.AI.Abstractions, IChatClient, IEmbeddingGenerator…

managedcode/dotnet-skills · 128 tokens

maui-essentials-ai

Adopt Microsoft.Maui.Essentials.AI for local/on-device MAUI AI. USE FOR: Apple Intelligence chat, IChatClient, iOS/macOS/Mac Catalyst 26+ checks, fallback UI, NLEmbeddingGenerator, local tool invocation, privacy/offline UX. DO NOT USE FOR: source-generated tools, cloud-only AI, UI debugging.

dotnet/maui-labs · 86 tokens

haiku-rag

Search, read and compute over the user's haiku.rag knowledge base through the haiku-rag MCP tools. Use whenever a request could be answered from the user's ingested documents, when asked to find, look up, check or cite something in their documents or knowledge base, or when the question is about the user's own…

ggozad/haiku.rag · 76 tokens

aba-precision-protocol

FOUNDATIONAL BEHAVIORAL PROTOCOL — ABA-based precision execution rules. Every prompt processed must follow these rules. Mistakes caught late create intermittent reinforcement of wrong patterns. Stop-fix-verify before proceeding.

dcostenco/prism-coder · 48 tokens

gdal-api

Use when programming against GDAL/OGR in C, C++, Python, or .NET for raster/vector I/O, coordinate transformation, or custom geospatial algorithms. GDAL API: low-level programming interface for reading/writing 70+ geospatial formats.

znlgis/opengis-skills · 56 tokens

prompt-decorators-usage

Use when a user's prompt would clearly benefit from a reasoning, structure, tone, or verification decorator - or when they ask "what decorators should I use?". Teaches when and how to suggest inline ::Name(params) sigils instead of repeating verbose prompt-engineering instructions manually.

synaptiai/prompt-decorators · 63 tokens