create-provider

create-provider is a skill for Claude Code, Codex from CloudChef/atlasclaw-providers. It costs 37 tokens per session (2,190 once invoked), scanned A, original, Apache-2.0.

A guide for adding a new provider, meaning an integration that lets AtlasClaw connect to an outside service such as an API, IT service desk, or customer system.

In plain words
What is it for?
It helps create provider folders, describe authentication and capabilities, add a skill for each capability, update atlasclaw.json, and test loading and execution.
Why use it?
It gives the integration a consistent structure, documentation, configuration, and tests instead of leaving those pieces to be worked out separately.

Skill for Claude CodeCodex

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

Good fit It helps create provider folders, describe authentication and capabilities, add a skill for each capability, update atlasclaw.json, and test loading and execution.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cloudchef/atlasclaw-providers/create-atlasclaw-provider
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 CloudChef/atlasclaw-providers --skill create-atlasclaw-provider
Clone the repo
git clone --depth 1 https://github.com/CloudChef/atlasclaw-providers

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 create-provider

README.md
[![agentmods](https://agentmods.dev/badge/skills/cloudchef/atlasclaw-providers/create-atlasclaw-provider/github.svg)](https://agentmods.dev/skills/cloudchef/atlasclaw-providers/create-atlasclaw-provider)
Your own site
<a href="https://agentmods.dev/skills/cloudchef/atlasclaw-providers/create-atlasclaw-provider"><img src="https://agentmods.dev/badge/skills/cloudchef/atlasclaw-providers/create-atlasclaw-provider/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 create-provider

Your own site · 80×15
<a href="https://agentmods.dev/skills/cloudchef/atlasclaw-providers/create-atlasclaw-provider"><img src="https://agentmods.dev/badge/skills/cloudchef/atlasclaw-providers/create-atlasclaw-provider.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,190 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00037 $0.02190
Opus 5 $0.00018 $0.01095
Sonnet 5 $0.00007 $0.00438
Haiku 4.5 $0.00004 $0.00219

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

Security

Grade A, and why

create-provider scanned grade A with 1 finding 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 11d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

response = requests.get(
skills/create-atlasclaw-provider/SKILL.md · 359 lines

How it starts

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

Create AtlasClaw Provider

Guide for creating new providers that integrate external systems with the AtlasClaw AI Agent.

Quick Start Checklist

Provider Creation Progress:
- [ ] 1. Gather requirements (system type, auth method, capabilities)
- [ ] 2. Create provider directory structure
- [ ] 3. Write PROVIDER.md with LLM context fields
- [ ] 4. Create skills for each capability
- [ ] 5. Add configuration to atlasclaw.json
- [ ] 6. Test provider loading and skill execution

Phase 1: Gather Requirements

Before creating a provider, determine:

Question Example Answer
Provider type servicenow, github, datadog
Display name ServiceNow, GitHub, Datadog
Authentication method Basic Auth, API Token, OAuth 2.0, Cookie
Base URL pattern https://instance.service-now.com
Key capabilities CRUD incidents, manage users, query metrics
Target keywords incident, ticket, alert, deployment

Phase 2: Directory Structure

Create provider at: {workspace}/providers/{provider-name}/

providers/{provider-name}/
├── PROVIDER.md           # Required - provider metadata and documentation
├── README.md             # Optional - human documentation
├── skills/               # Required - at least one skill
│   └── {skill-name}/
│       ├── SKILL.md      # Required - skill metadata
│       └── scripts/      # Required for executable skills
│           └── handler.py
└── references/           # Optional - API docs, mappings
    └── api_mapping.md

Phase 3: PROVIDER.md Template

---
# === Required Fields ===
provider_type: {provider-name}        # Must match directory name
display_name: {Display Name}
version: "1.0.0"

# === LLM Context Fields (for Skill Discovery) ===
keywords:
  - keyword1                          # Domain-specific terms users might say
  - keyword2
  - keyword3

capabilities:
  - Capability description 1
  - Capability description 2

use_when:
  - User intent scenario 1
  - User intent scenario 2

avoid_when:
  - Scenario when other provider is better (suggest alternative)
---

# {Display Name} Provider

Brief description of what this provider integrates with.

## Connection Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `base_url` | string | Yes | API base URL |
| `username` | string | Conditional | Username for auth |
| `password` | string | Conditional | Password or token |
| `api_key` | string | Conditional | API key if applicable |

## Authentication Modes

| Mode | Parameters | Notes |
|------|------------|-------|
| Basic Auth | `username` + `password` | Standard HTTP Basic |
| API Token | `api_key` | Bearer token auth |

## Configuration Example

```json
{
  "service_providers": {
    "{provider-name}": {
      "default": {
        "base_url": "${PROVIDER_URL}",
        "api_key": "${PROVIDER_API_KEY}"
      }
    }
  }
}

Environment Variables

PROVIDER_URL=https://api.example.com
PROVIDER_API_KEY=your-api-key

Provided Skills

Skill Description
{provider}-{action} Brief description

Read the full file on GitHub · 359 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 359 lines · 37 tokens per session scan A fb003eb0c305

Subscribe to this mod's changes

create-provider is a skill published in the GitHub repository CloudChef/atlasclaw-providers (15 stars, last pushed 7d ago), licensed Apache-2.0. It adds 37 tokens to every session and 2,190 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.