sequant 1.13.3 → 1.13.5

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.3",
4
+ "version": "1.13.5",
5
5
  "author": {
6
6
  "name": "admarble",
7
7
  "email": "github@admarble.com"
package/README.md CHANGED
@@ -9,27 +9,18 @@ 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
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
20
- ```
21
-
22
- Then run setup:
23
- ```
24
- /sequant:setup # Initialize worktrees directory
15
+ # In your project directory
16
+ npm install sequant
17
+ npx sequant init # Install skills to your project
18
+ npx sequant doctor # Verify setup
25
19
  ```
26
20
 
27
- ### Option B: Install via npm
28
-
21
+ To update:
29
22
  ```bash
30
- # In your project directory
31
- npx sequant init
32
- npx sequant doctor # Verify setup
23
+ npm update sequant
33
24
  ```
34
25
 
35
26
  ### Start Using
@@ -236,7 +227,6 @@ See [Customization Guide](docs/guides/customization.md) for all options.
236
227
  - [Run Command](docs/reference/run-command.md)
237
228
  - [Git Workflows](docs/guides/git-workflows.md)
238
229
  - [Customization](docs/guides/customization.md)
239
- - [Plugin Updates & Versioning](docs/internal/plugin-updates.md)
240
230
  - [Troubleshooting](docs/troubleshooting.md)
241
231
 
242
232
  Stack guides: [Next.js](docs/stacks/nextjs.md) · [Rust](docs/stacks/rust.md) · [Python](docs/stacks/python.md) · [Go](docs/stacks/go.md)
@@ -247,7 +237,6 @@ Stack guides: [Next.js](docs/stacks/nextjs.md) · [Rust](docs/stacks/rust.md) ·
247
237
 
248
238
  ### Reporting Issues
249
239
 
250
- - **Plugin issues:** [Plugin Feedback template](https://github.com/admarble/sequant/issues/new?template=plugin-feedback.yml)
251
240
  - **Bug reports:** [Bug template](https://github.com/admarble/sequant/issues/new?template=bug.yml)
252
241
  - **Feature requests:** [Feature template](https://github.com/admarble/sequant/issues/new?template=feature.yml)
253
242
  - **Questions:** [GitHub Discussions](https://github.com/admarble/sequant/discussions)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sequant",
3
- "version": "1.13.3",
3
+ "version": "1.13.5",
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