secondbrain-task
12
总安装量
6
周安装量
#26803
全站排名
安装命令
npx skills add https://github.com/sergio-bershadsky/ai --skill secondbrain-task
Agent 安装分布
opencode
6
gemini-cli
6
antigravity
6
codex
6
kilo
5
claude-code
5
Skill 文档
Create Task
Create tracked tasks with priority, due dates, and status workflow.
Prerequisites
Verify Tasks entity is enabled:
- Check for
.claude/data/tasks/records.yaml - If not found, suggest enabling tasks via
secondbrain-initorsecondbrain-entity
Workflow
Step 1: Gather Information
Collect from user or conversation context:
- Title â Brief task description
- Description (optional) â Detailed description
- Priority â low, medium, high, critical
- Due Date (optional) â Target completion date
- Assignee (optional) â Person responsible
Step 2: Generate Task Number
Sequential ID format: TASK-XXXX (zero-padded)
- Load
.claude/data/tasks/records.yaml - Get
last_number, increment by 1 - Format as
TASK-0042
Step 3: Create Task Record
Add to .claude/data/tasks/records.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
Step 4: Create Task Document (Optional)
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...
Step 5: Sidebar Note
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/records.yaml. No sidebar modification needed.
Step 6: Confirm Creation
## 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
Status Workflow
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 Levels
| Priority | Use When |
|---|---|
| critical | Urgent, blocks other work |
| high | Important, should be done soon |
| medium | Normal priority |
| low | Nice to have, no rush |
Additional Resources
references/task-workflows.mdâ Detailed task lifecycle, priority guidelines, and workflow patterns
Tips
- Keep titles actionable â Start with a verb (Implement, Fix, Add)
- Set realistic due dates â Better to underpromise
- Update status promptly â Keeps the backlog accurate
- Use tags â Helps filter and group related tasks
- Add acceptance criteria â Makes “done” unambiguous