dev-receive-task

dev-receive-task is a skill for Claude Code, Codex from elvezjp/ixv-agents. It costs 82 tokens per session (2,345 once invoked), scanned A, original, MIT.

A task-intake procedure for developers working in numbered tmux panes. It identifies the developer, reads that developer’s task YAML file, checks required fields, and clarifies the work and completion conditions.

In plain words
What is it for?
Use it when a task manager wakes a developer or after recovering from a context compaction. It helps inspect the assigned YAML task, validate its format, understand dependencies, and confirm expected inputs and outputs.
Why use it?
It prevents a developer from reading another developer’s task or starting with incomplete instructions. It also provides a way to report missing or blocked work to the task manager.

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/elvezjp/ixv-agents/dev-receive-task
Any agent
npx skills add elvezjp/ixv-agents --skill dev-receive-task
Clone the repo
git clone --depth 1 https://github.com/elvezjp/ixv-agents

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 dev-receive-task

README.md
[![agentmods](https://agentmods.dev/badge/skills/elvezjp/ixv-agents/dev-receive-task.svg)](https://agentmods.dev/skills/elvezjp/ixv-agents/dev-receive-task)
Your own site
<a href="https://agentmods.dev/skills/elvezjp/ixv-agents/dev-receive-task"><img src="https://agentmods.dev/badge/skills/elvezjp/ixv-agents/dev-receive-task.svg" alt="Measured on agentmods" height="20"></a>
Per session 82 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,345 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.00082 $0.02345
Opus 5 $0.00041 $0.01172
Sonnet 5 $0.00016 $0.00469
Haiku 4.5 $0.00008 $0.00234

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

Security

Grade A, and why

dev-receive-task 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 5d 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.

skills/dev-receive-task/SKILL.md · 234 lines

How it starts

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

Dev Receive Task

queue/tasks/dev{N}.yaml を読み取り、SPEC.md 2.3.3 スキーマに基づいてタスク内容を確認し、作業に最適なペルソナを設定する。

When to Use

  • SMから send-keys で起こされた時(最初に実行するスキル
  • コンパクション復帰後にタスクを再確認する時

Instructions

Step 1: 自分の番号を確認

tmux display-message -p '#W'
出力 Dev番号 ペイン
dev1 Dev1 ixv-agents:0.2
dev2 Dev2 ixv-agents:0.3
dev3 Dev3 ixv-agents:0.4

Step 2: タスクYAML を読み取り

自分専用の queue/tasks/dev{N}.yaml を読み取る。

queue/tasks/dev1.yaml  ← Dev1はこれだけ
queue/tasks/dev2.yaml  ← Dev2はこれだけ
queue/tasks/dev3.yaml  ← Dev3はこれだけ

他のDevのファイルは読まないこと。

Step 3: フィールドを検証

以下の必須フィールドが全て存在するか確認する:

Field Required 検証ルール
task_id required TASK-YYYYMMDD-### 形式
spec_ref required README.md または README.md#section
assignee required 自分のDev番号(dev1dev3
type required dev または doc
summary required 140文字以内推奨
definition_of_done required 1件以上

必須フィールドが欠けている場合: SMに status: blocked で報告する。

Step 4: タスク内容を解析

  1. summary から作業の全体像を把握
  2. definition_of_done を完了条件として明確に理解(これが合格基準)
  3. inputs を参照して関連ファイルや前提を確認
  4. outputs で期待される成果物を確認

Step 4.5: 依存タスクの状態確認(dependencies がある場合のみ)

SPEC.md §2.5.3 / §2.5.4 に基づく必須検証dependencies が空でない場合、作業を開始する前に以下を Step として実行 すること。 詳細は ../references/dependency-validation.md を参照。

検証手順

dep_task_id について、queue/reports/{dep_task_id}.yaml を読み取り status を確認する。

# 例: TASK-20260201-001 の状態を確認
cat queue/reports/TASK-20260201-001.yaml | grep '^status:'

レポートが 存在しない 場合は「未着手 or in_progress」と判定する。

状態別の判定(SPEC.md §2.5.3 と同期)
依存先 status Dev の対応
done 受領可、Step 5 へ進む
in_progress(report 不在含む) 依存先完了まで待機、または status: blocked で報告
blocked status: blocked で再報告
needs_review status: blocked で再報告
不在(task_id 自体が存在しない) status: blocked で報告
違反時の挙動

依存先のいずれかが done 以外(または不在)の場合:

Read the full file on GitHub · 234 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. 5d ago First seen · 234 lines · 82 tokens per session scan A d15a90f6ae1d

Subscribe to this mod's changes

dev-receive-task is a skill published in the GitHub repository elvezjp/ixv-agents (5 stars, last pushed 27d ago), licensed MIT. It adds 82 tokens to every session and 2,345 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

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

imagegen

Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…

openai/codex · 113 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens