waitsec 0.1.0 → 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.
- package/.cursor-plugin/plugin.json +6 -1
- package/README.md +10 -3
- package/package.json +13 -4
- package/plugin.json +1 -1
|
@@ -2,5 +2,10 @@
|
|
|
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.
|
|
5
|
+
"version": "0.1.2",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "fastroware"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/fastroware/waitsec",
|
|
10
|
+
"repository": "https://github.com/fastroware/waitsec"
|
|
6
11
|
}
|
package/README.md
CHANGED
|
@@ -50,7 +50,7 @@ Pick your editor (Kilo Code, Cline, Cursor, or Antigravity), and the installer p
|
|
|
50
50
|
Copy [rules/waitsec.md](rules/waitsec.md) to your project root as `.kilorules` (or `.clinerules`):
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
curl -o .kilorules https://raw.githubusercontent.com/
|
|
53
|
+
curl -o .kilorules https://raw.githubusercontent.com/fastroware/waitsec/main/rules/waitsec.md
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
You can also paste the contents of `rules/waitsec.md` into the **Custom Instructions** field in your Kilo Code extension settings.
|
|
@@ -59,14 +59,14 @@ You can also paste the contents of `rules/waitsec.md` into the **Custom Instruct
|
|
|
59
59
|
Install the plugin using the Antigravity CLI:
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
|
-
agy plugin install https://github.com/
|
|
62
|
+
agy plugin install https://github.com/fastroware/waitsec
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
### 4. Claude Code
|
|
66
66
|
Add the marketplace and install:
|
|
67
67
|
|
|
68
68
|
```text
|
|
69
|
-
/plugin marketplace add https://github.com/
|
|
69
|
+
/plugin marketplace add https://github.com/fastroware/waitsec
|
|
70
70
|
/plugin install waitsec@waitsec
|
|
71
71
|
```
|
|
72
72
|
|
|
@@ -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,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "waitsec",
|
|
3
|
-
"version": "0.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": "
|
|
7
|
+
"waitsec": "bin/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
|
-
"start": "node ./bin/cli.js"
|
|
10
|
+
"start": "node ./bin/cli.js",
|
|
11
|
+
"ship": "node ./scripts/ship.js"
|
|
11
12
|
},
|
|
12
13
|
"keywords": [
|
|
13
14
|
"ai",
|
|
@@ -21,8 +22,16 @@
|
|
|
21
22
|
"claude-code",
|
|
22
23
|
"developer-tools"
|
|
23
24
|
],
|
|
24
|
-
"author": "",
|
|
25
|
+
"author": "fastroware",
|
|
25
26
|
"license": "MIT",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/fastroware/waitsec.git"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://github.com/fastroware/waitsec#readme",
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/fastroware/waitsec/issues"
|
|
34
|
+
},
|
|
26
35
|
"files": [
|
|
27
36
|
"bin/",
|
|
28
37
|
"rules/",
|
package/plugin.json
CHANGED