@wrongstack/plugins 0.305.1 → 0.306.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/audit/index.d.ts +6 -0
- package/dist/audit.js +7 -0
- package/dist/factories/index.d.ts +1 -1
- package/dist/factories.js +1 -0
- package/dist/generated-plugin-exports.d.ts +1 -0
- package/dist/gitignore-guard/index.d.ts +82 -0
- package/dist/gitignore-guard.d.ts +2 -0
- package/dist/gitignore-guard.js +442 -0
- package/dist/index.js +2721 -2284
- package/dist/manifest.js +1 -0
- package/dist/plugin-audit-catalog.js +7 -0
- package/dist/spec-linker.js +1 -0
- package/package.json +7 -3
package/dist/manifest.js
CHANGED
|
@@ -168,6 +168,13 @@ var OFFICIAL_PLUGIN_AUDIT_ENTRIES = [
|
|
|
168
168
|
defaultState: "active",
|
|
169
169
|
canDisable: true
|
|
170
170
|
},
|
|
171
|
+
{
|
|
172
|
+
name: "gitignore-guard",
|
|
173
|
+
risk: "low",
|
|
174
|
+
summary: "PostToolUse hook that suggests or appends .gitignore entries for build-artifact-looking files after every write or edit",
|
|
175
|
+
defaultState: "inactive",
|
|
176
|
+
canDisable: true
|
|
177
|
+
},
|
|
171
178
|
{
|
|
172
179
|
name: "path-guard",
|
|
173
180
|
risk: "medium",
|
package/dist/spec-linker.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wrongstack/plugins",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.306.0",
|
|
4
4
|
"description": "Official WrongStack collection of focused plugins for code quality, security, observability, planning, and agent coordination",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "ECOSTACK TECHNOLOGY OÜ",
|
|
@@ -124,6 +124,10 @@
|
|
|
124
124
|
"types": "./dist/loop-breaker.d.ts",
|
|
125
125
|
"import": "./dist/loop-breaker.js"
|
|
126
126
|
},
|
|
127
|
+
"./gitignore-guard": {
|
|
128
|
+
"types": "./dist/gitignore-guard.d.ts",
|
|
129
|
+
"import": "./dist/gitignore-guard.js"
|
|
130
|
+
},
|
|
127
131
|
"./path-guard": {
|
|
128
132
|
"types": "./dist/path-guard.d.ts",
|
|
129
133
|
"import": "./dist/path-guard.js"
|
|
@@ -299,8 +303,8 @@
|
|
|
299
303
|
"vitest": "^4.1.10"
|
|
300
304
|
},
|
|
301
305
|
"dependencies": {
|
|
302
|
-
"@wrongstack/tools": "0.
|
|
303
|
-
"@wrongstack/core": "0.
|
|
306
|
+
"@wrongstack/tools": "0.306.0",
|
|
307
|
+
"@wrongstack/core": "0.306.0"
|
|
304
308
|
},
|
|
305
309
|
"scripts": {
|
|
306
310
|
"build": "node ../../scripts/build-package.mjs",
|