providers

providers is a command for Claude Code from danielraffel/generous-corp-marketplace. It costs 15 tokens per session (2,399 once invoked), scanned A, original, MIT.

A command for viewing and configuring image-generation services, including OpenAI DALL-E 3 and Google Gemini. It shows which providers are configured and lets you choose settings such as the default provider.

In plain words
What is it for?
Use it to list provider status, check API-key configuration, set the default image provider, configure Gemini, and review image-generation usage and budget information.
Why use it?
It removes the need to inspect provider configuration and usage manually. It also makes fallback order, estimated costs, limits, and remaining budget visible.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; names the AskUserQuestion tool; positional $N argument.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/you/projects/designs.

Part of the design-partner plugin — 1 skill, 4 commands, 1 agent shipped together

Good fit Use it to list provider status, check API-key configuration, set the default image provider, configure Gemini, and review image-generation usage and budget information.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add danielraffel/generous-corp-marketplace
Claude Code
/plugin install design-partner

Made for: Claude Code.

Or install design-partner, the plugin that ships this one along with the rest of its 1 skill, 4 commands, 1 agent.

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 providers

README.md
[![agentmods](https://agentmods.dev/badge/commands/danielraffel/generous-corp-marketplace/providers/github.svg)](https://agentmods.dev/commands/danielraffel/generous-corp-marketplace/providers)
Your own site
<a href="https://agentmods.dev/commands/danielraffel/generous-corp-marketplace/providers"><img src="https://agentmods.dev/badge/commands/danielraffel/generous-corp-marketplace/providers/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 providers

Your own site · 80×15
<a href="https://agentmods.dev/commands/danielraffel/generous-corp-marketplace/providers"><img src="https://agentmods.dev/badge/commands/danielraffel/generous-corp-marketplace/providers.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 15 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,399 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.
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.00015 $0.02399
Opus 5 $0.00008 $0.01200
Sonnet 5 $0.00003 $0.00480
Haiku 4.5 $0.00002 $0.00240

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

Security

Grade A, and why

providers 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 9d 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/design-partner/commands/providers.md · 403 lines

How it starts

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

Design Partner Providers Command

For Claude: Manage image generation API providers and settings.

Sub-commands

1. List Providers (default)

Usage: /dp:providers or /dp:providers list

Process:

  1. Run detect-api-keys.js to check configuration
  2. Read .claude/dp.local.md for usage stats
  3. Display current status

Output:

Image Generation Providers

Configured:
OpenAI DALL-E 3
   - Status: Enabled
   - Cost: $0.04/image (standard), $0.08/image (HD)
   - Usage: 3 images, $0.12 total
   - Last used: Today 2:30 PM
   - Rate limit: 5/min

Google Gemini Nano Banana Pro
   - Status: Not configured
   - Model: gemini-3-pro-image-preview (default)
   - Cost: Currently free during preview (subject to change)
   - Setup: Run /dp:providers setup

Default: DALL-E 3
Fallback order: DALL-E 3 → Gemini

Budget:
   - Daily limit: $5.00
   - Today's spend: $0.12 (2%)
   - Remaining: $4.88
   - Resets: Tonight at midnight

Note: Pricing shown is estimated and may not reflect current API rates. Actual costs may vary.

2. Set Default Provider

Usage: /dp:providers set-default

Process:

Use AskUserQuestion:

{
  "questions": [
    {
      "question": "Which provider should be your default?",
      "header": "Default Provider",
      "multiSelect": false,
      "options": [
        {
          "label": "OpenAI DALL-E 3",
          "description": "Higher quality, $0.04/image (standard)"
        },
        {
          "label": "Google Gemini",
          "description": "Budget-friendly, FREE (experimental)"
        },
        {
          "label": "Ask each time",
          "description": "Choose provider per generation"
        }
      ]
    },
    {
      "question": "Set fallback order?",
      "header": "Fallback",
      "multiSelect": false,
      "options": [
        {
          "label": "DALL-E → Gemini",
          "description": "Use Gemini if DALL-E fails"
        },
        {
          "label": "Gemini → DALL-E",
          "description": "Use DALL-E if Gemini fails"
        },
        {
          "label": "No fallback",
          "description": "Fail if default provider unavailable"
        }
      ]
    }
  ]
}

Read the full file on GitHub · 403 lines

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. 9d ago First seen · 403 lines · 15 tokens per session scan A 3ba6e1ea3d0f

Subscribe to this mod's changes

providers is a command published in the GitHub repository danielraffel/generous-corp-marketplace (11 stars, last pushed 10d ago), licensed MIT. It adds 15 tokens to every session and 2,399 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.