From secondbrain
Creates sequential tasks with priority, status, due dates in secondbrain's .claude/data/tasks YAML shards. Activates on 'create task', 'add todo', or similar requests.
npx claudepluginhub sergio-bershadsky/ai --plugin secondbrainThis skill uses the workspace's default tool permissions.
Create tracked tasks with priority, due dates, and status workflow.
Defines conventions for TASKS.md files: structure with optional sections, status symbols ([ ] todo, [/] ongoing, [x] done, [-] backlog), task descriptions, and testable acceptance criteria. Use for creating, editing, updating tasks or tracking progress.
Organizes markdown task files into folders like tasks/, ideas/, templates/, bugs/ with YAML frontmatter defining types (task, idea, bug), due dates, tags, status. Use when creating or modifying task files.
Manages tasks, goals, projects, and brain dumps in Mission Control JSON files. Create, update, query entries with kanban status, assign agents, and regenerate AI context.
Share bugs, ideas, or general feedback.
Create tracked tasks with priority, due dates, and status workflow.
Verify Tasks entity is enabled:
.claude/data/tasks/meta.yaml (sharded) or .claude/data/tasks/records.yaml (legacy)secondbrain-init or secondbrain-entityEntityTable component on docs/tasks/index.md, which reads from .claude/data/tasks/ shard files. No sidebar modification is needed.Collect from user or conversation context:
Sequential ID format: TASK-XXXX (zero-padded)
.claude/data/tasks/meta.yaml (read last_number — tiny file, ~50 tokens)TASK-0042Add to the current month's shard .claude/data/tasks/YYYY-MM.yaml:
- number: 42
title: "Implement user authentication"
description: "Add OAuth2 login flow"
status: todo
priority: high
created: 2026-01-15
due_date: 2026-01-31
assignee: sergey
tags: [auth, security]
Update last_number: 42 in .claude/data/tasks/meta.yaml and ensure the current month is in the shards list.
For complex tasks, create a document:
Filename: docs/tasks/TASK-0042-implement-authentication.md
---
id: TASK-0042
title: Implement user authentication
status: todo
priority: high
created: 2026-01-15
due_date: 2026-01-31
assignee: sergey
tags: [auth, security]
---
# TASK-0042: Implement user authentication
## Description
Add OAuth2 login flow for the application.
## Acceptance Criteria
- [ ] OAuth2 provider configuration
- [ ] Login redirect flow
- [ ] Token storage
- [ ] Logout functionality
## Notes
Implementation notes here...
DO NOT manually add tasks to VitePress sidebar.
Tasks are automatically listed via the EntityTable component on docs/tasks/index.md, which reads from .claude/data/tasks/ shard files. No sidebar modification needed.
## Task Created
**ID:** TASK-0042
**Title:** Implement user authentication
**Priority:** high
**Due:** 2026-01-31
**Status:** todo
### Next Steps
- Update status as work progresses
- Add notes to the task document
- Mark complete when done
todo → in_progress → done
↓
blocked → in_progress
↓
canceled
| Status | Description |
|---|---|
| todo | Not started |
| in_progress | Work in progress |
| blocked | Waiting on dependency |
| done | Completed |
| canceled | Won't be done |
| Priority | Use When |
|---|---|
| critical | Urgent, blocks other work |
| high | Important, should be done soon |
| medium | Normal priority |
| low | Nice to have, no rush |
references/task-workflows.md — Detailed task lifecycle, priority guidelines, and workflow patterns