Borrowing it
Nothing to install: this file belongs to Continuum-AI-Corp/orcadub-mcp-server. 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/Continuum-AI-Corp/orcadub-mcp-server/main/AGENTS.mdgit clone --depth 1 https://github.com/Continuum-AI-Corp/orcadub-mcp-serverWrote 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/instructions/continuum-ai-corp/orcadub-mcp-server/agents-md)<a href="https://agentmods.dev/instructions/continuum-ai-corp/orcadub-mcp-server/agents-md"><img src="https://agentmods.dev/badge/instructions/continuum-ai-corp/orcadub-mcp-server/agents-md/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/instructions/continuum-ai-corp/orcadub-mcp-server/agents-md"><img src="https://agentmods.dev/badge/instructions/continuum-ai-corp/orcadub-mcp-server/agents-md.svg" alt="Reviewed on agentmods" width="80" 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.02085 | $0.02085 |
| Opus 5 | $0.01043 | $0.01043 |
| Sonnet 5 | $0.00417 | $0.00417 |
| Haiku 4.5 | $0.00209 | $0.00209 |
Grade A, and why
orcadub-mcp-server AGENTS.md 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 8d 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 — 158 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — orcadub-mcp-server
Guidance for AI coding agents (Codex, Claude Code, Cursor, …) working in this repository. Read this before changing code.
What this repo is
The public distribution repo for the OrcaDub MCP server: a standalone Go
stdio MCP server that exposes the OrcaDub video-dubbing service (OrcaRouter
model orca/dub) as five tools — dub_health / dub_upload / dub_create /
dub_get / dub_download.
It is a mirror for release purposes. The development home is the private
Continuum-AI-Corp/orca-rt-dubbing repo (cmd/dub-mcp), which shares wire
types with the dub-server itself. Feature work generally lands there first and
is synced here manually. Keep the two in behavioural lockstep.
Layout
cmd/ # entrypoint; serverVersion stamped via goreleaser ldflags
internal/ # HTTP client, Skill installer/TUI/i18n, MCP tool layer, vendored wire types, tests
npm/ # npx launcher: postinstall downloads the platform binary
.goreleaser.yaml # 6-platform release (bare binaries + tar.gz/zip + ghcr.io docker images)
Dockerfile # standalone build; Dockerfile.goreleaser is used at release time
.github/workflows/ # ci.yml (fmt/vet/build/test/goreleaser check), release.yml (tag → release + npm publish)
server.json # MCP Registry manifest
Architecture invariants — do not break these
- All submit/query traffic goes through the OrcaRouter gateway
(
https://api.orcarouter.ai, hardcoded asgatewayBaseURL). Every entry-point request carries themodel=orca/dubrouting field: videos create body,/v1/filesmultipart form field,/v1/uploadscreate body. - Delivery uses the origin content route —
https://orcadub.orcarouter.ai/v1/videos/{job_id}/contentwith the same Bearer key (job_idcomes from the gateway's task retrieve). The gateway's own/contentproxy is SSRF-blocked and its stored presigned URL expires; the origin re-signs per request. Never expose presigned COS URLs (output_url) to users — they are bearer-token-free and unrevocable. - The only dubbing runtime configuration is
ORCADUB_API_KEY. No other env vars, no config files. Skill installation does not use the key. A missing key must NOT fail startup: tools register and every dubbing call returns the sign-up redirect tohttps://www.orcarouter.ai/consoleso the agent can walk the user through registration. - Tool surface = the gateway's documented dub lifecycle, nothing more.
Do not add list / cancel / delete / native
/api/v1/dub/*tools — the gateway does not expose those routes. dub_createis billed (per minute of source video). Required fields (source_lang,target_lang,file_idXORurl,video_namewithfile_id) carry "REQUIRED — ask the user" in their jsonschema descriptions — keep those annotations so agents ask instead of guessing. Boolean knobs are*string"true"/"false" on the wire (server convention); convert viaboolStr.- Folder names must not carry the
orcadubbrand — directories are plaincmd/,internal/. The brand lives on the repo, the released binary, and the npm package (@orcadub/cli) only. - Wire types in
internal/types.goare vendored fromorca-rt-dubbing/internal/quality/openaicompat(the source of truth, shared with the server). Do not invent or rename JSON fields here — sync from the source when the server changes. - Two error envelopes exist on the wire and both must keep parsing:
OpenAI-style
{"error":{"message":...}}(gateway routing errors) and the OrcaRouter task envelope{"code":..,"message":..,"data":..}(dub task errors). SeeapiError. - Skill installer machine output stays presentation-free. Interactive
fields are implemented by the Huh adapter in
internal/skill_prompt_huh.go; installer-owned Simplified Chinese and English text lives ininternal/skill_i18n.go.skill install --json,--yes, and fully explicit installs must not emit the banner, ANSI escapes, prompts, or localized status values into JSON.
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.
- 8d ago First seen · 158 lines · 2,085 tokens per session scan A bc7fa6ee9df4
orcadub-mcp-server AGENTS.md is an instructions file published in the GitHub repository Continuum-AI-Corp/orcadub-mcp-server (5 stars, last pushed 12d ago), licensed MIT. It adds 2,085 tokens to every session, about $0.0104 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-31.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.