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-devin/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-devin)<a href="https://agentmods.dev/skills/verivus-oss/llm-cli-gateway/provider-devin"><img src="https://agentmods.dev/badge/skills/verivus-oss/llm-cli-gateway/provider-devin.svg" alt="Measured on agentmods" height="20"></a>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.00068 | $0.01456 |
| Opus 5 | $0.00034 | $0.00728 |
| Sonnet 5 | $0.00014 | $0.00291 |
| Haiku 4.5 | $0.00007 | $0.00146 |
Grade B, and why
provider-devin scanned grade B 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 4d 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.
Asks the agent to reveal its instructionsmediumSystem prompt leakage
Directions to print, repeat or translate the system prompt extract configuration the operator did not intend to expose.
8. Devin's CLI print prompt is argv-bound. Oversized UTF-8 input fails before How it starts
The opening of the file, as written. The whole thing — 119 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Provider: Devin CLI
Keep the gateway's Devin (devin) integration aligned with the upstream CLI.
This skill does not define argv or environment behaviour. The single mechanical
source of truth is UPSTREAM_CLI_CONTRACTS.devin in
src/upstream-contracts.ts, enforced by validateUpstreamCliArgs and
validateUpstreamCliEnv. Do not re-encode flags, permission modes, ACP rules,
or session rules here or in TOML.
Identity
| Field | Value |
|---|---|
| CliType | devin |
| Executable | devin |
| Distribution | vendor installer / self-update |
| Command docs | https://cli.devin.ai/docs/reference/commands |
| CLI docs | https://docs.devin.ai/cli |
| Changelog | https://docs.devin.ai/cli/changelog/stable |
| Watch categories | flags, subcommands, permission-modes, acp-entrypoint |
These values mirror UPSTREAM_CLI_CONTRACTS.devin.upstreamMetadata and
docs/upstream/provider-sources.dag.toml ([providers.devin]). The TypeScript
metadata is authoritative; the TOML is scanner input only.
Gateway use
- Discover the live gateway surface before relying on Devin-specific controls:
For a cached read-only resource, useprovider_tool_capabilities({cli:"devin"})provider-tools://devin. - Use
devin_requestfor normal work anddevin_request_asyncfor long-running work. Sync calls may auto-defer; pollllm_job_statusand fetch withllm_job_resultwhen that happens. - Omit
modelunless the caller explicitly requests one. Use only request controls reported byprovider_tool_capabilities. Devin must useapprovalStrategy:"legacy": it rejects Claude-onlymcp_managedbefore launch, andapprovalPolicyhas no effect. - Treat
permissionMode:"accept-edits"as an explicit edit-authorizing choice. It is not equivalent to unrestricted autonomous execution. - Devin accepts flat
promptonly, notpromptParts. For CLI transport, pass localworkingDiror a verified registeredworkspaceto bind the repository. Use gatewayworktreeonly with an explicit provider-nativesessionIdthat is not overridden bycreateNewSession; fresh,createNewSession, andresumeLatest-only worktree requests fail closed. ACP rejectsworkingDirandworktree; use its registeredworkspaceselector. An unscoped CLI child runs in a fresh neutral temporary cwd, not the gateway repository. - Use a real resumable provider session only when the response reports it as
resumable. Gateway bookkeeping IDs are not automatically valid Devin session
IDs.
resumeLatest:trueneedsworkingDir,workspace, or a configured default workspace because Devin's latest-session pointer is cwd-scoped. - Native ACP is capability-gated. It rejects
approvalStrategy:"mcp_managed"and anyapprovalPolicy, as does the Devin CLI gateway path. Probe the actual entrypoint withdevin acp --help, not onlydevin --version. - Devin's CLI print prompt is argv-bound. Oversized UTF-8 input fails before
spawn as non-retryable
input_too_large; the gateway never truncates it. 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.
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.
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.
- 4d ago Changed 1e80c48c5ab6
- 8d ago First seen · 119 lines · 68 tokens per session scan B 78216ebe9d76
provider-devin is a skill published in the GitHub repository verivus-oss/llm-cli-gateway (15 stars, last pushed today), licensed MIT. It adds 68 tokens to every session and 1,456 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (asks the agent to reveal its instructions). 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.