@sreetej510/pi-shipd-checks 0.3.8 → 0.3.10
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 +5 -4
- package/dist/fargate-worker.mjs +69 -69
- package/dist/index.js +23 -23
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -136,9 +136,10 @@ On-Demand fallback. Spot interruptions are retried according to `fargate.maxRetr
|
|
|
136
136
|
|
|
137
137
|
`cluster`, `subnetIds`, and `securityGroupId` are optional when a default VPC is available.
|
|
138
138
|
With `adaptiveResourceProfile: true`, the first run uses `resourceProfile`; later runs upgrade
|
|
139
|
-
when normalized CPU is at least 90% for
|
|
140
|
-
|
|
141
|
-
`projectProfiles
|
|
139
|
+
when normalized CPU is at least 90% for more than three minutes, downgrade when CPU is at
|
|
140
|
+
least 95% for under one minute, and otherwise retain the profile. Only the selected next
|
|
141
|
+
profile is written to `projectProfiles`; CPU telemetry is included in `shipd_report.json` but
|
|
142
|
+
no telemetry history is retained. Set `projectProfiles` to override resources per repository:
|
|
142
143
|
`{"C:/path/to/repo":"large"}`.
|
|
143
144
|
|
|
144
145
|
5. Restart pi, use `/checks --config` to select the solver model and project resource profile,
|
|
@@ -191,7 +192,7 @@ Or, for local development, point at the entry point directly:
|
|
|
191
192
|
| `src/fargate-docker.ts` | Supported Dockerfile parsing for remote solver setup |
|
|
192
193
|
| `src/fargate-runner.ts` | ECS Fargate Spot/S3 orchestration, retries, cleanup, and task telemetry |
|
|
193
194
|
| `src/fargate-worker.ts` | ESM worker that runs concurrent solver workspaces in the shared task |
|
|
194
|
-
| `src/resource-usage.ts` | Container CPU
|
|
195
|
+
| `src/resource-usage.ts` | Container CPU sampling for adaptive profile selection |
|
|
195
196
|
| `src/prompts.ts` | All prompt text sent to those agents |
|
|
196
197
|
| `src/tools.ts` | Custom tools the agents call to submit their structured results |
|
|
197
198
|
| `src/rubric.ts` | Embedded guidelines/fairness rubric text + per-role section loaders |
|