@alevental/cccp 0.4.2 → 0.4.3
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.
|
@@ -743,3 +743,13 @@ npx @alevental/cccp@latest run -f pipeline.yaml -p test --dry-run
|
|
|
743
743
|
```
|
|
744
744
|
|
|
745
745
|
This shows all assembled prompts, resolved agent paths, and interpolated variables without dispatching any agents.
|
|
746
|
+
|
|
747
|
+
## Updating This Skill
|
|
748
|
+
|
|
749
|
+
This skill ships with the `@alevental/cccp` package. To get the latest version (e.g. after a package update):
|
|
750
|
+
|
|
751
|
+
```bash
|
|
752
|
+
npx @alevental/cccp@latest update-skills
|
|
753
|
+
```
|
|
754
|
+
|
|
755
|
+
This overwrites `/cccp-pipeline` and `/cccp-run` skills with the latest content without touching agents, pipelines, or project config.
|
|
@@ -85,6 +85,14 @@ Register in `.mcp.json`:
|
|
|
85
85
|
npx @alevental/cccp@latest init [-d <dir>]
|
|
86
86
|
```
|
|
87
87
|
|
|
88
|
+
### `update-skills` — Update skills to latest version
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
npx @alevental/cccp@latest update-skills [-d <dir>]
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
Updates `/cccp-run` and `/cccp-pipeline` skills to the version shipped with the installed package. Does not touch agents, pipelines, `cccp.yaml`, or any other files.
|
|
95
|
+
|
|
88
96
|
### `examples` — Scaffold all agents and example pipelines
|
|
89
97
|
|
|
90
98
|
```bash
|