sequant 1.13.2 → 1.13.4

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,7 +1,7 @@
1
1
  {
2
2
  "name": "sequant",
3
3
  "description": "Structured workflow system for Claude Code - GitHub issue resolution with spec, exec, test, and QA phases",
4
- "version": "1.13.2",
4
+ "version": "1.13.4",
5
5
  "author": {
6
6
  "name": "admarble",
7
7
  "email": "github@admarble.com"
package/README.md CHANGED
@@ -9,27 +9,29 @@ Solve GitHub issues with structured phases and quality gates — from issue to m
9
9
 
10
10
  ## Quick Start
11
11
 
12
- ### Option A: Install as Claude Code Plugin (Recommended)
12
+ ### Install via npm (Recommended)
13
13
 
14
14
  ```bash
15
- # Add the Sequant marketplace
16
- /plugin marketplace add admarble/sequant
17
-
18
- # Install the plugin
19
- /plugin install sequant
15
+ # In your project directory
16
+ npm install sequant
17
+ npx sequant doctor # Verify setup
20
18
  ```
21
19
 
22
- Then run setup:
23
- ```
24
- /sequant:setup # Initialize worktrees directory
20
+ To update:
21
+ ```bash
22
+ npm update sequant
25
23
  ```
26
24
 
27
- ### Option B: Install via npm
25
+ ### Alternative: Install as Claude Code Plugin
26
+
27
+ > **Note:** Plugin updates via `/plugin update` may not work reliably. Use `npm update sequant` to get latest skills.
28
28
 
29
29
  ```bash
30
- # In your project directory
31
- npx sequant init
32
- npx sequant doctor # Verify setup
30
+ # Add the Sequant marketplace
31
+ /plugin marketplace add admarble/sequant
32
+
33
+ # Install the plugin
34
+ /plugin install sequant
33
35
  ```
34
36
 
35
37
  ### Start Using
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sequant",
3
- "version": "1.13.2",
3
+ "version": "1.13.4",
4
4
  "description": "Quantize your development workflow - Sequential AI phases with quality gates",
5
5
  "type": "module",
6
6
  "bin": {
@@ -20,7 +20,22 @@ When invoked as `/solve <issue-numbers>`, your job is to:
20
20
  1. Analyze the provided issue number(s)
21
21
  2. Check labels to determine issue type
22
22
  3. Recommend the optimal workflow sequence
23
- 4. Display the recommended commands
23
+ 4. **Output using the EXACT template format** (see Output Template section)
24
+
25
+ ## CRITICAL: Output Requirements
26
+
27
+ **You MUST follow the Output Template exactly.** Key requirements:
28
+
29
+ 1. **Use the ASCII box header** with `npx sequant run <ISSUES> <FLAGS>`
30
+ 2. **Include the Flags Table** showing ALL flags with ✓/✗:
31
+ - `-q` (quality-loop) — **Default to ✓** unless trivial bug fix
32
+ - `--chain` — ✓ if dependencies between issues
33
+ - `--qa-gate` — ✓ if chain with 3+ issues
34
+ - `--base` — ✓ if feature branch context
35
+ - `--testgen` — ✓ if new feature needs tests
36
+ 3. **Quality loop (`-q`) should be ✓ (enabled)** for most issues — only skip for simple bug fixes or docs-only changes
37
+
38
+ **DO NOT** output free-form prose. Use the structured template.
24
39
 
25
40
  ## Behavior
26
41
 
@@ -62,8 +77,9 @@ Quality loop (`--quality-loop` or `-q`) provides automatic fix iterations when p
62
77
  - Labels include: `complex`, `refactor`, `breaking`, `major` (auto-enabled)
63
78
  - Labels include: `enhancement`, `feature` (new functionality)
64
79
  - Issue involves multiple files or components
65
- - Issue title contains: "add", "implement", "create", "refactor", "update"
80
+ - Issue title contains: "add", "implement", "create", "refactor", "update", "overhaul", "redesign", "improve", "rework", "revamp", "migrate", "convert", "design", "build", "develop"
66
81
  - Issue is NOT a simple bug fix with `bug` or `fix` label only
82
+ - **Default: recommend quality loop unless explicitly trivial** — most issues benefit from retry capability
67
83
 
68
84
  **Skip quality loop recommendation only when:**
69
85
  - Simple bug fix (only `bug` or `fix` label, no other labels)