orcadub-mcp-server: Instructions file for Codex

AGENTS.md

orcadub-mcp-server AGENTS.md is an instructions file for Codex, OpenCode from Continuum-AI-Corp/orcadub-mcp-server. It costs 2,085 tokens per session, scanned A, original, MIT.

A set of project instructions for a Go MCP server that provides tools for OrcaDub, a video-dubbing service. It also documents the command-line launcher, release packages, and the relationship with the private development repository.

In plain words
What is it for?
Use it when changing dubbing tools, the Go server, its launcher, Docker files, tests, or release process.
Why use it?
It helps agents preserve matching behavior between the public mirror and development repository while following the project’s build and release structure.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: mentions Claude Code; mentions AGENTS.md; mentions Codex.

This is Continuum-AI-Corp/orcadub-mcp-server's own configuration. It tells Codex and OpenCode how to work on orcadub-mcp-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything orcadub-mcp-server configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/Continuum-AI-Corp/orcadub-mcp-server/main/AGENTS.md
Clone the repo
git clone --depth 1 https://github.com/Continuum-AI-Corp/orcadub-mcp-server

Made for: Codex, OpenCode.

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 orcadub-mcp-server AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/continuum-ai-corp/orcadub-mcp-server/agents-md/github.svg)](https://agentmods.dev/instructions/continuum-ai-corp/orcadub-mcp-server/agents-md)
Your own site
<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.

agentmods 80×15 button for orcadub-mcp-server AGENTS.md

Your own site · 80×15
<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>
Per session 2,085 This file is loaded in full into every session.
When invoked 2,085 The same file — it is already loaded in full.
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.02085 $0.02085
Opus 5 $0.01043 $0.01043
Sonnet 5 $0.00417 $0.00417
Haiku 4.5 $0.00209 $0.00209

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

Security

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.

AGENTS.md · 158 lines

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

  1. All submit/query traffic goes through the OrcaRouter gateway (https://api.orcarouter.ai, hardcoded as gatewayBaseURL). Every entry-point request carries the model=orca/dub routing field: videos create body, /v1/files multipart form field, /v1/uploads create body.
  2. Delivery uses the origin content routehttps://orcadub.orcarouter.ai/v1/videos/{job_id}/content with the same Bearer key (job_id comes from the gateway's task retrieve). The gateway's own /content proxy 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.
  3. 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 to https://www.orcarouter.ai/console so the agent can walk the user through registration.
  4. 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.
  5. dub_create is billed (per minute of source video). Required fields (source_lang, target_lang, file_id XOR url, video_name with file_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 via boolStr.
  6. Folder names must not carry the orcadub brand — directories are plain cmd/, internal/. The brand lives on the repo, the released binary, and the npm package (@orcadub/cli) only.
  7. Wire types in internal/types.go are vendored from orca-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.
  8. 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). See apiError.
  9. 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 in internal/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.

Read the full file on GitHub · 158 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. 8d ago First seen · 158 lines · 2,085 tokens per session scan A bc7fa6ee9df4

Subscribe to this mod's changes

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.

Related

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.

vercel/next.js · 7,296 tokens

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.

openai/codex · 5,153 tokens

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).

microsoft/vscode · 6,785 tokens

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).

microsoft/vscode · 5,001 tokens

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.

langchain-ai/langchain · 4,469 tokens

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.

github/spec-kit · 7,104 tokens