원클릭으로
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]].