agentic-team-templates 0.4.1 → 0.4.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 +17 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,7 +3,16 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/cursor-templates)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
**Compatible with:**
|
|
7
|
+
|
|
8
|
+

|
|
9
|
+

|
|
10
|
+
|
|
11
|
+
AI coding assistant templates for Cursor IDE and Claude Code. Pre-configured rules and guidelines that help AI assistants write better code in your projects.
|
|
12
|
+
|
|
13
|
+
**Installs:**
|
|
14
|
+
- **`CLAUDE.md`** - Development guide for Claude-based assistants (Claude Code, Cursor with Claude)
|
|
15
|
+
- **`.cursorrules/`** - Rule files for Cursor IDE
|
|
7
16
|
|
|
8
17
|
> **Disclaimer:** This project is provided for **educational and experimental purposes only**. The author takes no responsibility for any actions, outputs, or consequences resulting from an LLM or AI assistant following these rules. Use at your own risk. Always review AI-generated code before deploying to production.
|
|
9
18
|
|
|
@@ -32,9 +41,7 @@ Navigate to your project directory and run:
|
|
|
32
41
|
npx cursor-templates web-frontend
|
|
33
42
|
```
|
|
34
43
|
|
|
35
|
-
This installs
|
|
36
|
-
- **`CLAUDE.md`** - Main development guide for the AI assistant
|
|
37
|
-
- **`.cursorrules/`** - Directory containing domain-specific coding rules
|
|
44
|
+
This installs the template rules in your project directory.
|
|
38
45
|
|
|
39
46
|
### Install Multiple Templates
|
|
40
47
|
|
|
@@ -123,8 +130,8 @@ After running `npx cursor-templates web-frontend`:
|
|
|
123
130
|
|
|
124
131
|
```
|
|
125
132
|
your-project/
|
|
126
|
-
├── CLAUDE.md #
|
|
127
|
-
└── .cursorrules/ # Rule files
|
|
133
|
+
├── CLAUDE.md # Development guide (Claude Code, Cursor)
|
|
134
|
+
└── .cursorrules/ # Rule files (Cursor IDE)
|
|
128
135
|
├── core-principles.md # Shared
|
|
129
136
|
├── code-quality.md # Shared
|
|
130
137
|
├── security-fundamentals.md # Shared
|
|
@@ -155,7 +162,7 @@ All API calls go through `/lib/api.ts`...
|
|
|
155
162
|
|
|
156
163
|
### Modify Existing Rules
|
|
157
164
|
|
|
158
|
-
Edit any file in `.cursorrules/` directly. Changes take effect immediately
|
|
165
|
+
Edit any file in `.cursorrules/` or `CLAUDE.md` directly. Changes take effect immediately.
|
|
159
166
|
|
|
160
167
|
### Combine with Existing Rules
|
|
161
168
|
|
|
@@ -196,7 +203,9 @@ npx cursor-templates ml-ai data-engineering
|
|
|
196
203
|
## Requirements
|
|
197
204
|
|
|
198
205
|
- **Node.js**: 18.0.0 or higher
|
|
199
|
-
- **
|
|
206
|
+
- **Supported IDEs/Tools**:
|
|
207
|
+
- Cursor IDE (any version with `.cursorrules/` support)
|
|
208
|
+
- Claude Code (reads `CLAUDE.md` automatically)
|
|
200
209
|
|
|
201
210
|
## How to Contribute
|
|
202
211
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-team-templates",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "AI coding assistant templates for Cursor IDE. Pre-configured rules and guidelines that help AI assistants write better code. - use at your own risk",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cursor",
|