waitsec 0.5.9 → 0.5.11

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.5.9",
5
+ "version": "0.5.11",
6
6
  "author": {
7
7
  "name": "fastroware"
8
8
  },
package/README.md CHANGED
@@ -4,11 +4,11 @@
4
4
  </a>
5
5
  </p>
6
6
 
7
- <h1 align="center">
7
+ <!-- <h1 align="center">
8
8
  <img src="https://raw.githubusercontent.com/fastroware/waitsec/main/assets/logo-waitsec.png" alt="waitsec logo" width="88" height="88">
9
9
  <br>
10
10
  waitsec
11
- </h1>
11
+ </h1> -->
12
12
 
13
13
  <p align="center">
14
14
  <a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-2ea44f" alt="License: MIT"></a>
@@ -29,29 +29,6 @@ Think of it as a checklist taped to your agent's desk. When you ask for a featur
29
29
 
30
30
  If you have ever asked for a small change and got twelve new files, or reported a one line bug and watched the agent edit five unrelated files, waitsec is for that problem.
31
31
 
32
- ## What "global" means
33
-
34
- When you install waitsec, the installer asks for a scope. That is only about where the rule files are saved.
35
-
36
- | Scope | Where the files go | Best for |
37
- | :--- | :--- | :--- |
38
- | **This project only** | Inside the current folder, for example `.agents/skills/` or `.claude/skills/`, plus a rules file | Teams. The rules travel with the repository and can be committed. |
39
- | **Everywhere (Global)** | Your home directory, for example `~/.agents/skills` or `~/.claude/skills` | You. Every project on this computer gets the guardrails, even brand new ones. |
40
-
41
- You can install both. A project install wins inside that project.
42
-
43
- Full explanation: [docs/installation.md](https://github.com/fastroware/waitsec/blob/main/docs/installation.md) or [Bahasa Indonesia](https://github.com/fastroware/waitsec/blob/main/docs/installation-id.md).
44
-
45
- ## Features
46
-
47
- | Skill | What it does | Use it when |
48
- | :--- | :--- | :--- |
49
- | `waitsec` | Core 5 guardrails: ask-first, anti-overengineering, small-diff, debug-first, verify-first | Always. This is the base every extension builds on. |
50
- | `waitsec-pagemaker` | Builds clean web pages: project recon, design preferences, responsive layout, UX, SEO and GEO, Schema.org, auth pages, motion, 3D, and image sourcing | You build or redesign web pages. |
51
- | `waitsec-code` | Clean code: no comment noise, small focused functions, no unnecessary dependencies | You write or refactor source code. |
52
- | `waitsec-ui` | Frontend restraint: anti-slop visuals, mobile-first layout, clean UI copy | You work on UI or design systems. |
53
- | `waitsec-quality` | Security auditing, realistic tests, safe database migrations | You touch auth, payments, tests, or migrations. |
54
-
55
32
  ## Install
56
33
 
57
34
  Use the interactive installer in your project folder. It handles every editor and puts the files in the right place:
@@ -85,6 +62,29 @@ npx skills add fastroware/waitsec --skill waitsec waitsec-pagemaker waitsec-ui
85
62
 
86
63
  In the interactive installer `npx waitsec`, you do this in the first prompt: all skills are checked, so just unselect the ones you do not want and keep the rest.
87
64
 
65
+ ## What "global" means
66
+
67
+ When you install waitsec, the installer asks for a scope. That is only about where the rule files are saved.
68
+
69
+ | Scope | Where the files go | Best for |
70
+ | :--- | :--- | :--- |
71
+ | **This project only** | Inside the current folder, for example `.agents/skills/` or `.claude/skills/`, plus a rules file | Teams. The rules travel with the repository and can be committed. |
72
+ | **Everywhere (Global)** | Your home directory, for example `~/.agents/skills` or `~/.claude/skills` | You. Every project on this computer gets the guardrails, even brand new ones. |
73
+
74
+ You can install both. A project install wins inside that project.
75
+
76
+ Full explanation: [docs/installation.md](https://github.com/fastroware/waitsec/blob/main/docs/installation.md) or [Bahasa Indonesia](https://github.com/fastroware/waitsec/blob/main/docs/installation-id.md).
77
+
78
+ ## Features
79
+
80
+ | Skill | What it does | Use it when |
81
+ | :--- | :--- | :--- |
82
+ | `waitsec` | Core 5 guardrails: ask-first, anti-overengineering, small-diff, debug-first, verify-first | Always. This is the base every extension builds on. |
83
+ | `waitsec-pagemaker` | Builds clean web pages: project recon, design preferences, responsive layout, UX, SEO and GEO, Schema.org, auth pages, motion, 3D, and image sourcing | You build or redesign web pages. |
84
+ | `waitsec-code` | Clean code: no comment noise, small focused functions, no unnecessary dependencies | You write or refactor source code. |
85
+ | `waitsec-ui` | Frontend restraint: anti-slop visuals, mobile-first layout, clean UI copy | You work on UI or design systems. |
86
+ | `waitsec-quality` | Security auditing, realistic tests, safe database migrations | You touch auth, payments, tests, or migrations. |
87
+
88
88
  ## How to use it
89
89
 
90
90
  1. Install it once, either for a project or globally.
@@ -184,6 +184,18 @@ If an agent bypassed a guardrail, generated unexpected boilerplate, or an instal
184
184
  3. Keep instructions concise, actionable, and free of generic AI slop.
185
185
  4. Submit a **Pull Request** to `main`.
186
186
 
187
+ ## Contributors
188
+
189
+ Thanks to everyone who has contributed to this project.
190
+
191
+ <a href="https://github.com/fastroware/waitsec/graphs/contributors">
192
+ <img src="https://contrib.rocks/image?repo=fastroware/waitsec" alt="waitsec contributors">
193
+ </a>
194
+
195
+ - [fastroware](https://github.com/fastroware): creator and maintainer.
196
+
197
+ Want your name here? See the contributing section above.
198
+
187
199
  ## License
188
200
 
189
201
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waitsec",
3
- "version": "0.5.9",
3
+ "version": "0.5.11",
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.5.9"
4
+ "version": "0.5.11"
5
5
  }