Files
Brancheneinstufung2/SKILL_TASK_MANAGER.md
2026-01-31 07:28:44 +00:00

19 lines
668 B
Markdown

# SKILL: Task Manager
## Commands
- `#task`: Start a new task session.
1. Run `python3 scripts/list_projects.py`
2. Ask user to choose project number.
3. Run `python3 scripts/list_tasks.py <project_id_from_selection>`
4. Ask user to choose task number (or 'new' for new task - not impl yet, ask for manual ID if needed).
5. Run `python3 scripts/select_task.py <task_id>`
- `#fertig`: Finish current task.
1. Ask user for short summary of work.
2. Run `python3 scripts/finish_task.py "<summary>"`
3. Ask user if they want to push (`git push`).
## Notes
- Requires `.env.notion` with `NOTION_API_KEY`.
- Stores state in `.dev_session/SESSION_INFO`.