claude-plugin-viban 1.3.5 → 1.3.6

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.5",
3
+ "version": "1.3.6",
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.5",
3
+ "version": "1.3.6",
4
4
  "description": "Terminal Kanban TUI for AI-human collaborative issue tracking",
5
5
  "main": "bin/viban",
6
6
  "bin": {
@@ -1,11 +1,11 @@
1
1
  ---
2
2
  name: assign
3
- description: "Assign first backlog issue clarify if unclear, then finish"
3
+ description: "Assign first backlog issue and resolve it through to review"
4
4
  ---
5
5
 
6
6
  # /assign
7
7
 
8
- Assign the first backlog issue. If the description is unclear or lacks context, interview the user and enrich the issue. **Do NOT start implementation.**
8
+ Assign the first backlog issue and execute the full resolution workflow. If the description is unclear, interview the user first.
9
9
 
10
10
  > **CLI only** (no direct viban.json access)
11
11
 
@@ -24,7 +24,7 @@ done
24
24
  ```
25
25
  Look for `Issue Resolution Workflow` or `Workflow` section.
26
26
 
27
- If a workflow exists, follow its conventions for issue handling.
27
+ If a workflow exists, **follow it exactly** — its pipeline, conventions, and stop points override the defaults below.
28
28
 
29
29
  ---
30
30
 
@@ -47,24 +47,11 @@ Display the issue title, description, priority, and type to the user.
47
47
 
48
48
  ## Step 3: Evaluate Clarity
49
49
 
50
- Assess whether the issue description provides enough context for someone to start working on it:
50
+ Assess whether the issue description provides enough context to start working:
51
51
 
52
52
  - **Clear**: the symptom, affected area, and expected behavior are all understandable
53
53
  - **Unclear**: vague description, missing context, ambiguous scope, or multiple possible interpretations
54
54
 
55
- ### If Clear
56
-
57
- Report the assignment and finish:
58
-
59
- ```
60
- Issue #{id} assigned
61
- Title: {title}
62
- Priority: {priority} | Type: {type}
63
- Status: in_progress
64
-
65
- Ready for work.
66
- ```
67
-
68
55
  ### If Unclear
69
56
 
70
57
  Interview the user with AskUserQuestion to gather missing context. Ask about:
@@ -86,15 +73,41 @@ VIBAN_EOF
86
73
  # Re-add the issue with enriched description (edit via TUI or recreate)
87
74
  ```
88
75
 
89
- Then report:
76
+ ## Step 4: Execute Workflow
77
+
78
+ Follow the workflow from Step 0. If no workflow was found, use this default pipeline:
79
+
80
+ ### 4.1 Analyze
81
+ - Explore the codebase to understand the issue
82
+ - Identify root cause and scope of change
83
+
84
+ ### 4.2 Implement
85
+ - Create a branch: `git checkout -b issue-{ISSUE_ID}`
86
+ - Make the fix/feature changes
87
+ - Write or update tests as appropriate
90
88
 
89
+ ### 4.3 Verify
90
+ - Run build and tests to confirm the fix works
91
+ - Verify no regressions
92
+
93
+ ### 4.4 Ship
94
+ - Commit with conventional message referencing the issue
95
+ - Push and create a PR
96
+
97
+ ## Step 5: Move to Review
98
+
99
+ After shipping (or at the workflow's stop point):
100
+
101
+ ```bash
102
+ viban review $ISSUE_ID
91
103
  ```
92
- Issue #{id} assigned and clarified
93
- Title: {title}
94
- Priority: {priority} | Type: {type}
95
- Status: in_progress
96
104
 
97
- Clarification added to issue description.
105
+ Report completion:
106
+
107
+ ```
108
+ Issue #{id} resolved → review
109
+ Title: {title}
110
+ PR: {pr_url}
98
111
  ```
99
112
 
100
113
  ---
@@ -102,8 +115,8 @@ Clarification added to issue description.
102
115
  ## CRITICAL
103
116
 
104
117
  > - **NEVER read or write `viban.json` directly** — always use `viban` CLI commands (`viban assign`, `viban get`, `viban list`, `viban done`, etc.)
105
- > - This command **assigns only**. Do NOT create branches, write code, or start implementation.
106
- > - If the issue is clear, just report and finish immediately.
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.
107
120
 
108
121
  ## CLI Reference
109
122