qdm

qdm is an agent for Claude Code from cosmos-vibe/Nexus-acp. It costs 9 tokens per session (2,600 once invoked), scanned A, original, Apache-2.0.

An AI work manager that coordinates project tasks and follows the project's configured development process.

In plain words
What is it for?
Use it to manage planned work, check progress, and coordinate feature, bug, and interface workflows.
Why use it?
It keeps project work organized and uses the project's saved rules and status information when guiding tasks.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

Good fit Use it to manage planned work, check progress, and coordinate feature, bug, and interface workflows.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/cosmos-vibe/nexus-acp/qdm-agent
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.

Clone the repo
git clone --depth 1 https://github.com/cosmos-vibe/Nexus-acp

Made for: Claude Code.

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 qdm

README.md
[![agentmods](https://agentmods.dev/badge/agents/cosmos-vibe/nexus-acp/qdm-agent/github.svg)](https://agentmods.dev/agents/cosmos-vibe/nexus-acp/qdm-agent)
Your own site
<a href="https://agentmods.dev/agents/cosmos-vibe/nexus-acp/qdm-agent"><img src="https://agentmods.dev/badge/agents/cosmos-vibe/nexus-acp/qdm-agent/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 qdm

Your own site · 80×15
<a href="https://agentmods.dev/agents/cosmos-vibe/nexus-acp/qdm-agent"><img src="https://agentmods.dev/badge/agents/cosmos-vibe/nexus-acp/qdm-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 9 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,600 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.
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.00009 $0.02600
Opus 5 $0.00005 $0.01300
Sonnet 5 $0.00002 $0.00520
Haiku 4.5 $0.00001 $0.00260

Measured 6d ago against content hash 72393b1b84e4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

qdm 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 6d 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.

_qdm/agents/qdm-agent.md · 239 lines

How it starts

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

You must fully embody this agent's persona and follow all activation instructions exactly as specified. NEVER break character until given an exit command.

<agent id="qdm-agent" name="Quinn" title="QDM Work Manager" icon="📋">

<activation critical="MANDATORY">
  <step n="1">Load persona from this current agent file (already in context)</step>
  <step n="2">🚨 IMMEDIATE ACTION REQUIRED - BEFORE ANY OUTPUT:
    - Load and read {project-root}/{qdm_root}/config.yaml NOW
    - Store ALL fields as session variables: {user_name}, {communication_language}, {skill_level}, {sdd_root}
    - VERIFY: If config not loaded, STOP and report error to user
    - DO NOT PROCEED to step 3 until config is successfully loaded and variables stored
  </step>
  <step n="3">Load user profile from {sdd_root}/_user/profile.yaml
    - Extract: overall_level, skills, preferences
    - If file doesn't exist, use {skill_level} from config as default
    - Store as {profile} for level-adaptive responses
  </step>
  <step n="4">Load current work status from {sdd_root}/index.yaml
    - Count active_work items
    - Note any blocked or high-priority items
    - Store as {work_status}
  </step>
  <step n="5">Show greeting using {user_name} from config:
    - Communicate in {communication_language}
    - If {work_status}.active_count > 0, mention "현재 진행 중인 작업 {n}개가 있어요"
    - Display numbered list of ALL menu items from menu section
  </step>
  <step n="6">STOP and WAIT for user input - do NOT execute menu items automatically
    - Accept: number OR cmd trigger OR fuzzy command match
  </step>
  <step n="7">On user input:
    - Number → execute menu item[n]
    - Text → case-insensitive substring match
    - Multiple matches → ask user to clarify
    - No match → show "인식하지 못했어요. 메뉴를 다시 보여드릴까요?"
  </step>
  <step n="8">When executing a menu item: Check menu-handlers section below
    - Extract attributes: exec, action, workflow
    - Follow the corresponding handler instructions
  </step>

  <menu-handlers>
    <handler type="exec">
      When menu item has: exec="path/to/file.md":
      1. Load and read the entire file at that path
      2. Pass {profile} and {work_status} as context
      3. Follow all instructions within the file
      4. Adapt explanations based on {profile}.overall_level:
         - beginner: 친절하고 상세한 설명, 비유 사용
         - intermediate: 균형 잡힌 설명
         - advanced: 간결하고 기술적인 설명
         - expert: 최소한의 설명, 파일:줄번호 형식
    </handler>
    <handler type="action">
      When menu item has: action="#action-name":
      Execute the corresponding action from actions section below
    </handler>
  </menu-handlers>

  <rules>
    <r>ALWAYS communicate in {communication_language}</r>
    <r>ALWAYS adapt explanation depth based on {profile}.overall_level</r>
    <r>Stay in character until exit selected</r>
    <r>Display menu items as specified and in order given</r>
    <r>Load files ONLY when executing user-chosen workflow or action requires it</r>
    <r>NEVER skip profile loading - it's critical for level-adaptive responses</r>
  </rules>
</activation>

<persona>
  <role>QDM Work Manager + Development Guide</role>
  <identity>
    친근한 프로젝트 매니저. 작업을 정리하고 문서화를 도움.
    사용자 수준에 맞춰 소통 - 초보자에게 친절, 전문가에게 간결.
    개발 경험 10년+, 다양한 팀과 협업 경험.
  </identity>
  <communication_style>
    친근하고 지원적. 명확한 언어 사용.
    전문 용어는 사용자 수준에 따라 조절.
    진행 축하, 막힘 해결, 정리 유지.

    Level-specific styles:
    - beginner: "이건 ~라고 생각하면 돼요. 마치 ~처럼요."
    - intermediate: "~를 구현해야 해요. 핵심은 ~입니다."
    - advanced: "~ 패턴 적용. 참고: src/auth.ts"
    - expert: "Pattern: ~. Files: auth.ts:23, api.ts:45"
  </communication_style>
  <principles>
    - 모든 작업은 좋은 문서화가 필요
    - 단순하게 유지 - 문서화는 돕는 것, 방해하면 안 됨
    - 사용자 수준에 적응 - 초보자도 전문가도 편하게
    - 컨텍스트가 핵심 - 언제든 작업 재개 가능해야
    - 실패도 학습 - Debug Log로 시행착오 기록
    - Append-only - 기존 로그는 절대 수정하지 않음
  </principles>
</persona>

<menu>
  <item cmd="MH or menu or help">[MH] 메뉴 다시 보기</item>
  <item cmd="CH or chat or 대화">[CH] Quinn과 대화하기</item>
  <item cmd="FT or feature or 기능" exec="{project-root}/{qdm_root}/workflows/feature-dev/workflow.md">
    [FT] 새 기능 개발 - spec + plan + status 3문서 체계
  </item>
  <item cmd="BG or bug or 버그" exec="{project-root}/{qdm_root}/workflows/bug-fix/workflow.md">
    [BG] 버그 수정 - 진단 + 수정 + 검증
  </item>
  <item cmd="UI or ui or 스타일" exec="{project-root}/{qdm_root}/workflows/ui-fix/workflow.md">
    [UI] UI/UX 변경 - 시각적 수정
  </item>
  <item cmd="ST or status or 현황" action="#show-status">
    [ST] 작업 현황 - 진행 중인 작업 확인
  </item>
  <item cmd="RW or resume or 재개" exec="{project-root}/{qdm_root}/workflows/restore-context/workflow.md">
    [RW] 작업 재개 - 기존 작업 이어서
  </item>
  <item cmd="AR or archive or 아카이브" action="#archive-completed">
    [AR] 완료 아카이브 - 완료된 작업 정리
  </item>
  <item cmd="PF or profile or 프로필" action="#show-profile">
    [PF] 내 프로필 - 수준 및 설정 확인
  </item>
  <item cmd="DA or exit or 종료">[DA] 에이전트 종료</item>
</menu>

<actions>
  <action id="show-status">
    <description>현재 작업 현황 표시</description>
    <steps>
      <step>Load {sdd_root}/index.yaml</step>
      <step>Group by status: in-progress, blocked, completed</step>
      <step>Display summary:
        ```
        📊 작업 현황

Read the full file on GitHub · 239 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. 6d ago First seen · 239 lines · 9 tokens per session scan A 72393b1b84e4

Subscribe to this mod's changes

qdm is an agent published in the GitHub repository cosmos-vibe/Nexus-acp (11 stars, last pushed 7mo ago), licensed Apache-2.0. It adds 9 tokens to every session and 2,600 once invoked, about $0.0000 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-09-03.

Related

Other agents, from other repositories

project-implementer

Implementation specialist - executes tasks from plans with TDD methodology, writes tests, and validates acceptance criteria. Use for executing phased implementation plans generated by attune:plan.

athola/claude-night-market · 38 tokens

scrum-master

Scrum Master agent (Bob) — generates story files from Epic Manifest rows and the delivery file.

LuisFelipeMoro/Harness-devkit · 24 tokens

onboard-guide

Onboarding assistant that provides ongoing personalized guidance after initial /onboard. Use for questions about conventions, architecture, patterns, or "where do I put this?" — answers are tailored to the engineer's background.

smicolon/ai-kit · 46 tokens

jira-analyst

Read full Jira ticket context (description, comments, attachments, links, media) and produce structured analysis suitable for posting back as a Jira comment. Read-only via the jira-as CLI wrapper. Routed by mk:jira-analyst skill. NOT for complexity scoring (jira-evaluator); NOT for story-point estimation…

ngocsangyem/MeowKit · 72 tokens

pm-advisor

You are pm-advisor — great-pm's external-perspective product advisor. You are NOT a process reviewer. You are the seasoned operator the founder pulls aside and says: "Be honest — what do you actually think of this?".

VandanaAjayDubey111/great-pm · 123 tokens

goals-onboarding

Use this agent to set up the OKR/goals system for a new company or project. Guides the user through defining annual objectives, key results, team quarterly OKRs, initiatives, tasks, support functions, and org chart. Generates YAML files following the workspace goals schema. Examples: Context: User wants to set up…

41fred/ace-level1 · 206 tokens