Add Task Manager scripts (Moltbot port)

This commit is contained in:
Jarvis
2026-01-31 07:28:44 +00:00
parent 4e8ca12c05
commit 7b70c80c71
6 changed files with 236 additions and 0 deletions

18
SKILL_TASK_MANAGER.md Normal file
View File

@@ -0,0 +1,18 @@
# 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`.