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.
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +15 -13
- package/package.json +1 -1
- package/templates/skills/solve/SKILL.md +18 -2
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
|
-
###
|
|
12
|
+
### Install via npm (Recommended)
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
#
|
|
16
|
-
|
|
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
|
-
|
|
23
|
-
```
|
|
24
|
-
|
|
20
|
+
To update:
|
|
21
|
+
```bash
|
|
22
|
+
npm update sequant
|
|
25
23
|
```
|
|
26
24
|
|
|
27
|
-
###
|
|
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
|
-
#
|
|
31
|
-
|
|
32
|
-
|
|
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
|
@@ -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.
|
|
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)
|