dd-setup

dd-setup is a skill for Claude Code, Codex from CaesiumY/dding-dong. It costs 85 tokens per session (3,974 once invoked), scanned A, original, MIT.

An interactive setup wizard for configuring dding-dong desktop notifications. It detects the operating system and available sound and notification tools, checks settings, and guides the initial setup.

In plain words
What is it for?
Use it for first-time installation or configuration, choosing global, project, or local settings, validating configuration, or resetting the setup.
Why use it?
It avoids guessing which notification tools are installed and helps choose workable settings when some are unavailable.

Skill for Claude CodeCodex

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the dding-dong plugin — 12 skills, 4 hooks shipped together

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/caesiumy/dding-dong/dd-setup
Any agent
npx skills add CaesiumY/dding-dong --skill dd-setup
Clone the repo
git clone --depth 1 https://github.com/CaesiumY/dding-dong

Made for: Claude Code, Codex.

Or install dding-dong, the plugin that ships this one along with the rest of its 12 skills, 4 hooks.

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 dd-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/caesiumy/dding-dong/dd-setup.svg)](https://agentmods.dev/skills/caesiumy/dding-dong/dd-setup)
Your own site
<a href="https://agentmods.dev/skills/caesiumy/dding-dong/dd-setup"><img src="https://agentmods.dev/badge/skills/caesiumy/dding-dong/dd-setup.svg" alt="Measured on agentmods" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,974 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.00085 $0.03974
Opus 5 $0.00043 $0.01987
Sonnet 5 $0.00017 $0.00795
Haiku 4.5 $0.00009 $0.00397

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

Security

Grade A, and why

dd-setup 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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/setup-meta.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/dd-setup/SKILL.md · 347 lines

How it starts

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

dding-dong 설정 마법사

사용자의 환경을 확인하고 dding-dong 알림 플러그인을 설정합니다.

플래그 파싱

$ARGUMENTS에서 플래그를 확인합니다:

  • --help: 아래 사용법을 출력하고 종료합니다.

    dding-dong 설정 마법사
    
    사용법: /dding-dong:dd-setup [옵션]
    
    옵션:
      --scope global|project|local  설치 범위 지정 (2단계 건너뜀)
      --force                       기존 설정 무시, 전체 재설정
      --help                        이 도움말 표시
    
  • --scope <값>: global, project, local 중 하나. 지정 시 2단계(스코프 선택)를 건너뛰고 해당 스코프로 진행합니다.

  • --force: Pre-Setup Check를 건너뛰고 바로 "전체 재설정" 모드로 진행합니다.

실행 순서

1단계: Pre-Setup Check + 환경 감지

아래 명령어를 실행하여 환경을 감지합니다:

node "${CLAUDE_PLUGIN_ROOT}/scripts/setup-wizard.mjs" detect --cwd "$(pwd)"

결과 JSON을 파싱하여 사용자에게 한국어로 안내합니다:

  • "플랫폼: [macOS/Linux/WSL] 감지됨"
  • "사운드 플레이어: [이름] 사용 가능" 또는 "사운드 플레이어를 찾을 수 없습니다"
  • "알림 도구: [이름] 사용 가능" 또는 "알림 도구를 찾을 수 없습니다"

Graceful Degradation:

  • 사운드 플레이어가 없으면: "사운드 재생기를 찾을 수 없습니다." 안내 (정보 메시지만, 플래그 설정은 3단계에서 처리)
  • 알림 도구가 없으면: "OS 알림 도구를 찾을 수 없습니다." 안내 (정보 메시지만, 플래그 설정은 3단계에서 처리)
  • 둘 다 없으면: "터미널 벨을 사용합니다." 안내 후 sound.enabled: false, notification.enabled: false로 설정하고 3단계를 건너뜁니다
  • 감지 자체가 실패하면 기본값으로 조용히 계속 진행

WSL에서 wsl-notify-send가 없으면:

Pre-Setup Check (기존 설정 감지):

--force 플래그가 있으면 이 단계를 건너뛰고 "전체 재설정" 모드로 2단계에 진행합니다.

existingConfig 필드를 확인하여:

  • 기존 설정이 있으면 (global.exists, project.exists, projectLocal.exists 중 하나라도 true):

    기존 dding-dong 설정이 발견되었습니다.
    - 전역 설정: ~/.config/dding-dong/config.json [존재/없음]
    - 프로젝트 설정: .dding-dong/config.json [존재/없음]
    - 내 설정: .dding-dong/config.local.json [존재/없음]
    

    구버전 업그레이드 감지:

    기존 설정이 발견된 경우, detect 결과의 setupVersionpluginVersion 필드를 비교합니다:

    • setupVersionnull → "이전 버전에서 업그레이드된 설정이 감지되었습니다. 설정을 업데이트하면 최신 기능을 활용할 수 있습니다."
    • setupVersionpluginVersion이 다름 → "dding-dong이 v{setupVersion}에서 v{pluginVersion}으로 업데이트되었습니다. 설정을 업데이트하여 새 기능을 반영할 수 있습니다."
    • 버전이 같음 → 별도 안내 없음

    이 안내는 정보 제공만 하며, 이후 AskUserQuestion 흐름을 변경하지 않습니다.

Read the full file on GitHub · 347 lines

Files

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.

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 · 347 lines · 85 tokens per session scan A 8c1dafae57ab

Subscribe to this mod's changes

dd-setup is a skill published in the GitHub repository CaesiumY/dding-dong (2 stars, last pushed 6mo ago), licensed MIT. It adds 85 tokens to every session and 3,974 once invoked, about $0.0004 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

engram

Read and write the project's durable reasoning memory (decisions, principles, cautions, problems, insights) through the Engram MCP tools. Recall relevant memory before non-trivial work; capture only durable, high-value knowledge silently at natural stopping points; keep the graph honest (judge suspects, close answered…

techtheist/engram · 78 tokens

engram-digest

Seed or top up this project's Engram graph from the existing codebase — an explicit, user-invoked digestion of the current working tree into typed memory nodes (decisions, principles, cautions, problems, insights, intents). Use when the user says "digest this project", "ingest the codebase into memory", "seed the…

techtheist/engram · 98 tokens

persona-triggers

페르소나 v5 트리거 상세(AT 20패턴 + 15관점 매핑·매칭 예시). 관점·객관적·철저·깊이·검증·추천·디버깅·방향·진행·근거·출처·사례·팩트·증거 등 트리거 단어 감지 시 상세 참조.

sodam-ai/SoDam-Persona · 91 tokens

persona-format

페르소나 v5 L2/L3 응답 형식 — 15관점 활성·문제해결 절차·7섹션 템플릿·자가검증·fail-safe·금지원칙. 코드 변경·디버깅·구현 등 L2/L3 작업 시 로드.

sodam-ai/SoDam-Persona · 71 tokens

persona-marketer

15년+ 마케팅·세일즈 전문가 페르소나(#15) 깊은 도메인. 마케팅·세일즈·카피·콘텐츠·SEO·광고·랜딩페이지·전환·퍼널·브랜딩·포지셔닝·리드·캠페인·리텐션·그로스·어카운트·컨설팅 맥락 시 활성.

sodam-ai/SoDam-Persona · 94 tokens

persona-safety

페르소나 v5 안전 작업 — 보안 always-on·비가역 작업 게이트·코드 메타규칙·모바일 UI(375px) 검증·외부도구 도입검토. 코드/UI/보안/배포/삭제/force push 작업 시 로드.

sodam-ai/SoDam-Persona · 69 tokens