ai-rulez 4.3.0 → 4.3.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.
- package/README.md +4 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -146,9 +146,10 @@ claude = "xhigh" # …and for Claude
|
|
|
146
146
|
Accepted values: `low`, `medium`, `high`, `xhigh`, `max`, `inherit`. ai-rulez emits the right field per preset:
|
|
147
147
|
|
|
148
148
|
- **Claude** — `effort` in `.claude/agents/*.md` frontmatter (per-agent)
|
|
149
|
-
- **Codex** — `model_reasoning_effort` in `.codex/config.toml`
|
|
149
|
+
- **Codex** — `model_reasoning_effort` in `.codex/config.toml` and `.codex/agents/*.toml`
|
|
150
150
|
- **Amp** — `amp.anthropic.effort` in `.amp/settings.json` (global)
|
|
151
151
|
- **Windsurf** — `reasoning_effort` in `.windsurf/agents/*.md` frontmatter (per-agent)
|
|
152
|
+
- **Opencode** — `reasoningEffort` in `.opencode/agents/*.md` frontmatter (per-agent)
|
|
152
153
|
|
|
153
154
|
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.
|
|
154
155
|
|
|
@@ -239,7 +240,7 @@ Add to `.pre-commit-config.yaml`:
|
|
|
239
240
|
```yaml
|
|
240
241
|
repos:
|
|
241
242
|
- repo: https://github.com/Goldziher/ai-rulez
|
|
242
|
-
rev: v4.1
|
|
243
|
+
rev: v4.3.1
|
|
243
244
|
hooks:
|
|
244
245
|
- id: ai-rulez-recursive # generate outputs across the repo
|
|
245
246
|
- id: ai-rulez-validate # dry-run validation
|
|
@@ -261,7 +262,7 @@ pre-commit:
|
|
|
261
262
|
run: ai-rulez generate --recursive
|
|
262
263
|
```
|
|
263
264
|
|
|
264
|
-
Or run `ai-rulez setup-hooks`
|
|
265
|
+
Or run `ai-rulez init --setup-hooks` while initializing a repo to wire hooks in automatically.
|
|
265
266
|
</details>
|
|
266
267
|
|
|
267
268
|
## Documentation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-rulez",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.1",
|
|
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",
|