ai-rulez 3.2.0 → 3.2.2
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 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -73,6 +73,7 @@ This creates a `.ai-rulez/` directory:
|
|
|
73
73
|
├── skills/ # Specialized AI agent configurations
|
|
74
74
|
│ └── code-reviewer/
|
|
75
75
|
│ └── SKILL.md
|
|
76
|
+
├── agents/ # Agent prompt files
|
|
76
77
|
├── domains/ # Optional domain-specific organization
|
|
77
78
|
└── mcp.yaml # Model Context Protocol servers
|
|
78
79
|
```
|
|
@@ -130,7 +131,7 @@ presets:
|
|
|
130
131
|
|
|
131
132
|
### 3. Add Your Rules and Context
|
|
132
133
|
|
|
133
|
-
Create markdown files in `.ai-rulez/rules/`, `.ai-rulez/context/`, and `.ai-rulez/
|
|
134
|
+
Create markdown files in `.ai-rulez/rules/`, `.ai-rulez/context/`, `.ai-rulez/skills/`, and `.ai-rulez/agents/`:
|
|
134
135
|
|
|
135
136
|
```markdown
|
|
136
137
|
---
|
|
@@ -196,6 +197,20 @@ You are an expert in PostgreSQL optimization and query design.
|
|
|
196
197
|
Focus on performance, indexing strategies, and query optimization.
|
|
197
198
|
```
|
|
198
199
|
|
|
200
|
+
**Agents** (`.ai-rulez/agents/`)
|
|
201
|
+
|
|
202
|
+
Agent prompt files used by tools that support agent-specific instructions.
|
|
203
|
+
|
|
204
|
+
```markdown
|
|
205
|
+
---
|
|
206
|
+
priority: high
|
|
207
|
+
---
|
|
208
|
+
|
|
209
|
+
# Code Reviewer Agent
|
|
210
|
+
|
|
211
|
+
Review pull requests with a focus on correctness and maintainability.
|
|
212
|
+
```
|
|
213
|
+
|
|
199
214
|
</details>
|
|
200
215
|
|
|
201
216
|
### 4. Generate Tool Configurations
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-rulez",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.2",
|
|
4
4
|
"description": "⚡ One config to rule them all. Centralized AI assistant configuration management - generate rules for Claude, Cursor, Copilot, Windsurf and more from a single YAML file.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|