ai-rulez 3.12.0 → 3.13.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 +6 -17
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ npx ai-rulez@latest init && npx ai-rulez@latest generate
|
|
|
16
16
|
|
|
17
17
|
- **18 preset generators**: Claude, Cursor, Windsurf, Copilot, Gemini, Cline, Continue.dev, Amp, Junie, Codex, OpenCode, and custom presets
|
|
18
18
|
- **Commands system**: Define slash commands once, use them across tools that support it
|
|
19
|
-
- **
|
|
19
|
+
- **Concise builtins**: Optimized builtin rules for minimal token footprint
|
|
20
20
|
- **Remote includes**: Pull shared rules from git repos (company standards, team configs)
|
|
21
21
|
- **Profile system**: Generate different configs for backend/frontend/QA teams
|
|
22
22
|
- **MCP server**: Let AI assistants manage their own rules via Model Context Protocol
|
|
@@ -277,7 +277,7 @@ The MCP server exposes CRUD operations, validation, and generation to AI assista
|
|
|
277
277
|
|
|
278
278
|
## Builtins
|
|
279
279
|
|
|
280
|
-
|
|
280
|
+
27 built-in domains ship embedded in the binary — opinionated conventions ready to use without external includes:
|
|
281
281
|
|
|
282
282
|
```yaml
|
|
283
283
|
builtins:
|
|
@@ -289,22 +289,11 @@ builtins:
|
|
|
289
289
|
- default-commands
|
|
290
290
|
```
|
|
291
291
|
|
|
292
|
-
- **Universal** (
|
|
293
|
-
- **Languages** (
|
|
294
|
-
- **Bindings** (
|
|
292
|
+
- **Universal** (9): `ai-governance`\*, `agent-delegation`\*, `security`, `git-workflow`, `code-quality`, `testing`, `token-efficiency`, `documentation`, `default-commands`
|
|
293
|
+
- **Languages** (10): `rust`, `python`, `typescript`, `go`, `java`, `ruby`, `php`, `elixir`, `csharp`, `r`
|
|
294
|
+
- **Bindings** (9): `pyo3`, `napi-rs`, `magnus`, `ext-php-rs`, `rustler`, `wasm`, `jni-rs`, `extendr`, `cgo`
|
|
295
295
|
|
|
296
|
-
Use `builtins: true` for all, or pick specific ones.
|
|
297
|
-
|
|
298
|
-
## Compression
|
|
299
|
-
|
|
300
|
-
Reduce context size for token-constrained tools:
|
|
301
|
-
|
|
302
|
-
```yaml
|
|
303
|
-
compression:
|
|
304
|
-
level: moderate # off, light, moderate, aggressive, maximum
|
|
305
|
-
```
|
|
306
|
-
|
|
307
|
-
At `moderate` level, output is ~34% smaller through whitespace optimization and token reduction.
|
|
296
|
+
\* Auto-included by default. Use `builtins: true` for all, or pick specific ones. Exclude auto-includes with `!` prefix (e.g., `!agent-delegation`).
|
|
308
297
|
|
|
309
298
|
## Documentation
|
|
310
299
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-rulez",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.0",
|
|
4
4
|
"description": "Directory-based AI governance for Claude, Cursor, Copilot, Windsurf and 14+ tools. Define rules, context, skills and agents in .ai-rulez/ — generate synchronized configs for all your AI assistants.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|