ai-rulez 4.2.1 → 4.3.0
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/README.md +17 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ ai-rulez generates correct, tool-native output for **19 platforms**: Claude, Cur
|
|
|
40
40
|
|
|
41
41
|
## What Ships Out of the Box
|
|
42
42
|
|
|
43
|
-
ai-rulez isn't just a config generator. It ships with **
|
|
43
|
+
ai-rulez isn't just a config generator. It ships with **33 builtin domains** containing opinionated rules, agents, and workflows that establish a professional development baseline immediately.
|
|
44
44
|
|
|
45
45
|
### Builtin Rules (auto-included)
|
|
46
46
|
|
|
@@ -77,7 +77,7 @@ Enable these based on your stack:
|
|
|
77
77
|
|
|
78
78
|
**Bindings** (10): `pyo3`, `napi-rs`, `magnus`, `ext-php-rs`, `rustler`, `wasm`, `jni-rs`, `extendr`, `cgo`, `vite-plus`
|
|
79
79
|
|
|
80
|
-
**Operational**: `cicd`, `docker`, `observability`, `documentation`, `default-commands`
|
|
80
|
+
**Operational**: `cicd`, `docker`, `observability`, `documentation`, `polyglot-bindings`, `default-commands`
|
|
81
81
|
|
|
82
82
|
```toml
|
|
83
83
|
# .ai-rulez/config.toml
|
|
@@ -99,12 +99,14 @@ builtins = ["rust", "python", "pyo3", "cicd", "docker", "default-commands"]
|
|
|
99
99
|
ai-rulez scales from solo projects to large organizations:
|
|
100
100
|
|
|
101
101
|
**Domains** — Group content by feature, language, or team:
|
|
102
|
-
|
|
102
|
+
|
|
103
|
+
```text
|
|
103
104
|
.ai-rulez/domains/backend/rules/
|
|
104
105
|
.ai-rulez/domains/frontend/rules/
|
|
105
106
|
```
|
|
106
107
|
|
|
107
108
|
**Profiles** — Generate different configs for different audiences:
|
|
109
|
+
|
|
108
110
|
```toml
|
|
109
111
|
[profiles]
|
|
110
112
|
backend = ["backend", "database"]
|
|
@@ -112,6 +114,7 @@ frontend = ["frontend", "ui"]
|
|
|
112
114
|
```
|
|
113
115
|
|
|
114
116
|
**Remote Includes** — Share rules across repositories:
|
|
117
|
+
|
|
115
118
|
```toml
|
|
116
119
|
[[includes]]
|
|
117
120
|
name = "company-standards"
|
|
@@ -120,6 +123,7 @@ merge_strategy = "local-override"
|
|
|
120
123
|
```
|
|
121
124
|
|
|
122
125
|
**Reasoning effort across providers** — Tune how hard each AI tool thinks:
|
|
126
|
+
|
|
123
127
|
```yaml
|
|
124
128
|
# .ai-rulez/agents/security-reviewer.md
|
|
125
129
|
---
|
|
@@ -128,6 +132,7 @@ description: Reviews code for security regressions
|
|
|
128
132
|
effort: high
|
|
129
133
|
---
|
|
130
134
|
```
|
|
135
|
+
|
|
131
136
|
```toml
|
|
132
137
|
# .ai-rulez/config.toml
|
|
133
138
|
[defaults]
|
|
@@ -137,7 +142,9 @@ effort = "medium" # global default for every supported preset
|
|
|
137
142
|
codex = "high" # overrides the global default for Codex
|
|
138
143
|
claude = "xhigh" # …and for Claude
|
|
139
144
|
```
|
|
145
|
+
|
|
140
146
|
Accepted values: `low`, `medium`, `high`, `xhigh`, `max`, `inherit`. ai-rulez emits the right field per preset:
|
|
147
|
+
|
|
141
148
|
- **Claude** — `effort` in `.claude/agents/*.md` frontmatter (per-agent)
|
|
142
149
|
- **Codex** — `model_reasoning_effort` in `.codex/config.toml` (global)
|
|
143
150
|
- **Amp** — `amp.anthropic.effort` in `.amp/settings.json` (global)
|
|
@@ -146,6 +153,7 @@ Accepted values: `low`, `medium`, `high`, `xhigh`, `max`, `inherit`. ai-rulez em
|
|
|
146
153
|
Each preset maps the value to its own vocabulary; tools without a documented config surface (Cursor, Copilot, Gemini, etc.) are silently skipped. See [docs/configuration.md](docs/configuration.md#defaults) for the full mapping table.
|
|
147
154
|
|
|
148
155
|
**Installed Skills** — Pull reusable skills from external repos:
|
|
156
|
+
|
|
149
157
|
```toml
|
|
150
158
|
[[installed_skills]]
|
|
151
159
|
name = "kreuzberg"
|
|
@@ -173,6 +181,7 @@ No install needed — `npx ai-rulez@latest <command>` works out of the box. Pick
|
|
|
173
181
|
```bash
|
|
174
182
|
brew install goldziher/tap/ai-rulez
|
|
175
183
|
```
|
|
184
|
+
|
|
176
185
|
</details>
|
|
177
186
|
|
|
178
187
|
<details>
|
|
@@ -181,6 +190,7 @@ brew install goldziher/tap/ai-rulez
|
|
|
181
190
|
```bash
|
|
182
191
|
npx ai-rulez@latest <command>
|
|
183
192
|
```
|
|
193
|
+
|
|
184
194
|
</details>
|
|
185
195
|
|
|
186
196
|
<details>
|
|
@@ -189,6 +199,7 @@ npx ai-rulez@latest <command>
|
|
|
189
199
|
```bash
|
|
190
200
|
npm install -g ai-rulez
|
|
191
201
|
```
|
|
202
|
+
|
|
192
203
|
</details>
|
|
193
204
|
|
|
194
205
|
<details>
|
|
@@ -197,6 +208,7 @@ npm install -g ai-rulez
|
|
|
197
208
|
```bash
|
|
198
209
|
uvx ai-rulez <command>
|
|
199
210
|
```
|
|
211
|
+
|
|
200
212
|
</details>
|
|
201
213
|
|
|
202
214
|
<details>
|
|
@@ -205,6 +217,7 @@ uvx ai-rulez <command>
|
|
|
205
217
|
```bash
|
|
206
218
|
uv tool install ai-rulez
|
|
207
219
|
```
|
|
220
|
+
|
|
208
221
|
</details>
|
|
209
222
|
|
|
210
223
|
<details>
|
|
@@ -215,6 +228,7 @@ pip install ai-rulez
|
|
|
215
228
|
# or, isolated:
|
|
216
229
|
pipx install ai-rulez
|
|
217
230
|
```
|
|
231
|
+
|
|
218
232
|
</details>
|
|
219
233
|
|
|
220
234
|
<details>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-rulez",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.0",
|
|
4
4
|
"description": "Complete AI development workflow for 19+ tools. Ships with builtin rules, agents, and conventions. Generate native configs for Claude, Cursor, Copilot, Windsurf, Gemini, Codex and more from a single source.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|