Tadado: Instructions file for Claude Code

CLAUDE.md

Tadado CLAUDE.md is an instructions file for Claude Code from HananxR/Tadado. It costs 1,155 tokens per session, scanned A, original, MIT.

A project instruction file for Tadado, a Windows task-management application written in Python with a graphical interface, Markdown tasks, a SQLite database, full-text search, and a calendar heatmap.

In plain words
What is it for?
Use it when developing, documenting, versioning, or testing Tadado.
Why use it?
It tells coding agents how to change the application while keeping its design documents, help manual, version data, and release rules consistent.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

This is HananxR/Tadado's own configuration. It tells Claude Code how to work on Tadado itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Tadado configures →

Reuse

Borrowing it

Nothing to install: this file belongs to HananxR/Tadado. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/HananxR/Tadado/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/HananxR/Tadado

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 Tadado CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/hananxr/tadado/claude-md.svg)](https://agentmods.dev/instructions/hananxr/tadado/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/hananxr/tadado/claude-md"><img src="https://agentmods.dev/badge/instructions/hananxr/tadado/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,155 This file is loaded in full into every session.
When invoked 1,155 The same file — it is already loaded in full.
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.01155 $0.01155
Opus 5 $0.00577 $0.00577
Sonnet 5 $0.00231 $0.00231
Haiku 4.5 $0.00115 $0.00115

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

Security

Grade A, and why

Tadado 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 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.

CLAUDE.md · 84 lines

How it starts

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

CLAUDE.md

Tadado 项目指导文件。详细设计文档见 DESIGN.md,更新日志见 CHANGELOG.md

项目概览

Tadado — Windows 桌面任务管理工具,Python 3.10 + PySide6,Markdown 语法定义任务,SQLite + FTS5 存储,配备日历热力图。

工作流程

功能优化 → 文档同步

软件功能优化/新增/修改后,必须同步更新以下关联文档,确保与软件实际功能一致、术语使用一致:

文件 说明
DESIGN.md 详细设计说明,记录功能模块需求与实现方案
CLAUDE.md 项目指导文件(本文件),运行时 AI 指令
resources/help/manual.html 用户帮助手册,面向最终用户

提交流程:文档更新完成后自动执行 git add + git commit(commit message 以 docs: 开头)。

version.py 动态修改判定

src/version.py 是公开 API,数据已拆到 src/_version_data.py

  • 数据文件 _version_data.py__version__ 值、_RELEASE_HIGHLIGHTS 字典 — 发版时由 generate_db.bat 更新
  • 逻辑文件 version.pyget_version()parse_version()get_release_highlights() 等函数 — 不再因发版而被修改

规则

  • 仅数据变更(如改版本号、增删 highlights 条目)→ 不自动 commit,留给发版流程统一提交
  • 逻辑变更(如新增/修改函数、调整解析规则)→ 自动 commit

CHANGELOG.md 更新规则

  • 触发条件:仅在用户明确要求"发版"或"发布新版本"时才更新 CHANGELOG.md
  • 提交流程:更新后不自动 commit,等待用户确认后再提交
  • 日常功能优化不更新 CHANGELOG.md,只需更新 DESIGN.md 和 manual.html

常用命令

# 环境
uv venv --python 3.10 .venv && uv sync --dev

# 运行
uv run python main.py                              # GUI
uv run python main.py --cli list                   # CLI(详见 src/cli/ 与 .claude/skills/tadado/SKILL.md)

# 测试
uv run pytest                                      # 全部用例(当前 131+)
uv run pytest -k "round_trip"                      # 关键字匹配

# 代码质量
uv run black src/ tests/ && uv run ruff check src/ tests/

CLI 通道(v0.2.7+)

  • tadado-cli.exe(打包版)/ uv run python main.py --cli(开发版)提供 12 个命令: list / today / add / edit / done / rm / tags / partitions / archive / recurrence / reminder / export
  • GUI 运行时 CLI 经本地管道转发(单一写者),未运行时 headless 直写
  • Claude Code skill 位于 .claude/skills/tadado/SKILL.md,是 CLI 的 AI 操作手册
  • src/cli/commands.py 是命令执行核心,GUI 管道处理(src/app.py)与 headless 共用

架构摘要

四层:src/ui/src/services/src/models/ → SQLite,模块间通过 SignalBussrc/utils/signal_bus.py)Qt 信号解耦通信。

Read the full file on GitHub · 84 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 · 84 lines · 1,155 tokens per session scan A fad2f171e250

Subscribe to this mod's changes

Tadado CLAUDE.md is an instructions file published in the GitHub repository HananxR/Tadado (23 stars, last pushed 22d ago), licensed MIT. It adds 1,155 tokens to every session, about $0.0058 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.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens