@bilalimamoglu/sift 0.4.4 → 0.5.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/README.md +103 -76
- package/dist/cli.js +11005 -7333
- package/dist/index.d.ts +62 -4
- package/dist/index.js +1009 -57
- package/package.json +14 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilalimamoglu/sift",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"description": "Local-first output guidance for coding agents working through noisy command output.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sift": "dist/cli.js"
|
|
@@ -17,8 +17,10 @@
|
|
|
17
17
|
"engines": {
|
|
18
18
|
"node": ">=20"
|
|
19
19
|
},
|
|
20
|
+
"packageManager": "npm@11.8.0",
|
|
20
21
|
"scripts": {
|
|
21
22
|
"build": "tsup",
|
|
23
|
+
"bench": "node --import tsx scripts/bench/test-status-ab.ts --real --live",
|
|
22
24
|
"bench:history": "node --import tsx scripts/bench/generate-version-history.ts --since v0.3.0",
|
|
23
25
|
"bench:test-status-ab": "node --import tsx scripts/bench/test-status-ab.ts",
|
|
24
26
|
"bench:test-status-live": "node --import tsx scripts/bench/test-status-ab.ts --live",
|
|
@@ -30,7 +32,12 @@
|
|
|
30
32
|
"test:e2e": "vitest run --config vitest.e2e.config.ts test/*.e2e.test.ts",
|
|
31
33
|
"test:coverage": "vitest run --config vitest.config.ts --coverage --exclude=\"test/**/*.smoke.test.ts\" --exclude=\"test/**/*.e2e.test.ts\"",
|
|
32
34
|
"test:watch": "vitest",
|
|
33
|
-
"
|
|
35
|
+
"setup:hooks": "git config core.hooksPath .githooks",
|
|
36
|
+
"verify:release": "node scripts/release-gate.mjs --tier full",
|
|
37
|
+
"verify:release:clean": "node scripts/release-gate.mjs --tier clean",
|
|
38
|
+
"verify:release:core": "node scripts/release-gate.mjs --tier core",
|
|
39
|
+
"verify:release:e2e": "node scripts/release-gate.mjs --tier e2e",
|
|
40
|
+
"prepublishOnly": "node scripts/release-gate.mjs --tier full"
|
|
34
41
|
},
|
|
35
42
|
"keywords": [
|
|
36
43
|
"cli",
|
|
@@ -39,6 +46,10 @@
|
|
|
39
46
|
"automation",
|
|
40
47
|
"terminal",
|
|
41
48
|
"logs",
|
|
49
|
+
"debugging",
|
|
50
|
+
"heuristics",
|
|
51
|
+
"root-cause",
|
|
52
|
+
"test-failures",
|
|
42
53
|
"ci",
|
|
43
54
|
"json"
|
|
44
55
|
],
|