@_xtribe/cli 1.0.25 → 1.0.27

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": "@_xtribe/cli",
3
- "version": "1.0.25",
3
+ "version": "1.0.27",
4
4
  "description": "TRIBE multi-agent development system - Zero to productive with one command",
5
5
  "main": "install-tribe.js",
6
6
  "bin": {
@@ -355,6 +355,8 @@ spec:
355
355
  - name: claude-agent
356
356
  image: tribexal/tribe:latest-claude-agent
357
357
  imagePullPolicy: IfNotPresent
358
+ ports:
359
+ - containerPort: 8080
358
360
  env:
359
361
  - name: ROLE
360
362
  value: worker
@@ -376,13 +378,14 @@ spec:
376
378
  - name: config
377
379
  mountPath: /app/minimal-config
378
380
  readinessProbe:
379
- exec:
380
- command:
381
- - /bin/sh
382
- - -c
383
- - test -f /tmp/worker-ready
381
+ httpGet:
382
+ path: /health
383
+ port: 8080
384
384
  initialDelaySeconds: 30
385
385
  periodSeconds: 10
386
+ timeoutSeconds: 5
387
+ successThreshold: 1
388
+ failureThreshold: 3
386
389
  volumes:
387
390
  - name: workspace
388
391
  emptyDir: {}