بنقرة واحدة
todo
Manage todos in today's daily note — add items, mark them done, or pick one to focus on.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Manage todos in today's daily note — add items, mark them done, or pick one to focus on.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Weekly backlog audit — field completeness, staleness tiers, and duplicate detection. Run during grooming to clean up the backlog.
Creates a JIRA Bug with steps to reproduce, expected/actual behavior, and fix criteria. Activates when users ask to create a bug report, file a bug, or report an issue.
Creates a JIRA Epic with scope, success criteria, and child story breakdown. Activates when users ask to create an epic.
Creates a JIRA Story with user story format, acceptance criteria, and technical notes. Activates when users ask to create a story or user story.
Creates a JIRA Task for tech debt, infrastructure, documentation, or spike work. Activates when users ask to create a task, spike, tech debt ticket, or infrastructure work.
Daily briefing — sprint progress, new tickets, and recent comments in one report. Run this to get oriented at the start of the day.
| name | todo |
| description | Manage todos in today's daily note — add items, mark them done, or pick one to focus on. |
| allowed-tools | ["mcp__obsidian__read_note","mcp__obsidian__patch_note","mcp__obsidian__write_note","Bash"] |
| argument-hint | add <item> | done <item> | pick |
Add, complete, and pick todos from today's daily note. All operations target the single todo section in the daily note template.
The daily note has one todo section:
#### To Dos — all tasks. Runs until #### Log. Managed by the Rollover Daily Todos plugin (rolls unchecked items forward between days). Adding and checking items is safe.add <item> — Add a tododate +%Y-%m-%dDaily/YYYY-MM-DD.md via mcp__obsidian__read_note. If it doesn't exist, create it from the template (see Template section).#### To Dos#### To Dos to #### Log)- [ ] <item> before the trailing blank - [ ] placeholder if one exists, or after the last existing itemmcp__obsidian__patch_note with the exact old section as oldString and the updated section as newStringSub-tasks: If the argument uses > to indicate nesting, create indented sub-tasks:
add Disaster recovery > Who owns this?- [ ] Disaster recovery
- [ ] Who owns this?
Multiple items: If the argument contains multiple items separated by commas or "and", add each as a separate - [ ] entry.
Current section:
#### To Dos
- [ ] MCP debug server for Hyperfleet
- [ ]
#### Log
Adding "Review PR #55":
oldString: #### To Dos\n- [ ] MCP debug server for Hyperfleet\n- [ ] \n\n#### LognewString: #### To Dos\n- [ ] MCP debug server for Hyperfleet\n- [ ] Review PR #55\n- [ ] \n\n#### LogAdded to To Dos:
- [ ] Review PR #55
done <item> — Mark a todo as complete- [ ]) matching the argument (case-insensitive, partial match is fine)- [ ] with - [x] via mcp__obsidian__patch_noteMarking "MCP debug" as done:
oldString: - [ ] MCP debug server for HyperfleetnewString: - [x] MCP debug server for HyperfleetCompleted:
- [x] MCP debug server for Hyperfleet
pick — Pick a task to focus on- [ ] items from the todo section (skip blank placeholders)### Open Tasks
1. Disaster recovery
2. MCP debug server for Hyperfleet
3. Awesome Adapters :)
4. Sync with Christine
5. Sync with Michael
6. Talk with Rafael
Pick a number to start, or 0 to skip.
#### Log using the same patch pattern as session-log: - Started: [item description]If the daily note does not exist, create it with pre-rendered content (replace date placeholders with actual values):
---
date: YYYY-MM-DD
type: daily
tags:
- daily
---
# DayOfWeek, Month D, YYYY
#### To Dos
- [ ]
#### Log
-
#### A day in review
#### Gratitude
#### Related Notes
- Projects:
- Meetings:
- Learning:
Use Bash to compute the full date string: date +"%A, %B %-d, %Y".
If patch_note fails, fall back to mcp__obsidian__write_note with mode: "append" and tell the user the entry was appended to the end of the file and may need manual repositioning.
- [ ] placeholder at the end of the section is an Obsidian convention for easy manual entry. Preserve it when adding items (insert before it, not after)