@codebehind/agent-workflow 1.1.7 → 1.1.9

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codebehind/agent-workflow",
3
- "version": "1.1.7",
3
+ "version": "1.1.9",
4
4
  "description": "Scaffold the agent-workflow spec-driven delivery framework into any repo",
5
5
  "type": "module",
6
6
  "bin": {
@@ -77,7 +77,7 @@ The agent fetches the Notion page, maps content to the spec template, asks clari
77
77
  Add `--interactive` to follow along in the same session and skip the automatic GitLab MR:
78
78
 
79
79
  ```bash
80
- scripts/agent/prepare-spec.sh --interactive <slug> <notion-link>
80
+ scripts/agent/prepare-spec.sh --interactive \<slug\> \<notion-link\>
81
81
  ```
82
82
 
83
83
  Claude launches interactively with the first message pre-filled. The worktree and branch are still created — but nothing is pushed or opened in GitLab unless you do it manually.
@@ -31,7 +31,7 @@ cd "${WORKTREE_DIR}"
31
31
 
32
32
  if [[ "$INTERACTIVE" == true ]]; then
33
33
  echo "Starting interactive Claude session (GitLab flow disabled)..." >&2
34
- exec claude --dangerously-skip-permissions --message "use implement-spec skill from ${SPEC_NAME}. Skip GitLab flow — do not push or open an MR."
34
+ exec claude --dangerously-skip-permissions "use implement-spec skill from ${SPEC_NAME}. Skip GitLab flow — do not push or open an MR."
35
35
  else
36
36
  exec claude --dangerously-skip-permissions -p "use implement-spec skill from ${SPEC_NAME}"
37
37
  fi
@@ -31,7 +31,7 @@ cd "${WORKTREE_DIR}"
31
31
 
32
32
  if [[ "$INTERACTIVE" == true ]]; then
33
33
  echo "Starting interactive Claude session (GitLab flow disabled)..." >&2
34
- exec claude --dangerously-skip-permissions --message "use prepare-spec skill from ${NOTION_URL}. Skip GitLab flow — do not push or open an MR."
34
+ exec claude --dangerously-skip-permissions "use prepare-spec skill from ${NOTION_URL}. Skip GitLab flow — do not push or open an MR."
35
35
  else
36
36
  exec claude --dangerously-skip-permissions -p "use prepare-spec skill from ${NOTION_URL}"
37
37
  fi