cp-toolkit 2.0.0 → 2.0.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 +14 -14
- package/package.json +2 -2
- /package/bin/{cp-kit.js → cp-toolkit.js} +0 -0
package/README.md
CHANGED
|
@@ -16,20 +16,20 @@ npx cp-toolkit init
|
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
18
|
# Initialize in current directory
|
|
19
|
-
cp-
|
|
19
|
+
cp-toolkit init
|
|
20
20
|
|
|
21
21
|
# Initialize in new directory
|
|
22
|
-
cp-
|
|
22
|
+
cp-toolkit init my-project
|
|
23
23
|
|
|
24
24
|
# Skip prompts (use defaults)
|
|
25
|
-
cp-
|
|
25
|
+
cp-toolkit init -y
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
## Commands
|
|
29
29
|
|
|
30
|
-
### `cp-
|
|
30
|
+
### `cp-toolkit init [directory]`
|
|
31
31
|
|
|
32
|
-
Initialize cp-
|
|
32
|
+
Initialize cp-toolkit with GitHub Copilot 2026 structure:
|
|
33
33
|
|
|
34
34
|
```
|
|
35
35
|
.github/
|
|
@@ -51,34 +51,34 @@ Options:
|
|
|
51
51
|
- `-y, --yes` - Skip prompts, use defaults
|
|
52
52
|
- `-f, --force` - Overwrite existing configuration
|
|
53
53
|
|
|
54
|
-
### `cp-
|
|
54
|
+
### `cp-toolkit add <type> <name>`
|
|
55
55
|
|
|
56
56
|
Add new components:
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
59
|
# Add a new agent
|
|
60
|
-
cp-
|
|
60
|
+
cp-toolkit add agent my-specialist
|
|
61
61
|
|
|
62
62
|
# Add a new instruction
|
|
63
|
-
cp-
|
|
63
|
+
cp-toolkit add instruction golang
|
|
64
64
|
```
|
|
65
65
|
|
|
66
|
-
### `cp-
|
|
66
|
+
### `cp-toolkit list [type]`
|
|
67
67
|
|
|
68
68
|
List available components:
|
|
69
69
|
|
|
70
70
|
```bash
|
|
71
|
-
cp-
|
|
72
|
-
cp-
|
|
73
|
-
cp-
|
|
71
|
+
cp-toolkit list agents # List all agents
|
|
72
|
+
cp-toolkit list instructions # List all instructions
|
|
73
|
+
cp-toolkit list all # List everything
|
|
74
74
|
```
|
|
75
75
|
|
|
76
|
-
### `cp-
|
|
76
|
+
### `cp-toolkit doctor`
|
|
77
77
|
|
|
78
78
|
Check configuration and diagnose issues:
|
|
79
79
|
|
|
80
80
|
```bash
|
|
81
|
-
cp-
|
|
81
|
+
cp-toolkit doctor
|
|
82
82
|
```
|
|
83
83
|
|
|
84
84
|
## GitHub Copilot Integration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cp-toolkit",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Copilot Toolkit - AI Agent framework for GitHub Copilot, Claude, Gemini CLI, and other AI assistants",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-agents",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"type": "module",
|
|
22
22
|
"bin": {
|
|
23
|
-
"cp-
|
|
23
|
+
"cp-toolkit": "./bin/cp-toolkit.js"
|
|
24
24
|
},
|
|
25
25
|
"main": "./src/index.js",
|
|
26
26
|
"files": [
|
|
File without changes
|