ai-rulez 4.0.7 → 4.1.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 +16 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -119,6 +119,22 @@ source = "https://github.com/company/ai-rules.git"
|
|
|
119
119
|
merge_strategy = "local-override"
|
|
120
120
|
```
|
|
121
121
|
|
|
122
|
+
**Per-agent reasoning effort** — Tune how hard Claude Code subagents think:
|
|
123
|
+
```yaml
|
|
124
|
+
# .ai-rulez/agents/security-reviewer.md
|
|
125
|
+
---
|
|
126
|
+
name: security-reviewer
|
|
127
|
+
description: Reviews code for security regressions
|
|
128
|
+
effort: high
|
|
129
|
+
---
|
|
130
|
+
```
|
|
131
|
+
```toml
|
|
132
|
+
# .ai-rulez/config.yaml or config.toml — sets the default for agents that don't override
|
|
133
|
+
[defaults]
|
|
134
|
+
effort = "medium"
|
|
135
|
+
```
|
|
136
|
+
Accepted values: `low`, `medium`, `high`, `xhigh`, `max`, `inherit`. Available levels depend on the model. Other presets ignore the field until they ship native support.
|
|
137
|
+
|
|
122
138
|
**Installed Skills** — Pull reusable skills from external repos:
|
|
123
139
|
```toml
|
|
124
140
|
[[installed_skills]]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-rulez",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.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",
|