Borrowing it
Nothing to install: this file belongs to verivus-oss/llm-cli-gateway. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/verivus-oss/llm-cli-gateway/main/.agents/skills/provider-claude/SKILL.mdgit clone --depth 1 https://github.com/verivus-oss/llm-cli-gatewayWrote 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/verivus-oss/llm-cli-gateway/provider-claude)<a href="https://agentmods.dev/skills/verivus-oss/llm-cli-gateway/provider-claude"><img src="https://agentmods.dev/badge/skills/verivus-oss/llm-cli-gateway/provider-claude/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/verivus-oss/llm-cli-gateway/provider-claude"><img src="https://agentmods.dev/badge/skills/verivus-oss/llm-cli-gateway/provider-claude.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.00067 | $0.02007 |
| Opus 5 | $0.00034 | $0.01004 |
| Sonnet 5 | $0.00013 | $0.00401 |
| Haiku 4.5 | $0.00007 | $0.00201 |
Grade A, and why
provider-claude 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 151 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Provider: Claude Code CLI
Process guidance for keeping the gateway's Claude (claude) integration aligned
with the upstream CLI. This skill does not define argv/env behaviour; the
single mechanical source of truth is UPSTREAM_CLI_CONTRACTS.claude in
src/upstream-contracts.ts, enforced by validateUpstreamCliArgs /
validateUpstreamCliEnv. Never re-encode flags, output modes, permission modes,
or session rules here or in TOML.
Identity
| Field | Value |
|---|---|
| CliType | claude |
| Executable | claude |
| Package | @anthropic-ai/claude-code (npm) |
| Changelog | https://code.claude.com/docs/en/changelog.md |
| Install docs | https://code.claude.com/docs/en/overview |
| Watch categories | flags, output-formats, permission-modes, session-resume, models |
These values mirror UPSTREAM_CLI_CONTRACTS.claude.upstreamMetadata and
docs/upstream/provider-sources.dag.toml ([providers.claude]). The TypeScript
metadata is authoritative; the TOML is scanner input only.
When to use
- An Anthropic Claude Code release lands and you need to check for contract drift.
- A
clauderequest fails the upstream contract check before spawn. npm run upstream:scan -- --livereports a change on the Claude changelog.
How LLM agents should use Claude through the gateway
- Discover the live gateway/provider surface before relying on provider-specific
controls:
For a cached read-only resource, useprovider_tool_capabilities({cli:"claude"})provider-tools://claude. - Use
claude_requestfor normal turns andclaude_request_asyncfor long-running review, implementation, or analysis. Sync calls may auto-defer; pollllm_job_statusand fetch withllm_job_resultwhen that happens. - Omit
modelunless the caller explicitly asked for a specific variant; the gateway resolves the configured Claude default. - For review or code-reading tasks, keep tool access available. Claude supports
allowedTools,disallowedTools, andtools, but do not pass an empty allowlist for reviews. Undermcp_managed, non-emptyallowedToolsortoolsis a high-risk managed input that requires approval plusLLM_GATEWAY_APPROVAL_ALLOW_BYPASS=1, but remains bounded. - Use
mcpServersonly for gateway-known MCP servers. Under legacy approval,strictMcpConfigdefaults tofalse; set it totruewhen missing MCP access should fail fast. Undermcp_managed, the gateway forcesstrictMcpConfig:true, so Claude uses only the generated configuration and only provisioned gateway-owned local definitions are eligible. Dynamicnpx, ambient-PATH, and Codex-config overrides remain legacy-only; a caller-suppliedfalsecannot weaken that boundary. - Prefer
approvalStrategy:"mcp_managed"over rawdangerouslySkipPermissions. Under managed approval, a directdangerouslySkipPermissionsorpermissionMode:"bypassPermissions"request is honored only with an explicit caller request, approval-manager approval, andLLM_GATEWAY_APPROVAL_ALLOW_BYPASS=1. Settings or setting sources, agents, native forks, plugins, added directories, non-emptysystemPrompt/appendSystemPrompt, prompt-file controls (systemPromptFile/appendSystemPromptFile),safeMode:true,bare:true, anddebugFileare high-risk managed inputs: they require approval and the operator setting, but remain bounded and do not select full permission on their own. A gateway-created worktree is also a high-risk managed input under the same conditions. - Use
createNewSession,sessionId, orcontinueSessionfor real Claude continuity. Undermcp_managed, native continuation is also a high-risk input that requires approval plus the operator setting but remains bounded. Claude also supports structured output viaoutputFormatandjsonSchema. - Select local repository work with
workingDir, a verified registeredworkspace, or gatewayworktree. An unscoped CLI child uses a fresh neutral temporary cwd, not the gateway repository. A cwd-scoped continuation needs a stable selected target. - Claude's ordinary print path, including
promptPartswithout effective cache control, carries the prompt in argv. Oversized UTF-8 input on that path fails before spawn as non-retryableinput_too_large; the gateway does not truncate instructions. Effective cache-control requests requireoutputFormat:"stream-json"and carry the assembled content blocks through stream-json stdin instead. All other caller-controlled argv values are admitted in their final encoded form before spawn. Embedded NUL bytes return non-retryableinvalid_inputwithout exposing the rejected value. The stdin branch completes only after the full payload write callback succeeds; a clean child exit with closed or pending delivery is a fixed non-sensitive failure.
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.
- 5d ago Changed c0b7a225376e
- 10d ago First seen · 151 lines · 67 tokens per session scan A 8c2d47aad131
provider-claude is a skill published in the GitHub repository verivus-oss/llm-cli-gateway (15 stars, last pushed 2d ago), licensed MIT. It adds 67 tokens to every session and 2,007 once invoked, about $0.0003 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
provider-integration
Adds new AI providers to claude-council, configures provider API settings, troubleshoots provider connections, and documents the provider script interface. Covers creating provider shell scripts, setting API keys, and validating connectivity. Triggers on "add provider", "new AI agent", "provider not working", "API…
architect
System design, tradeoffs, and complex technical decisions.
security-analyst
Threat-model and find vulnerabilities, with practical remediation.
plan-reviewer
Validate that a work plan is executable before work starts.
researcher
Research external libraries, APIs, and best practices, with evidence.
debugger
Rank root-cause hypotheses and propose the smallest safe fix.