بنقرة واحدة
task
Log a concrete task with an optional deadline — surfaces in daily briefings
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Log a concrete task with an optional deadline — surfaces in daily briefings
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Log a work achievement as a linked note in the vault — for performance reviews
End-of-day check-in — pulls GitHub activity, compares to existing logs, and creates missing entries
Morning planning session - reads recent vault activity, flags urgent items, plans the day
Initialise claudia for a new user — walks through prerequisites, then uses the Obsidian CLI to set up the vault
Weekly review - flags forgotten ideas/tasks, summarises the week
Log a decision with rationale — high-value evidence for performance reviews
| name | task |
| description | Log a concrete task with an optional deadline — surfaces in daily briefings |
| argument-hint | <task description, optionally including a deadline> |
Capture a task. Today: !date +%Y-%m-%d.
Input: $ARGUMENTS
If $ARGUMENTS is empty, ask: "What do you need to do?"
Extract the task description and any due date mentioned:
2026-04-17If no due date was mentioned, ask: "Is there a deadline? (Fine if not.)"
Determine whether this needs a line item or a full note:
If line item — append to the Tasks atlas:
obsidian append file="Atlas/Tasks" content="- [ ] [task description] | Due: YYYY-MM-DD"
(Omit | Due: part if no deadline.)
Example: /task Review outstanding PRs in EF BE repo by March 25th →
obsidian append file="Atlas/Tasks" content="- [ ] Review outstanding PRs in EF BE repo | Due: 2026-03-25"
If full note — create the note:
obsidian create name="[date]-[slug]" path="Notes/" content="---
date: [date]
type: task
due: [date or leave blank]
tags: [task, status/active]
---
# [Task title]
**Due**: [date or —]
## What to do
[task description]
## Links
## Notes
[any context provided in the input]
## Files
"
Then link it from the Tasks atlas:
obsidian append file="Atlas/Tasks" content="- [ ] [[date-slug]] | Due: YYYY-MM-DD"
Confirm: "Added. You have [N] open tasks."
Expanding a line item to a note: If the user asks to "expand" an existing line item, create the full note for it, then update Atlas/Tasks.md — replace the plain-text line with [[note-slug]].