con un clic
new
// Quick capture - classify and file natural language input into the vault. Part of chief-of-staff system. Use for capturing tasks, ideas, project notes, or people notes.
// Quick capture - classify and file natural language input into the vault. Part of chief-of-staff system. Use for capturing tasks, ideas, project notes, or people notes.
Create or schedule a context farmer. Checks existing farmers and offers to build new ones or schedule existing ones.
End of day review - compare planned vs actual, update task statuses. Part of chief-of-staff system.
Delegate a task by forking a terminal session to a new terminal window. Use this when the user requests 'delegate' or 'create a new terminal' or 'new terminal: <command>' or 'fork session: <command>'.
Manually trigger a context farmer subagent. Usage - /farm <name> (e.g., /farm slack)
Initialize a new Second Brain vault from a template repo — validate privacy, create folders, push, and onboard the user.
Generate daily plan from due tasks and active projects. Part of chief-of-staff vault system.
| name | new |
| description | Quick capture - classify and file natural language input into the vault. Part of chief-of-staff system. Use for capturing tasks, ideas, project notes, or people notes. |
| argument-hint | <whatever's on your mind (projects, ideas, or tasks)> |
| allowed-tools | Read, Glob, Write, Edit, AskUserQuestion |
Create items from natural language: /new <input>
Input is in $ARGUMENTS.
Do NOT commit manually unless explicitly asked. A PostToolUse hook auto-commits after Write operations.
Parse input for multiple entities. Example:
"new project with John Smith for marketing outbound, need landing page and brainstorm names"
Entities:
Edge case: "start/begin/create X" → task (the action of initiating), not project.
When creating a task without a due date, use AskUserQuestion:
Question: "When is this due?"
Header: "Due date"
Options:
- "Today" → use today's date
- "End of week" → use Friday of current week
- "Next week" → use Monday of next week
- (Other allows custom entry)
Apply similar pattern for other ambiguous fields when classification confidence is high but key data is missing.
Use Obsidian wiki-style links [[slug]] in the markdown body to connect entities.
When creating a task linked to a project, update the project file to include [[task-slug]]. Same for project → person links.
Check if person/project already exists before creating (use Glob). Use Read before editing existing files.
Task:
---
type: task
status: pending
due: YYYY-MM-DD # optional
tags: []
---
Description here.
Project:
---
type: project
status: active
tags: []
---
## Next Action
- First task to do
[[linked-task-slug]]
## Notes
Person:
---
type: person
last-contact: YYYY-MM-DD
tags: []
---
## Context
Who they are, relationship.
## Follow-ups
- [ ] Pending items
Idea:
---
type: idea
tags: []
---
Description of the idea.