pi-cicd 1.0.6 → 1.0.7
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/package.json
CHANGED
|
@@ -21,8 +21,9 @@ requirements:
|
|
|
21
21
|
## Objective
|
|
22
22
|
Monitor CI/CD pipelines, manage canary deployments, and track landing queues for safe production releases.
|
|
23
23
|
|
|
24
|
-
##
|
|
25
|
-
- `/ci` - Show CI status
|
|
24
|
+
## Tools Available
|
|
25
|
+
- `/ci` command - Show CI status and run information
|
|
26
|
+
- `bash` - For running CI scripts and deployment commands
|
|
26
27
|
|
|
27
28
|
## When to Use
|
|
28
29
|
- When deploying to production
|
|
@@ -30,6 +31,7 @@ Monitor CI/CD pipelines, manage canary deployments, and track landing queues for
|
|
|
30
31
|
- When managing canary releases
|
|
31
32
|
- When tracking landing queues
|
|
32
33
|
- When investigating build failures
|
|
34
|
+
- When checking deployment status
|
|
33
35
|
|
|
34
36
|
## CI Status Command
|
|
35
37
|
|
|
@@ -110,6 +112,15 @@ Agent:
|
|
|
110
112
|
# Analyze events and exit code
|
|
111
113
|
```
|
|
112
114
|
|
|
115
|
+
### Run Deployment
|
|
116
|
+
```bash
|
|
117
|
+
# Deploy with canary
|
|
118
|
+
./scripts/deploy.sh --strategy=canary --initial=5%
|
|
119
|
+
|
|
120
|
+
# Check deployment status
|
|
121
|
+
/ci
|
|
122
|
+
```
|
|
123
|
+
|
|
113
124
|
## Configuration
|
|
114
125
|
|
|
115
126
|
### Pipeline Config
|