claude-plugin-viban 1.3.1 → 1.3.2

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.1",
3
+ "version": "1.3.2",
4
4
  "description": "Terminal Kanban TUI for AI-human collaborative issue tracking",
5
5
  "author": {
6
6
  "name": "happy-nut"
package/commands/add.md CHANGED
@@ -6,6 +6,8 @@ description: "Register a problem as a viban issue"
6
6
 
7
7
  Register a problem as a viban issue. No codebase exploration, no solutions — symptoms only.
8
8
 
9
+ > **CLI only** (no direct viban.json access)
10
+
9
11
  **Input**: `$ARGUMENTS`
10
12
 
11
13
  ## Step 1: Clarify (only if vague)
@@ -101,6 +103,7 @@ Report: `Plan saved to .viban/plans/{issue-id}.md — /viban:assign will auto-lo
101
103
 
102
104
  ## Rules
103
105
 
106
+ - **NEVER read or write `viban.json` directly** — always use `viban` CLI commands (`viban add`, `viban list`, etc.)
104
107
  - **NEVER edit, create, or modify any source code files** — this skill registers issues only
105
108
  - **NEVER start implementation** — even after plan mode, just save the plan and stop
106
109
  - No codebase exploration — assignee does that in `/viban:assign`
@@ -12,3 +12,5 @@ What it does:
12
12
  3. That's it — no implementation, no branch creation
13
13
 
14
14
  This command is for **assignment and clarification only**. Use other tools to start working on the assigned issue.
15
+
16
+ **IMPORTANT:** Never read or write `viban.json` directly — always use `viban` CLI commands.
@@ -19,3 +19,5 @@ How it works:
19
19
  2. Spawns one opus agent per issue — each agent works exclusively in its own worktree
20
20
  3. Agents analyze, implement, commit, push, and create PRs independently
21
21
  4. Coordinator collects results, runs tests, and cleans up worktrees
22
+
23
+ **IMPORTANT:** Never read or write `viban.json` directly — always use `viban` CLI commands. Direct JSON access causes race conditions.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-plugin-viban",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "Terminal Kanban TUI for AI-human collaborative issue tracking",
5
5
  "main": "bin/viban",
6
6
  "bin": {
@@ -7,6 +7,8 @@ description: "Register a problem as a viban issue"
7
7
 
8
8
  Register a problem as a viban issue. No codebase exploration, no solutions — symptoms only.
9
9
 
10
+ > **CLI only** (no direct viban.json access)
11
+
10
12
  **Input**: `$ARGUMENTS`
11
13
 
12
14
  ## Step 1: Clarify (only if vague)
@@ -102,6 +104,7 @@ Report: `Plan saved to .viban/plans/{issue-id}.md — /viban:assign will auto-lo
102
104
 
103
105
  ## Rules
104
106
 
107
+ - **NEVER read or write `viban.json` directly** — always use `viban` CLI commands (`viban add`, `viban list`, etc.)
105
108
  - **NEVER edit, create, or modify any source code files** — this skill registers issues only
106
109
  - **NEVER start implementation** — even after plan mode, just save the plan and stop
107
110
  - No codebase exploration — assignee does that in `/viban:assign`
@@ -101,8 +101,10 @@ Clarification added to issue description.
101
101
 
102
102
  ## CRITICAL
103
103
 
104
+ > - **NEVER read or write `viban.json` directly** — always use `viban` CLI commands (`viban assign`, `viban get`, `viban list`, etc.)
105
+ > - **FORBIDDEN: `viban done`** — this DELETES the card permanently. NEVER run it.
106
+ > - **FORBIDDEN: `viban review`** — the issue stays in `in_progress` for the next work session.
104
107
  > - This command **assigns only**. Do NOT create branches, write code, or start implementation.
105
- > - Do NOT run `viban review` — the issue stays in `in_progress` for the next work session.
106
108
  > - If the issue is clear, just report and finish immediately.
107
109
 
108
110
  ## CLI Reference
@@ -151,9 +151,10 @@ You are one of {N} parallel agents working in isolated git worktrees.
151
151
  viban review {ID}
152
152
  ```
153
153
 
154
- CRITICAL:
155
- - Always run `viban review {ID}` before finishing, even on errors.
156
- - Do NOT run `viban done` — the coordinator handles post-merge cleanup.
154
+ ABSOLUTE RULES (violating any of these corrupts the board):
155
+ - Run `viban review {ID}` as your LAST command before finishing. Always. Even on errors.
156
+ - **FORBIDDEN: `viban done`**this DELETES the card permanently. NEVER run it. Only the human runs `viban done` after reviewing the PR.
157
+ - **FORBIDDEN: reading or writing `viban.json`** — use CLI commands only.
157
158
  - Do NOT run the full test suite — the coordinator handles that.
158
159
  - Do NOT remove the worktree — the coordinator handles cleanup.
159
160
  ```
@@ -277,8 +278,9 @@ Worktrees cleaned up. All PRs ready for human review.
277
278
 
278
279
  ## CRITICAL RULES
279
280
 
280
- > 1. **NEVER exit with any issue still in `in_progress`.** For every assigned issue, ensure `viban review {ID}` has been called.
281
- > 2. **ALWAYS clean up worktrees** after PRs are created. Worktree dirs must not linger in `.viban/worktrees/`.
281
+ > 1. **NEVER read or write `viban.json` directly** always use `viban` CLI commands. Direct JSON access causes race conditions and data corruption.
282
+ > 2. **NEVER exit with any issue still in `in_progress`.** For every assigned issue, ensure `viban review {ID}` has been called.
283
+ > 3. **ALWAYS clean up worktrees** after PRs are created. Worktree dirs must not linger in `.viban/worktrees/`.
282
284
 
283
285
  ## CLI Reference
284
286