agentic-team-templates 0.8.0 → 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.
Files changed (2) hide show
  1. package/README.md +13 -7
  2. 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
@@ -23,14 +24,14 @@ AI coding assistant templates for Cursor IDE, Claude Code, and GitHub Copilot. P
23
24
  No installation required. Run directly with `npx`:
24
25
 
25
26
  ```bash
26
- npx agentic-team-templates <template-name>
27
+ npx agentic-team-templates [template-name]
27
28
  ```
28
29
 
29
30
  Or install globally:
30
31
 
31
32
  ```bash
32
33
  npm install -g agentic-team-templates
33
- agentic-team-templates <template-name>
34
+ agentic-team-templates [template-name]
34
35
  ```
35
36
 
36
37
  ## How to Use
@@ -133,7 +134,7 @@ npx agentic-team-templates --reset --force
133
134
 
134
135
  | Option | Description |
135
136
  |--------|-------------|
136
- | `--ide=<name>` | Target IDE: `cursor`, `claude`, or `codex` (can be used multiple times) |
137
+ | `--ide=[name]` | Target IDE: `cursor`, `claude`, or `codex` (can be used multiple times) |
137
138
  | `--list`, `-l` | List all available templates |
138
139
  | `--dry-run` | Preview changes without writing files |
139
140
  | `--force`, `-f` | Overwrite/remove even if files were modified |
@@ -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)
@@ -278,7 +279,7 @@ If you're getting errors for options that should exist (like `--reset`), you may
278
279
 
279
280
  ```bash
280
281
  # Force latest version (recommended)
281
- npx agentic-team-templates@latest <command>
282
+ npx agentic-team-templates@latest [command]
282
283
 
283
284
  # Clear npx cache
284
285
  npx clear-npx-cache
@@ -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.0",
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",