claude-plugin-viban 1.3.6 → 1.3.7

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "viban",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "description": "Terminal Kanban TUI for AI-human collaborative issue tracking",
5
5
  "author": {
6
6
  "name": "happy-nut"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-plugin-viban",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "description": "Terminal Kanban TUI for AI-human collaborative issue tracking",
5
5
  "main": "bin/viban",
6
6
  "bin": {
@@ -90,19 +90,39 @@ Follow the workflow from Step 0. If no workflow was found, use this default pipe
90
90
  - Run build and tests to confirm the fix works
91
91
  - Verify no regressions
92
92
 
93
- ### 4.4 Ship
94
- - Commit with conventional message referencing the issue
95
- - Push and create a PR
93
+ ### 4.4 Ship (MANDATORY)
94
+
95
+ Every step below is **required** unless the workflow explicitly says to stop earlier.
96
+
97
+ ```bash
98
+ # 1. Commit
99
+ git add -A
100
+ git commit -m "fix: {description} (#$ISSUE_ID)"
101
+
102
+ # 2. Push
103
+ git push -u origin issue-$ISSUE_ID
104
+
105
+ # 3. Create PR (REQUIRED — do NOT skip this)
106
+ gh pr create --title "fix: {description}" --body "Resolves #$ISSUE_ID
107
+
108
+ ## Summary
109
+ {what was changed and why}
110
+
111
+ ## Test plan
112
+ {how it was verified}"
113
+ ```
114
+
115
+ **If `gh pr create` fails**: fix the error and retry. Do NOT skip PR creation.
96
116
 
97
117
  ## Step 5: Move to Review
98
118
 
99
- After shipping (or at the workflow's stop point):
119
+ After PR is created:
100
120
 
101
121
  ```bash
102
122
  viban review $ISSUE_ID
103
123
  ```
104
124
 
105
- Report completion:
125
+ Report completion with the PR URL:
106
126
 
107
127
  ```
108
128
  Issue #{id} resolved → review
@@ -110,13 +130,16 @@ Issue #{id} resolved → review
110
130
  PR: {pr_url}
111
131
  ```
112
132
 
133
+ **Do NOT report completion without a PR URL.**
134
+
113
135
  ---
114
136
 
115
137
  ## CRITICAL
116
138
 
117
139
  > - **NEVER read or write `viban.json` directly** — always use `viban` CLI commands (`viban assign`, `viban get`, `viban list`, `viban done`, etc.)
118
- > - Always end with `viban review` (or `viban done` if the workflow specifies it).
119
- > - Respect workflow stop points if the workflow says "stop before PR", stop there.
140
+ > - **MUST create a PR** via `gh pr create` unless the workflow explicitly says "stop before PR".
141
+ > - **MUST call `viban review`** after PR creation. Do NOT finish without moving the issue to review.
142
+ > - **MUST include PR URL** in the completion report. No URL = not done.
120
143
 
121
144
  ## CLI Reference
122
145