agentic-team-templates 0.8.1 → 0.8.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 +9 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
AI coding assistant templates for Cursor IDE, Claude Code, and GitHub Copilot. Pre-configured rules and guidelines that help AI assistants write better code in your projects.
|
|
13
13
|
|
|
14
14
|
**Installs (configurable via `--ide`):**
|
|
15
|
+
|
|
15
16
|
- **`CLAUDE.md`** - Development guide for Claude-based assistants (Claude Code, Cursor with Claude)
|
|
16
17
|
- **`.cursorrules/`** - Rule files for Cursor IDE
|
|
17
18
|
- **`.github/copilot-instructions.md`** - Instructions for GitHub Copilot
|
|
@@ -188,7 +189,7 @@ Each template adds domain-specific rules. For example, `web-frontend` includes:
|
|
|
188
189
|
|
|
189
190
|
After running `npx agentic-team-templates web-frontend`:
|
|
190
191
|
|
|
191
|
-
```
|
|
192
|
+
```text
|
|
192
193
|
your-project/
|
|
193
194
|
├── CLAUDE.md # Development guide (Claude Code, Cursor)
|
|
194
195
|
├── .cursorrules/ # Rule files (Cursor IDE)
|
|
@@ -296,7 +297,8 @@ npx agentic-team-templates --version
|
|
|
296
297
|
```
|
|
297
298
|
|
|
298
299
|
Output:
|
|
299
|
-
|
|
300
|
+
|
|
301
|
+
```text
|
|
300
302
|
agentic-team-templates v0.7.0
|
|
301
303
|
Changelog: https://github.com/djm204/agentic-team-templates/releases/tag/agentic-team-templates-v0.7.0
|
|
302
304
|
```
|
|
@@ -325,7 +327,7 @@ We welcome contributions! Here's how to add new templates or improve existing on
|
|
|
325
327
|
|
|
326
328
|
1. **Create the template directory structure:**
|
|
327
329
|
|
|
328
|
-
```
|
|
330
|
+
```text
|
|
329
331
|
templates/your-template/
|
|
330
332
|
├── CLAUDE.md # Main development guide (required)
|
|
331
333
|
└── .cursorrules/
|
|
@@ -348,6 +350,7 @@ templates/your-template/
|
|
|
348
350
|
### Template Guidelines
|
|
349
351
|
|
|
350
352
|
**CLAUDE.md should include:**
|
|
353
|
+
|
|
351
354
|
- Overview and scope
|
|
352
355
|
- Key principles (3-5 bullet points)
|
|
353
356
|
- Technology stack table
|
|
@@ -356,6 +359,7 @@ templates/your-template/
|
|
|
356
359
|
- Common pitfalls with good/bad examples
|
|
357
360
|
|
|
358
361
|
**Rule files should:**
|
|
362
|
+
|
|
359
363
|
- Focus on one topic (e.g., testing, security, performance)
|
|
360
364
|
- Be actionable with concrete code examples
|
|
361
365
|
- Include both "do" and "don't" examples
|
|
@@ -366,10 +370,12 @@ templates/your-template/
|
|
|
366
370
|
1. Fork the repository
|
|
367
371
|
2. Make your changes
|
|
368
372
|
3. Test locally:
|
|
373
|
+
|
|
369
374
|
```bash
|
|
370
375
|
# From repo root, test installation
|
|
371
376
|
node bin/cli.js your-template --dry-run
|
|
372
377
|
```
|
|
378
|
+
|
|
373
379
|
4. Submit a PR with:
|
|
374
380
|
- Clear description of changes
|
|
375
381
|
- Rationale for additions/modifications
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-team-templates",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.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",
|