task-composer CLAUDE.md

task-composer CLAUDE.md is an instructions file for Claude Code from HNakamura33/task-composer. It costs 3,588 tokens per session, scanned A, original, Apache-2.0.

Project instructions for learning Rust while building a task-management library based on a directed acyclic graph, a structure where tasks can depend on earlier tasks without forming cycles. The instructions favor hints and explanations over writing code for the learner.

In plain words
What is it for?
Use them to explain Rust concepts, work through compiler errors, build the library gradually, and encourage tests.
Why use it?
They turn implementation errors and new Rust concepts into guided learning steps rather than simply supplying finished code.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; mentions subagents; mentions Claude Code.

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 instructions/hnakamura33/task-composer/claude-md
Clone the repo
git clone --depth 1 https://github.com/HNakamura33/task-composer

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 task-composer CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/hnakamura33/task-composer/claude-md.svg)](https://agentmods.dev/instructions/hnakamura33/task-composer/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/hnakamura33/task-composer/claude-md"><img src="https://agentmods.dev/badge/instructions/hnakamura33/task-composer/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,588 This file is loaded in full into every session.
When invoked 3,588 The same file — it is already loaded in full.
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.1 $0.03588 $0.03588
Opus 5 $0.01794 $0.01794
Sonnet 5 $0.00718 $0.00718
Haiku 4.5 $0.00359 $0.00359

Measured yesterday against content hash 925adc29f8ad, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

task-composer CLAUDE.md 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 yesterday.

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.

CLAUDE.md · 277 lines

How it starts

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

Task Composer

DAGベースのタスク管理ライブラリ(Rust学習プロジェクト)

Claudeへの指示

このプロジェクトはRust学習を目的としています。以下の点を意識してサポートしてください:

  • コードを直接書かない: ヒントやシグネチャを提示し、ユーザーが自分で実装できるようガイドする
  • 概念を説明する: 新しいRustの概念が出てきたら、図や例を使って分かりやすく説明する
  • エラーを学習機会に: コンパイルエラーが出たら、なぜそのエラーが起きるのかを丁寧に解説する
  • 段階的に進める: 一度に大量のコードを提示せず、小さなステップで進める
  • 質問を促す: ユーザーが理解を深められるよう、適宜質問を投げかける
  • テストを重視: 実装後は必ずテストを書くよう促す

プロジェクト概要

有向非巡回グラフ(DAG)を使ってタスクの依存関係を管理するRustライブラリ。

構造

task-composer/
├── Cargo.toml                   # ワークスペース定義
├── LICENSE                      # Apache 2.0
├── README.md
├── CLAUDE.md                    # このファイル
├── task-composer-core/          # コアライブラリ
│   ├── Cargo.toml
│   └── src/
│       ├── lib.rs
│       ├── types.rs             # 型定義(Task, Role, Config等)
│       ├── path_resolver.rs     # パス参照・埋め込み参照の解決
│       ├── dag/                 # DAG実装
│       │   ├── mod.rs
│       │   └── tests.rs
│       ├── checkpoint/          # チェックポイント機能
│       │   ├── mod.rs
│       │   └── writer.rs
│       ├── task_executor/       # Executor実装
│       │   ├── mod.rs
│       │   ├── log_executor.rs
│       │   ├── mcp_executor.rs
│       │   ├── dag_executor.rs
│       │   ├── bash_executor.rs
│       │   ├── data_executor.rs
│       │   ├── git_executor.rs
│       │   ├── github_executor.rs
│       │   ├── map_executor.rs
│       │   ├── filter_executor.rs
│       │   └── reduce_executor.rs
│       └── analysis/            # 静的解析
│           ├── mod.rs
│           ├── dag_analysis.rs
│           ├── task_validation.rs
│           └── conflict/
├── task-composer-cli/           # CLIツール
│   ├── Cargo.toml
│   └── src/
│       ├── main.rs
│       └── signal.rs            # シグナルハンドリング
├── task-composer-ui/            # Dioxus UI(Desktop/Web/TUI)
│   ├── Cargo.toml
│   ├── Dioxus.toml
│   └── src/
│       ├── main.rs
│       ├── tui_main.rs
│       ├── components/          # UIコンポーネント
│       ├── hooks/               # カスタムフック
│       └── state/               # 状態管理
├── mcp_servers/
│   └── claude_code_mcp/
│       ├── main.py              # FastMCPサーバー
│       └── pyproject.toml
└── samples/                     # サンプルDAGファイル
    ├── basics/                  # 基本サンプル
    │   ├── minimal.json
    │   ├── simple_dag.json
    │   ├── auto_dependency.json
    │   └── embedded_reference.json
    ├── executors/               # Executor別サンプル
    │   ├── bash.json
    │   ├── data.json
    │   ├── git/
    │   ├── github/
    │   └── mcp/
    ├── features/                # 機能別サンプル
    │   ├── condition/           # if/else条件
    │   ├── loop/                # ループ実行
    │   └── subgraph/            # サブグラフ
    └── workflows/               # ワークフローサンプル

Read the full file on GitHub · 277 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. yesterday First seen · 277 lines · 3,588 tokens per session scan A 925adc29f8ad

Subscribe to this mod's changes

task-composer CLAUDE.md is an instructions file published in the GitHub repository HNakamura33/task-composer (4 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 3,588 tokens to every session, about $0.0179 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-04.