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