codex-dsh

codex-dsh is a skill for Claude Code, Codex from hootandy321/dsh-Agentlink. It costs 36 tokens per session (1,126 once invoked), scanned A, original, MIT.

A Codex skill for sending bounded tasks to an already running DSH Web Host, a separate service that performs agent work.

In plain words
What is it for?
Use it to delegate implementation or other multi-step work in an existing project directory to DSH.
Why use it?
It lets Codex hand off work while keeping task progress, follow-up questions, and cancellation under typed supervision.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/hootandy321/dsh-agentlink/codex-dsh
Any agent
npx skills add hootandy321/dsh-Agentlink --skill codex-dsh
Clone the repo
git clone --depth 1 https://github.com/hootandy321/dsh-Agentlink

Made for: Claude Code, Codex.

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 codex-dsh

README.md
[![agentmods](https://agentmods.dev/badge/skills/hootandy321/dsh-agentlink/codex-dsh.svg)](https://agentmods.dev/skills/hootandy321/dsh-agentlink/codex-dsh)
Your own site
<a href="https://agentmods.dev/skills/hootandy321/dsh-agentlink/codex-dsh"><img src="https://agentmods.dev/badge/skills/hootandy321/dsh-agentlink/codex-dsh.svg" alt="Measured on agentmods" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,126 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00036 $0.01126
Opus 5 $0.00018 $0.00563
Sonnet 5 $0.00007 $0.00225
Haiku 4.5 $0.00004 $0.00113

Measured 4d ago against content hash 2b00b248de34, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

codex-dsh 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 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.

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.

skill/codex-dsh/SKILL.md · 39 lines

How it starts

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

Codex to DSH collaboration

This skill operates the standalone Codex-side MCP bridge. The repository may be discovered under the broad dsh-plugin ecosystem topic, but it is not a DSH Cordis bundle and must not be installed with dsh plugin --profile ... add ....

Use the dsh_* MCP tools only with the user's already managed official DSH Web Host. The bridge is connect-only: never start, daemonize, stop, or reconfigure dsh web, and never modify DSH model settings during normal delegation.

Workflow

  1. Call dsh_host_status when Host availability is unknown. If unreachable, report the doctor/start command; do not start the Host yourself.
  2. Call dsh_delegate with a complete prompt and an existing absolute cwd. Omit model and normally omit agentPreset; the bridge's installation-time default owns that choice. agentPreset chooses DSH agent composition, not workspace ownership or verified sandbox policy. The shipped code preset keeps the standard capability set through DSH Code Mode and is the preferred default for implementation or multi-step tool work. Use the default exclusive-write workspace claim for edits, preferably on a dedicated git worktree; use read-only only as a bridge-local cooperative claim for tasks that should not mutate files. It does not make DSH run in a read-only filesystem sandbox. Keep the returned BridgeTask id and root session id.
  3. Treat BridgeTask, root session, and turn as distinct. A completed turn can be followed by another turn in the same root session.
  4. Use dsh_wait for at most 30 seconds, then dsh_tail with nextCursor. Do not poll raw per-session seq values or assume mux since resumes history.
  5. Before a write, retain the latest task cursor and connection revision, then pass them as sinceCursor and expectedRevision. Inspect stale_view changes instead of blindly retrying. Use dsh_followup(mode="queue") for a later turn and mode="steer" only when guidance must enter the active turn's next step.
  6. Inspect dsh_status.pendingInteractions. dsh_followup is not an answer channel.
  7. Answer questions only with dsh_answer_question and the exact pending request id/typed answers. Never infer sensitive credentials, publishing, or release answers.
  8. Treat every approval as sandbox escalation. Never auto-allow. Never auto-approve. Use dsh_resolve_approval(..., outcome="allow_once") only after the supervising user/Codex approval boundary; reject is the fail-closed response.
  9. Use dsh_cancel(scope="turn") to cancel only the active turn while preserving queue. Use scope="queue" only with a current queue snapshot and expect a non-atomic per-item result.
  10. Independently inspect DSH-produced files and test evidence before accepting the work. When collaboration is over, call dsh_release_workspace; this does not close the DSH session.

Read the full file on GitHub · 39 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. 4d ago First seen · 39 lines · 36 tokens per session scan A 2b00b248de34

Subscribe to this mod's changes

codex-dsh is a skill published in the GitHub repository hootandy321/dsh-Agentlink (8 stars, last pushed 10d ago), licensed MIT. It adds 36 tokens to every session and 1,126 once invoked, about $0.0002 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 skills, from other repositories

dsh-web-release

Release and publish the dsh-web monorepo (DSH Web GUI plugin family + skin collection) — bump all packages to one unified version, commit and tag (tags are cut from main after dev integration; dev is the integration branch), push the vX.Y.Z tag that triggers the GitHub Actions publish pipeline, and verify the npm…

zhu1090093659/dsh-web · 151 tokens

dsh-web-skin-developer

Build a new skin for the dsh-web skin collection (DSH Web GUI) and publish it into the Skin Center — the first-level settings section — scaffold with scripts/dsh-skin-new, author the v2 skin.json manifest plus skin.css token remap (pure asset directory, no package.json, no build step), validate with scripts/dsh-skin…

zhu1090093659/dsh-web · 120 tokens

dsh-web-pre-push-checks

Use before pushing, opening or updating a pull request, or claiming dsh-web checks pass. Selects the required repository gates and diff-specific generation, build, and GUI evidence.

zhu1090093659/dsh-web · 45 tokens

dsh-web-documentation

Use when adding or editing dsh-web README files, docs, AGENTS.md instructions, user-facing configuration text, or bilingual documentation pairs.

zhu1090093659/dsh-web · 34 tokens

dsh-sdk-upgrade

Safely select and install a compatible official @deepseek-ai SDK release for dsh plugin projects (dsh-web, dsh-trading, and similar monorepos) from npm using an isolated worktree, explicit cohort review, CI-equivalent validation, and controlled rollout — including syncing the project's declared DSH host-version floor…

zhu1090093659/dsh-web · 176 tokens

dsh-web-sdk-compatibility

Adapt and repair dsh-web after an approved official @deepseek-ai SDK/runtime cohort is selected or installed. Compare public API, type, service-injection, module-table, protocol, and behavior changes; map every change to repository consumers; implement the smallest fixes and durable compatibility contracts; handle…

zhu1090093659/dsh-web · 107 tokens