@wrongstack/plugins 0.155.0 → 0.236.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/dist/file-watcher.js +16 -1
- package/dist/index.js +16 -1
- package/package.json +4 -4
package/dist/file-watcher.js
CHANGED
|
@@ -20,7 +20,12 @@ var plugin = {
|
|
|
20
20
|
watchOnStartup: [],
|
|
21
21
|
autoUnwatchOnExit: true,
|
|
22
22
|
autoIndex: false,
|
|
23
|
-
indexProjectRoot: ""
|
|
23
|
+
indexProjectRoot: "",
|
|
24
|
+
depWatcher: {
|
|
25
|
+
enabled: false,
|
|
26
|
+
targetAgent: "tech-stack",
|
|
27
|
+
debounceMs: 3e3
|
|
28
|
+
}
|
|
24
29
|
},
|
|
25
30
|
configSchema: {
|
|
26
31
|
type: "object",
|
|
@@ -37,6 +42,16 @@ var plugin = {
|
|
|
37
42
|
type: "string",
|
|
38
43
|
default: "",
|
|
39
44
|
description: "Project root directory for the indexer. Defaults to cwd when empty."
|
|
45
|
+
},
|
|
46
|
+
depWatcher: {
|
|
47
|
+
type: "object",
|
|
48
|
+
default: { enabled: false },
|
|
49
|
+
description: "Bridge dependency file changes (package.json, go.mod, etc.) to the inter-agent mailbox for tech-stack audits. Requires the mailbox tool to be registered.",
|
|
50
|
+
properties: {
|
|
51
|
+
enabled: { type: "boolean", default: false },
|
|
52
|
+
targetAgent: { type: "string", default: "tech-stack" },
|
|
53
|
+
debounceMs: { type: "number", default: 3e3 }
|
|
54
|
+
}
|
|
40
55
|
}
|
|
41
56
|
}
|
|
42
57
|
},
|
package/dist/index.js
CHANGED
|
@@ -1123,7 +1123,12 @@ var plugin5 = {
|
|
|
1123
1123
|
watchOnStartup: [],
|
|
1124
1124
|
autoUnwatchOnExit: true,
|
|
1125
1125
|
autoIndex: false,
|
|
1126
|
-
indexProjectRoot: ""
|
|
1126
|
+
indexProjectRoot: "",
|
|
1127
|
+
depWatcher: {
|
|
1128
|
+
enabled: false,
|
|
1129
|
+
targetAgent: "tech-stack",
|
|
1130
|
+
debounceMs: 3e3
|
|
1131
|
+
}
|
|
1127
1132
|
},
|
|
1128
1133
|
configSchema: {
|
|
1129
1134
|
type: "object",
|
|
@@ -1140,6 +1145,16 @@ var plugin5 = {
|
|
|
1140
1145
|
type: "string",
|
|
1141
1146
|
default: "",
|
|
1142
1147
|
description: "Project root directory for the indexer. Defaults to cwd when empty."
|
|
1148
|
+
},
|
|
1149
|
+
depWatcher: {
|
|
1150
|
+
type: "object",
|
|
1151
|
+
default: { enabled: false },
|
|
1152
|
+
description: "Bridge dependency file changes (package.json, go.mod, etc.) to the inter-agent mailbox for tech-stack audits. Requires the mailbox tool to be registered.",
|
|
1153
|
+
properties: {
|
|
1154
|
+
enabled: { type: "boolean", default: false },
|
|
1155
|
+
targetAgent: { type: "string", default: "tech-stack" },
|
|
1156
|
+
debounceMs: { type: "number", default: 3e3 }
|
|
1157
|
+
}
|
|
1143
1158
|
}
|
|
1144
1159
|
}
|
|
1145
1160
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wrongstack/plugins",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.236.0",
|
|
4
4
|
"description": "Official WrongStack plugin collection — auto-doc, git-autocommit, shell-check, cost-tracker, file-watcher, web-search, json-path, cron, template-engine, semver-bump",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "ECOSTACK TECHNOLOGY OÜ",
|
|
@@ -57,13 +57,13 @@
|
|
|
57
57
|
"dist"
|
|
58
58
|
],
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@types/node": "^
|
|
60
|
+
"@types/node": "^25.9.2",
|
|
61
61
|
"tsup": "^8.5.1",
|
|
62
|
-
"typescript": "^6.0.
|
|
62
|
+
"typescript": "^6.0.3",
|
|
63
63
|
"vitest": "^4.1.8"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@wrongstack/core": "0.
|
|
66
|
+
"@wrongstack/core": "0.236.0"
|
|
67
67
|
},
|
|
68
68
|
"scripts": {
|
|
69
69
|
"build": "tsup",
|