@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/manifest.js CHANGED
@@ -24,6 +24,7 @@ var OFFICIAL_PLUGIN_NAMES = [
24
24
  "session-recap",
25
25
  "spec-linker",
26
26
  "loop-breaker",
27
+ "gitignore-guard",
27
28
  "path-guard",
28
29
  "process-guard",
29
30
  "context-pins",
@@ -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",
@@ -44,6 +44,7 @@ var OFFICIAL_PLUGIN_NAMES = [
44
44
  "session-recap",
45
45
  "spec-linker",
46
46
  "loop-breaker",
47
+ "gitignore-guard",
47
48
  "path-guard",
48
49
  "process-guard",
49
50
  "context-pins",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrongstack/plugins",
3
- "version": "0.305.1",
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.305.1",
303
- "@wrongstack/core": "0.305.1"
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",