Mandu Deployment

Mandu Deployment is a skill for Claude Code, Codex from konamgil/mandu. It costs 11 tokens per session (889 once invoked), scanned A, original, MPL-2.0.

A deployment guide for Mandu applications, covering the approved process for planning, applying, checking, and repairing production deployments.

In plain words
What is it for?
Use it to plan and verify deployments and to create or update files such as Docker, Render, Fly.io, Vercel, or Netlify configuration when the deployment plan allows it.
Why use it?
It helps prevent unsafe deployments, missing previews, exposed secrets, and unverified changes to provider configuration.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to plan and verify deployments and to create or update files such as Docker, Render, Fly.io, Vercel, or Netlify configuration when the deployment plan allows it.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/konamgil/mandu/mandu-deployment
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.

Any agent
npx skills add konamgil/mandu --skill mandu-deployment
Clone the repo
git clone --depth 1 https://github.com/konamgil/mandu

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 Mandu Deployment

README.md
[![agentmods](https://agentmods.dev/badge/skills/konamgil/mandu/mandu-deployment.svg)](https://agentmods.dev/skills/konamgil/mandu/mandu-deployment)
Your own site
<a href="https://agentmods.dev/skills/konamgil/mandu/mandu-deployment"><img src="https://agentmods.dev/badge/skills/konamgil/mandu/mandu-deployment.svg" alt="Measured on agentmods" height="20"></a>
Per session 11 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 889 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00011 $0.00889
Opus 5 $0.00005 $0.00445
Sonnet 5 $0.00002 $0.00178
Haiku 4.5 $0.00001 $0.00089

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

Security

Grade A, and why

Mandu Deployment 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.

docs/archive/skills/mcp-v0/mandu-deployment/SKILL.md · 136 lines

How it starts

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

Mandu Deployment Skill

Mandu 앱을 프로덕션 환경에 안전하고 효율적으로 배포하기 위한 가이드입니다.

Agent Workflow Contract

This skill is a Domain addendum. It must not replace mandu-agent-workflow. Use it only after mandu.agent.plan selects the deploy domain.

Canonical workflow step: plan -> apply -> verify.

Preferred MCP tools:

Step Tools
plan mandu.agent.plan, mandu.deploy.plan
apply mandu.agent.apply, mandu.deploy.compile
verify mandu.agent.verify, mandu.deploy.preview
repair mandu.agent.repair

Allowed file edits:

  • .mandu/deploy.intent.json
  • Provider artifacts named in the plan, such as render.yaml, Dockerfile, docker-compose.yml, fly.toml, vercel.json, or netlify.toml
  • CI workflow files only when deploy automation is explicitly requested

Verification command:

mandu agent verify --changed --json --write

Common failures:

  • Executing a provider deploy before a dry-run or preview step
  • Writing secrets into tracked config
  • Changing provider artifacts without route/deploy intent verification

Repair path:

mandu agent repair --from .mandu/agent-verify.json --json

핵심 원칙

  1. Bun 네이티브: Bun 런타임과 번들러를 최대한 활용
  2. 환경 분리: 개발/스테이징/프로덕션 환경 명확히 구분
  3. 자동화: CI/CD를 통한 일관된 배포 프로세스
  4. 보안 우선: 민감 정보는 환경 변수로 관리

Provider Artifact Examples

Use these examples only after mandu.agent.plan selects the deploy domain and mandu.agent.apply has produced the intended action order.

Render 배포 (권장)

# render.yaml
services:
  - type: web
    name: mandu-app
    runtime: node
    buildCommand: bun install && bun run build
    startCommand: bun run start
    envVars:
      - key: NODE_ENV
        value: production
      - key: BUN_ENV
        value: production

Docker 배포

FROM oven/bun:1.3.14

WORKDIR /app
COPY package.json bun.lockb ./
RUN bun install --frozen-lockfile --production

COPY . .
RUN bun run build

EXPOSE 3000
CMD ["bun", "run", "start"]

Read the full file on GitHub · 136 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 · 136 lines · 11 tokens per session scan A 731a4d191c56

Subscribe to this mod's changes

Mandu Deployment is a skill published in the GitHub repository konamgil/mandu (46 stars, last pushed 11d ago), licensed MPL-2.0. It adds 11 tokens to every session and 889 once invoked, about $0.0001 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.