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-openaigit 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-openai)<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-azure-openai"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-azure-openai/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-openai"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-azure-openai.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.00029 | $0.00429 |
| Opus 5 | $0.00015 | $0.00215 |
| Sonnet 5 | $0.00006 | $0.00086 |
| Haiku 4.5 | $0.00003 | $0.00043 |
Grade A, and why
crestapps-core-azure-openai 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 OpenAI - Prompt Templates
Add Azure OpenAI Support
You are a CrestApps.Core expert. Generate code and configuration for Azure OpenAI with CrestApps.Core.
Guidelines
- Use Azure OpenAI for enterprise production needs such as regional control and managed identity scenarios.
- Register Azure OpenAI only when the host actually uses it.
- Keep the Azure endpoint and credentials on the connection.
- Keep deployment names and model intent on the deployment entry.
Builder Registration
builder.Services.AddCrestAppsCore(crestApps => crestApps
.AddAISuite(ai => ai
.AddAzureOpenAI()
)
);
Provider-Only Registration
AddCoreAIAzureOpenAI() adds only the Azure OpenAI provider registrations. Use it alone only when the application has already registered the core AI services it needs.
builder.Services.AddCoreAIAzureOpenAI();
For a normal application composition that resolves deployments or uses orchestration, register the core and orchestration services as well:
builder.Services
.AddCoreAIServices()
.AddCoreAIOrchestration()
.AddCoreAIAzureOpenAI();
Configuration
{
"CrestApps": {
"AI": {
"Connections": [
{
"Name": "azure-primary",
"ClientName": "Azure",
"ApiKey": "YOUR_AZURE_OPENAI_KEY",
"Endpoint": "https://my-resource.openai.azure.com"
}
],
"Deployments": [
{
"Name": "gpt-4o",
"ClientName": "Azure",
"ConnectionName": "azure-primary",
"ModelName": "gpt-4o",
"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 · 29 tokens per session scan A 6c26161f4e69
crestapps-core-azure-openai is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 12d ago), licensed MIT. It adds 29 tokens to every session and 429 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.