pi-cicd 1.0.10 → 1.0.12

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-cicd",
3
- "version": "1.0.10",
3
+ "version": "1.0.12",
4
4
  "description": "Extension for Pi coding agent",
5
5
  "type": "module",
6
6
  "main": "./index.ts",
@@ -16,9 +16,9 @@
16
16
  "*.ts",
17
17
  "*.mjs",
18
18
  "src/**/*.ts",
19
- "skills/**/*",
20
19
  "README.md",
21
20
  "docs/",
21
+ "skills/",
22
22
  "CHANGELOG.md",
23
23
  "LICENSE"
24
24
  ],
@@ -142,3 +142,30 @@ deploy:
142
142
  - With pi-pipeline for verification gates
143
143
  - With pi-debug for error investigation
144
144
  - With pi-render for status display
145
+
146
+ ## Integration with pi-recollect
147
+
148
+ ### Store Deployment Patterns
149
+
150
+ ```typescript
151
+ memory_store({
152
+ category: "deployment",
153
+ title: "Docker build failed on memory",
154
+ content: `Issue: Docker build OOM killed
155
+ Fix: Added --memory=2g to docker build
156
+ Prevention: Use multi-stage build for smaller images`,
157
+ metadata: {
158
+ environment: "production",
159
+ type: "OOM"
160
+ }
161
+ })
162
+ ```
163
+
164
+ ### Before Deploying
165
+
166
+ ```typescript
167
+ memory_search({
168
+ query: "deployment failed production",
169
+ maxResults: 5
170
+ })
171
+ ```