waitsec 0.1.1 → 0.1.2

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.1.1",
5
+ "version": "0.1.2",
6
6
  "author": {
7
7
  "name": "fastroware"
8
8
  },
package/README.md CHANGED
@@ -82,6 +82,13 @@ composer require --dev waitsec/waitsec
82
82
 
83
83
  The post-install script automatically adds `.kilorules` to your root directory.
84
84
 
85
+ ### 7. Agent Skills Directory (skills.sh)
86
+ Install via the universal skills CLI:
87
+
88
+ ```bash
89
+ npx skills add fastroware/waitsec
90
+ ```
91
+
85
92
  ---
86
93
 
87
94
  ## Structure
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "waitsec",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Practical guardrails for AI coding agents. Hold on, think first, code less.",
5
5
  "main": "rules/waitsec.md",
6
6
  "bin": {
7
- "waitsec": "./bin/cli.js"
7
+ "waitsec": "bin/cli.js"
8
8
  },
9
9
  "scripts": {
10
10
  "start": "node ./bin/cli.js",
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.1.1"
4
+ "version": "0.1.2"
5
5
  }