crestapps-core-azure-ai-inference

crestapps-core-azure-ai-inference is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 25 tokens per session (431 once invoked), scanned A, original, MIT.

An integration for CrestApps.Core applications that connects Azure AI Inference, a service for accessing different AI model families through one endpoint, including GitHub Models.

In plain words
What is it for?
Use it when adding Azure AI Inference support or evaluating multiple AI models in a .NET application built with CrestApps.Core.
Why use it?
It provides a documented way to register the service and keep connection details, credentials, and model deployments organised.

Skill for Claude CodeCodex

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

Good fit Use it when adding Azure AI Inference support or evaluating multiple AI models in a .NET application built with CrestApps.Core.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/crestapps/crestapps.agentskills/crestapps-core-azure-ai-inference
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 crestapps-core-azure-ai-inference
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 crestapps-core-azure-ai-inference

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-azure-ai-inference/github.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-azure-ai-inference)
Your own site
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-azure-ai-inference"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-azure-ai-inference/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 crestapps-core-azure-ai-inference

Your own site · 80×15
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-azure-ai-inference"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-azure-ai-inference.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 431 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 pass 7 Sept 2026
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.00025 $0.00431
Opus 5 $0.00013 $0.00216
Sonnet 5 $0.00005 $0.00086
Haiku 4.5 $0.00003 $0.00043

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

Security

Grade A, and why

crestapps-core-azure-ai-inference 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 10d 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-core/skills/crestapps-core-azure-ai-inference/SKILL.md · 73 lines

What it actually says

CrestApps.Core Azure AI Inference - Prompt Templates

Add Azure AI Inference Support

You are a CrestApps.Core expert. Generate code and configuration for Azure AI Inference with CrestApps.Core.

Guidelines

  • Use Azure AI Inference when one endpoint should expose multiple model families.
  • It is a strong fit for GitHub Models and multi-model evaluation.
  • Keep the endpoint and credentials on the connection.
  • Keep deployment names and types in the deployment list.

Builder Registration

builder.Services.AddCrestAppsCore(crestApps => crestApps
    .AddAISuite(ai => ai
        .AddAzureAIInference()
    )
);

Provider-Only Registration

AddCoreAIAzureAIInference() adds only the Azure AI Inference provider registrations. Use it alone only when the application has already registered the core AI services it needs.

builder.Services.AddCoreAIAzureAIInference();

For a normal application composition that resolves deployments or uses orchestration, register the core and orchestration services as well:

builder.Services
    .AddCoreAIServices()
    .AddCoreAIOrchestration()
    .AddCoreAIAzureAIInference();

Configuration

{
  "CrestApps": {
    "AI": {
      "Connections": [
        {
          "Name": "azure-ai-inference",
          "ClientName": "AzureAIInference",
          "ApiKey": "YOUR_TOKEN",
          "Endpoint": "https://models.inference.ai.azure.com"
        }
      ],
      "Deployments": [
        {
          "Name": "gpt-4o-mini",
          "ClientName": "AzureAIInference",
          "ConnectionName": "azure-ai-inference",
          "ModelName": "gpt-4o-mini",
          "Type": "Chat"
        }
      ]
    }
  }
}
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. 10d ago First seen · 73 lines · 25 tokens per session scan A 6938d27797ec

Subscribe to this mod's changes

crestapps-core-azure-ai-inference is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 12d ago), licensed MIT. It adds 25 tokens to every session and 431 once invoked, about $0.0001 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-08-30.

Related

Other skills, from other repositories

mongodb-mcp-v3-migration

Migrates external consumer code from the mongodb-mcp-server v1/v2 single-package API to the v3 scoped-package structure. In v3, mongodb-mcp-server is a binary-only package (npx / MCPB); library embedding uses @mongodb-js/mcp-cli, @mongodb-js/mcp-core, @mongodb-js/mcp-http-runners, @mongodb-js/mcp-tools-, and the other…

mongodb-js/mongodb-mcp-server · 153 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

data-engineering

Transforms, validates, loads data in ETL pipelines. Use when building scrapers, validating NDJSON feeds, or importing data into CMS/DB targets.

monkilabs/opencastle · 35 tokens

aws-generative-ai-developer

Build Amazon Bedrock and serverless generative AI applications using Lambda, API Gateway, Step Functions, EventBridge, S3, DynamoDB, SQS, Guardrails, and IAM. Prefer this for serverless GenAI app design and implementation; prefer aws-agentcore for AgentCore runtime, aws-bedrock-agent-security-governor for deep Bedrock…

VincentChuWaiChow/vanguard-frontier-agentic · 93 tokens

flowllm-dev

FlowLLM repository development guidance. Use when working in the flowllm codebase to implement, debug, test, review, or document FlowLLM runtime behavior, including CLI/client calls, services, application wiring, jobs, steps, components, configuration, streaming, registry registration, and tests.

FlowLLM-AI/flowllm · 65 tokens

scalix-ai

Run AI inference on Scalix Cloud through the OpenAI-compatible API — chat completions, streaming, and the Scalix Lumio model family. Use when the user wants LLM inference on Scalix, asks about Scalix AI or Lumio models, or wants to point existing OpenAI-compatible code at Scalix.

scalixworld/scalix-cloud-mcp · 69 tokens