crestapps-core-azure-openai

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

A setup guide for connecting Azure OpenAI, Microsoft’s hosted version of OpenAI models, to CrestApps.Core applications.

In plain words
What is it for?
Use it to generate the service-registration code and configuration needed for Azure endpoints, deployments, and enterprise connection settings.
Why use it?
It clarifies which services to register and where to keep connection details, deployment names, and model settings when configuring Azure OpenAI.

Skill for Claude CodeCodex

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

Good fit Use it to generate the service-registration code and configuration needed for Azure endpoints, deployments, and enterprise connection settings.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/crestapps-core-azure-openai/github.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/crestapps-core-azure-openai)
Your own site
<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.

agentmods 80×15 button for crestapps-core-azure-openai

Your own site · 80×15
<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>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 429 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.00029 $0.00429
Opus 5 $0.00015 $0.00215
Sonnet 5 $0.00006 $0.00086
Haiku 4.5 $0.00003 $0.00043

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

Security

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.

plugins/crestapps-core/skills/crestapps-core-azure-openai/SKILL.md · 73 lines

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"
        }
      ]
    }
  }
}
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 · 29 tokens per session scan A 6c26161f4e69

Subscribe to this mod's changes

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.

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