@contextium/cli 1.0.52 → 1.0.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/skills/ium/workflow.md +16 -0
package/package.json
CHANGED
package/skills/ium/workflow.md
CHANGED
|
@@ -5,6 +5,9 @@ allowed-tools:
|
|
|
5
5
|
- Bash
|
|
6
6
|
- mcp__contextium__load_workflow
|
|
7
7
|
- mcp__contextium__list_workflows
|
|
8
|
+
- mcp__contextium__add_task
|
|
9
|
+
- mcp__contextium__update_task_status
|
|
10
|
+
- mcp__contextium__list_tasks
|
|
8
11
|
---
|
|
9
12
|
|
|
10
13
|
<objective>
|
|
@@ -74,11 +77,24 @@ Agents:
|
|
|
74
77
|
|
|
75
78
|
Skills:
|
|
76
79
|
- "<name>" (id: <id>)
|
|
80
|
+
|
|
81
|
+
Tasks:
|
|
82
|
+
- [IN PROGRESS] <title> (id: <taskId>)
|
|
83
|
+
- [TODO] <title> (id: <taskId>)
|
|
84
|
+
No active tasks. ← use this line if tasks array is empty
|
|
77
85
|
--- END SESSION CONTEXT ---
|
|
78
86
|
|
|
79
87
|
Workflow loaded. What would you like to do?
|
|
80
88
|
```
|
|
81
89
|
|
|
90
|
+
5. After outputting the session context block, apply task awareness:
|
|
91
|
+
|
|
92
|
+
- If there are **in_progress** tasks: note the first one as the active task and ask if the user wants to resume it.
|
|
93
|
+
- If there are only **not_started** tasks: note the first one as the suggested next action. Do not auto-start — let the user direct the session.
|
|
94
|
+
- If you create new action items during the session: call `add_task` to record them for the team.
|
|
95
|
+
- When a task is complete: call `update_task_status(taskId, 'done')`.
|
|
96
|
+
- Do not work on multiple tasks simultaneously.
|
|
97
|
+
|
|
82
98
|
If a workflow name was specified directly in the user's message, skip step 1 and load immediately.
|
|
83
99
|
If no workspace is specified, use the default from .contextiumrc or ask the user.
|
|
84
100
|
</process>
|