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.
npx skills add CrestApps/CrestApps.AgentSkills --skill crestapps-core-azure-ai-inferencegit clone --depth 1 https://github.com/CrestApps/CrestApps.AgentSkillsWrote 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.
[](https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-azure-ai-inference)<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.
<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>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once 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 |
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.
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"
}
]
}
}
}
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.
- 10d ago First seen · 73 lines · 25 tokens per session scan A 6938d27797ec
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.
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…
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.
data-engineering
Transforms, validates, loads data in ETL pipelines. Use when building scrapers, validating NDJSON feeds, or importing data into CMS/DB targets.
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…
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.
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.