sequant 1.19.0 → 1.20.0
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 +1 -1
- package/dist/src/lib/fs.d.ts +1 -1
- package/package.json +7 -7
- package/templates/skills/qa/SKILL.md +2 -2
package/README.md
CHANGED
package/dist/src/lib/fs.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export declare function isExecutable(path: string): Promise<boolean>;
|
|
|
6
6
|
export declare function ensureDir(path: string): Promise<void>;
|
|
7
7
|
export declare function readFile(path: string): Promise<string>;
|
|
8
8
|
export declare function writeFile(path: string, content: string): Promise<void>;
|
|
9
|
-
export declare function getFileStats(path: string): Promise<import("fs").Stats>;
|
|
9
|
+
export declare function getFileStats(path: string): Promise<import("node:fs").Stats>;
|
|
10
10
|
/**
|
|
11
11
|
* Check if a path is a symbolic link
|
|
12
12
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sequant",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.20.0",
|
|
4
4
|
"description": "Quantize your development workflow - Sequential AI phases with quality gates",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
},
|
|
55
55
|
"homepage": "https://sequant.io",
|
|
56
56
|
"engines": {
|
|
57
|
-
"node": ">=
|
|
57
|
+
"node": ">=20.0.0"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@anthropic-ai/claude-agent-sdk": "^0.2.11",
|
|
@@ -63,13 +63,13 @@
|
|
|
63
63
|
"chalk": "^5.3.0",
|
|
64
64
|
"chokidar": "^5.0.0",
|
|
65
65
|
"cli-table3": "^0.6.5",
|
|
66
|
-
"commander": "^
|
|
66
|
+
"commander": "^14.0.3",
|
|
67
67
|
"diff": "^8.0.3",
|
|
68
68
|
"gradient-string": "^3.0.0",
|
|
69
69
|
"hono": "^4.12.1",
|
|
70
|
-
"inquirer": "^
|
|
70
|
+
"inquirer": "^13.3.0",
|
|
71
71
|
"open": "^11.0.0",
|
|
72
|
-
"ora": "^
|
|
72
|
+
"ora": "^9.3.0",
|
|
73
73
|
"yaml": "^2.7.0",
|
|
74
74
|
"zod": "^4.3.5"
|
|
75
75
|
},
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"@eslint/js": "^9.39.2",
|
|
78
78
|
"@types/gradient-string": "^1.1.6",
|
|
79
79
|
"@types/inquirer": "^9.0.7",
|
|
80
|
-
"@types/node": "^
|
|
80
|
+
"@types/node": "^25.4.0",
|
|
81
81
|
"@typescript-eslint/eslint-plugin": "^8.52.0",
|
|
82
82
|
"@typescript-eslint/parser": "^8.52.0",
|
|
83
83
|
"eslint": "^9.39.2",
|
|
@@ -85,6 +85,6 @@
|
|
|
85
85
|
"tsx": "^4.19.2",
|
|
86
86
|
"typescript": "^5.7.2",
|
|
87
87
|
"typescript-eslint": "^8.52.0",
|
|
88
|
-
"vitest": "^
|
|
88
|
+
"vitest": "^4.1.0"
|
|
89
89
|
}
|
|
90
90
|
}
|
|
@@ -635,8 +635,8 @@ Include CI status in the QA output:
|
|
|
635
635
|
|
|
636
636
|
| Check | State | Bucket | Impact |
|
|
637
637
|
|-------|-------|--------|--------|
|
|
638
|
-
| `build (
|
|
639
|
-
| `build (
|
|
638
|
+
| `build (20.x)` | SUCCESS | pass | ✅ MET |
|
|
639
|
+
| `build (22.x)` | PENDING | pending | ⏳ PENDING |
|
|
640
640
|
| `lint` | FAILURE | fail | ❌ NOT_MET |
|
|
641
641
|
|
|
642
642
|
**CI Summary:** 1 passed, 1 pending, 1 failed
|