@cleocode/cleo 2026.3.23 → 2026.3.24
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/dist/cli/index.js +180 -224
- package/dist/cli/index.js.map +3 -3
- package/dist/mcp/index.js +6 -1
- package/dist/mcp/index.js.map +2 -2
- package/package.json +1 -1
- package/server.json +4 -4
package/dist/mcp/index.js
CHANGED
|
@@ -27188,7 +27188,12 @@ async function taskCreate(projectRoot, params) {
|
|
|
27188
27188
|
depends: params.depends,
|
|
27189
27189
|
priority: params.priority || "medium",
|
|
27190
27190
|
labels: params.labels,
|
|
27191
|
-
type: params.type || void 0
|
|
27191
|
+
type: params.type || void 0,
|
|
27192
|
+
phase: params.phase,
|
|
27193
|
+
size: params.size,
|
|
27194
|
+
acceptance: params.acceptance,
|
|
27195
|
+
notes: params.notes,
|
|
27196
|
+
files: params.files
|
|
27192
27197
|
},
|
|
27193
27198
|
projectRoot,
|
|
27194
27199
|
accessor
|