feinai 0.6.1 → 0.6.3

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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  Format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
5
5
 
6
+ ## [0.6.3] - 2026-06-11
7
+
8
+ ### Fixed
9
+ - `feinai --version` now reports the correct version number
10
+ - `feinai edit <TASK-ID> --worktree <path>` no longer throws "provide at least one field to edit" when `--worktree` is the only flag passed
11
+
6
12
  ## [0.5.0] - 2026-06-10
7
13
 
8
14
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feinai",
3
- "version": "0.6.1",
3
+ "version": "0.6.3",
4
4
  "description": "Task & spec manager for AI agents — parallel worktrees, live dashboard, SDD skills",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.ts CHANGED
@@ -48,7 +48,7 @@ import {
48
48
  type OutputFormat,
49
49
  } from "./format";
50
50
 
51
- const VERSION = "0.6.1";
51
+ const VERSION = "0.6.3";
52
52
 
53
53
  interface ParsedArgs {
54
54
  positional: string[];
package/src/tasks.ts CHANGED
@@ -324,7 +324,8 @@ export function editTask(
324
324
  input.description === undefined &&
325
325
  input.packages === undefined &&
326
326
  input.quality_gates === undefined &&
327
- input.blocked_by === undefined
327
+ input.blocked_by === undefined &&
328
+ input.worktree === undefined
328
329
  ) {
329
330
  throw new Error('editTask: provide at least one field to edit');
330
331
  }