waitsec 0.4.3 → 0.4.4

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.
@@ -2,7 +2,7 @@
2
2
  "name": "waitsec",
3
3
  "displayName": "waitsec",
4
4
  "description": "Practical guardrails for AI coding agents. Hold on, think first, code less.",
5
- "version": "0.4.3",
5
+ "version": "0.4.4",
6
6
  "author": {
7
7
  "name": "fastroware"
8
8
  },
package/README.md CHANGED
@@ -150,6 +150,32 @@ waitsec/
150
150
 
151
151
  ---
152
152
 
153
+ ## Feedback, Bugs & Contributing
154
+
155
+ Found a bug, want to suggest a new guardrail, or want to contribute? Everything is tracked through GitHub.
156
+
157
+ ### 1. Found a Bug or Have a Complaint?
158
+ If an AI agent bypassed a guardrail, generated unexpected boilerplate, or an installer command failed:
159
+ 1. Go to [GitHub Issues](https://github.com/fastroware/waitsec/issues).
160
+ 2. Click **New Issue**.
161
+ 3. Include:
162
+ - Your AI assistant or editor (Cursor, Claude Code, Antigravity, Kilo, Cline).
163
+ - The prompt you ran.
164
+ - What the agent did wrong and what behavior was expected instead.
165
+
166
+ ### 2. Suggesting a New Guardrail or Feature
167
+ If you have an idea for a rule that prevents AI slop in specific languages or workflows:
168
+ 1. Open a ticket on [GitHub Issues](https://github.com/fastroware/waitsec/issues) titled `[Feature] your idea`.
169
+ 2. Provide a before-and-after example showing the bad AI output vs the desired clean solution.
170
+
171
+ ### 3. Submitting a Pull Request
172
+ 1. Fork this repository on GitHub.
173
+ 2. Create a feature branch: `git checkout -b feature/my-guardrail`.
174
+ 3. Keep instructions concise, actionable, and strictly free of generic AI slop.
175
+ 4. Submit a **Pull Request** to `main`.
176
+
177
+ ---
178
+
153
179
  ## License
154
180
 
155
181
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waitsec",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Practical guardrails for AI coding agents. Hold on, think first, code less.",
5
5
  "main": "rules/waitsec.md",
6
6
  "bin": {
package/plugin.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "waitsec",
3
3
  "description": "Practical guardrails for AI coding agents. Hold on, think first, code less.",
4
- "version": "0.4.3"
4
+ "version": "0.4.4"
5
5
  }
@@ -27,6 +27,7 @@ You operate under the **waitsec** engineering discipline. These guardrails act a
27
27
  [Task Delivered]
28
28
  ```
29
29
 
30
+
30
31
  ---
31
32
 
32
33
  ## 1. Phase 1: Ingestion — [`ask-first`](./ask-first.md)