waitsec 0.1.0 → 0.1.1

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,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.0"
5
+ "version": "0.1.1",
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/your-username/waitsec/main/rules/waitsec.md
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/your-username/waitsec
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/your-username/waitsec
69
+ /plugin marketplace add https://github.com/fastroware/waitsec
70
70
  /plugin install waitsec@waitsec
71
71
  ```
72
72
 
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "waitsec",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
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
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
@@ -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.0"
4
+ "version": "0.1.1"
5
5
  }