personal-todo

personal-todo is a skill for Claude Code, Codex from hydah/thequeen. It costs 102 tokens per session (1,083 once invoked), scanned A, original, MIT.

A Markdown-based personal task system for Obsidian, with separate files for today's work, unfinished tasks, completed tasks, and postponed or cancelled items.

In plain words
What is it for?
Use it to view today's work, add or complete tasks, manage priorities, clear a backlog, turn discussion outcomes into actions, and perform a daily reset.
Why use it?
It keeps short-term tasks easy to find and prevents unfinished work from being mixed with completed or abandoned items.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to view today's work, add or complete tasks, manage priorities, clear a backlog, turn discussion outcomes into actions, and perform a daily reset.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hydah/thequeen/personal-todo
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.

Any agent
npx skills add hydah/thequeen --skill personal-todo
Clone the repo
git clone --depth 1 https://github.com/hydah/thequeen

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 personal-todo

README.md
[![agentmods](https://agentmods.dev/badge/skills/hydah/thequeen/personal-todo.svg)](https://agentmods.dev/skills/hydah/thequeen/personal-todo)
Your own site
<a href="https://agentmods.dev/skills/hydah/thequeen/personal-todo"><img src="https://agentmods.dev/badge/skills/hydah/thequeen/personal-todo.svg" alt="Measured on agentmods" height="20"></a>
Per session 102 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,083 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.00102 $0.01083
Opus 5 $0.00051 $0.00541
Sonnet 5 $0.00020 $0.00217
Haiku 4.5 $0.00010 $0.00108

Measured 7d ago against content hash 0dc825e99f19, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

personal-todo 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 7d 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.

starter-skills/personal-todo/SKILL.md · 112 lines

What it actually says

Personal Todo

Overview

将短周期任务放在 todo/ 这个运行层目录里管理。核心目标不是做复杂的项目管理系统,而是用最少文件、最少规则、最顺手的 Markdown 推进日常工作。

维护 4 个主文件 + 1 个导航入口:

  • todo/today.md:今天真正要推进的事
  • todo/pending.md:还没做完、但需要继续跟踪的任务池
  • todo/completed.md:已完成记录,按日期从新到旧追加
  • todo/archive.md:搁置或取消的事项
  • index/todo.md:Obsidian 导航入口

When to Use

  • 用户想看今天应该做什么
  • 用户想新增、完成、搁置、取消或调整任务优先级
  • 用户想把讨论产出的行动项转成待办
  • 用户说"记一个待办"、"帮我记"、"提醒我"、"别忘了"等

Workspace Contract

格式约定

  • 优先使用 Markdown checklist:- [ ] 任务描述 |P1|记录于:YYYY-MM-DD
  • today.md 始终原地更新,不按日期新建多个文件
  • pending.md 只放未完成项
  • completed.md 只放完成项,按日期追加,最新在最上
  • archive.md 只放搁置/取消项

优先级

  • P0:今天必须推进
  • P1:应该推进,当前主线
  • P2:有余力再做

Workflow

Step 0: 日期校验(每次操作前必须执行)

  1. 读取 todo/today.md,提取标题中的日期
  2. 与当前日期对比
  3. 日期不匹配 → 先执行 Step 5(每日刷新)

Step 1: 确认已初始化

检查 todo/today.md 等文件是否存在,缺失则创建。

Step 2: 查看今日待办

  1. 读取 todo/today.md
  2. 按 P0/P1/P2/今日已完成 四段输出
  3. 同时读取 todo/pending.md,列出不在 today 中的补充
  4. 输出完成率

Step 3: 添加任务

  1. 判断优先级(默认 P1)
  2. 默认同时写入 today.mdpending.md
  3. 用户说"明天/不急/排期" → 只写 pending.md

Step 4: 完成任务

  1. today.md 删除,移到"今日已完成"
  2. pending.md 删除
  3. 追加到 completed.md 对应日期下

Step 5: 每日刷新

当日期不匹配时自动执行:

  1. 提取旧 today 的未完成项和已完成项
  2. 已完成项归档到 completed.md
  3. 用新日期重写 today.md:结转未完成 + 拉入 pending 中的 P0/P1
  4. P2 不自动拉入

Step 6: 搁置或取消

today.mdpending.md 删除,追加到 archive.md

Step 7: 调整优先级

pending.mdtoday.md 中同步移动到新的优先级分区。

Step 8: 每日收束

  1. 统计今天已完成与未完成
  2. 输出:今天推进了什么、还有什么没完成、明天最值得继续的 1-3 件事

Editing Rules

  • 修改任何文件前先读取目标文件
  • 优先使用当前 AI 工具提供的最小粒度编辑能力做精确修改
  • 同类操作尽量批量完成
  • 避免整文件覆盖已有待办文件

Quality Checklist

  • today.mdpending.md 数据一致
  • 完成的任务已从 today/pending 删除,已在 completed 归档
  • 任务格式统一
  • 日期校验通过
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. 7d ago First seen · 112 lines · 102 tokens per session scan A 0dc825e99f19

Subscribe to this mod's changes

personal-todo is a skill published in the GitHub repository hydah/thequeen (2 stars, last pushed 4mo ago), licensed MIT. It adds 102 tokens to every session and 1,083 once invoked, about $0.0005 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

recipe-create-meet-space

Create a Google Meet meeting space and share the join link.

googleworkspace/cli · 18 tokens

atmos-config

Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.

cloudposse/atmos · 31 tokens

workthreads

SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…

specstoryai/getspecstory · 126 tokens

story-readiness

Validate that a story file is implementation-ready. Checks for embedded GDD requirements, ADR references, engine notes, clear acceptance criteria, and no open design questions. Produces READY / NEEDS WORK / BLOCKED verdict with specific gaps. Use when user says 'is this story ready', 'can I start on this story', 'is…

Donchitos/Claude-Code-Game-Studios · 77 tokens

autotask-creator

Rules for automation CRUD from the group-chat commander. The commander does not call mutation tools and does not edit cloud/autotasks files directly. It emits one or more top-level ... containers in its final text; the bus parses and applies them after the turn.

Orkas-AI/Orkas · 5 tokens

monorepo-management

Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monorepos, optimizing builds, or managing shared dependencies.

wshobson/agents · 54 tokens