cc-mirror 1.3.0 → 1.4.0

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/README.md CHANGED
@@ -132,6 +132,7 @@ mclaude # Launch Mirror Claude variant
132
132
  | **🎨 Brand Themes** | Custom color schemes per provider via [tweakcc](https://github.com/Piebald-AI/tweakcc) |
133
133
  | **📝 Prompt Packs** | Enhanced system prompts for Z.ai and MiniMax |
134
134
  | **🤖 Team Mode** | Multi-agent collaboration with shared task management |
135
+ | **📋 Tasks CLI** | Manage, archive, and visualize task dependencies from command line |
135
136
  | **🔄 One-Command Updates** | Update all variants when Claude Code releases |
136
137
 
137
138
  ---
@@ -147,6 +148,16 @@ cc-mirror update [name] # Update one or all variants
147
148
  cc-mirror remove <name> # Delete a variant
148
149
  cc-mirror doctor # Health check all variants
149
150
 
151
+ # Task management (team mode)
152
+ cc-mirror tasks # List open tasks
153
+ cc-mirror tasks show <id> # Show task details
154
+ cc-mirror tasks create # Create new task
155
+ cc-mirror tasks update <id> # Update task
156
+ cc-mirror tasks delete <id> # Delete task
157
+ cc-mirror tasks archive <id> # Archive task
158
+ cc-mirror tasks clean # Bulk cleanup
159
+ cc-mirror tasks graph # Visualize dependencies
160
+
150
161
  # Launch your variant
151
162
  zai # Run Z.ai variant
152
163
  minimax # Run MiniMax variant
@@ -201,6 +212,32 @@ cc-mirror quick --provider mirror --name mclaude
201
212
 
202
213
  Team mode enables: `TaskCreate`, `TaskGet`, `TaskUpdate`, `TaskList` tools plus an **orchestrator skill** that teaches Claude effective multi-agent coordination patterns.
203
214
 
215
+ ### Tasks CLI (v1.4.0+)
216
+
217
+ Manage team tasks from the command line:
218
+
219
+ ```bash
220
+ # List open tasks
221
+ cc-mirror tasks
222
+
223
+ # View across all teams
224
+ cc-mirror tasks --all
225
+
226
+ # Create and update tasks
227
+ cc-mirror tasks create --subject "Add auth" --description "JWT implementation"
228
+ cc-mirror tasks update 5 --status resolved --add-comment "Done"
229
+
230
+ # Cleanup resolved tasks
231
+ cc-mirror tasks clean --resolved --dry-run
232
+ cc-mirror tasks clean --resolved --force
233
+
234
+ # Archive instead of delete (preserves task history)
235
+ cc-mirror tasks archive 5
236
+
237
+ # Visualize dependency graph
238
+ cc-mirror tasks graph
239
+ ```
240
+
204
241
  ### Project-Scoped Tasks (v1.2.0+)
205
242
 
206
243
  Tasks are automatically scoped by project folder — no cross-project pollution: