@sreetej510/pi-shipd-checks 0.3.8 → 0.3.9
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 +3 -3
- package/dist/fargate-worker.mjs +69 -69
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -136,8 +136,8 @@ 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
|
-
|
|
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. Set
|
|
141
141
|
`projectProfiles` to override resources per repository:
|
|
142
142
|
`{"C:/path/to/repo":"large"}`.
|
|
143
143
|
|
|
@@ -191,7 +191,7 @@ Or, for local development, point at the entry point directly:
|
|
|
191
191
|
| `src/fargate-docker.ts` | Supported Dockerfile parsing for remote solver setup |
|
|
192
192
|
| `src/fargate-runner.ts` | ECS Fargate Spot/S3 orchestration, retries, cleanup, and task telemetry |
|
|
193
193
|
| `src/fargate-worker.ts` | ESM worker that runs concurrent solver workspaces in the shared task |
|
|
194
|
-
| `src/resource-usage.ts` | Container CPU
|
|
194
|
+
| `src/resource-usage.ts` | Container CPU sampling for adaptive profile selection |
|
|
195
195
|
| `src/prompts.ts` | All prompt text sent to those agents |
|
|
196
196
|
| `src/tools.ts` | Custom tools the agents call to submit their structured results |
|
|
197
197
|
| `src/rubric.ts` | Embedded guidelines/fairness rubric text + per-role section loaders |
|