28 lines
614 B
YAML
28 lines
614 B
YAML
name: self-healing-demo-v1
|
|
description: A live demonstration of bounded, auditable source self-repair.
|
|
version: 0.1.0
|
|
entrypoint: agent:SelfHealingDemo
|
|
expose:
|
|
public: true
|
|
self_healing:
|
|
enabled: true
|
|
consecutive_failures: 1
|
|
window_seconds: 300
|
|
cooldown_seconds: 300
|
|
max_repairs_per_day: 2
|
|
max_turns: 30
|
|
deployment_timeout_seconds: 1800
|
|
require_tests: true
|
|
runtime:
|
|
availability: always_on
|
|
resources:
|
|
cpu: 100m
|
|
memory: 256Mi
|
|
max_runtime_seconds: 120
|
|
frontend:
|
|
path: frontend
|
|
build: mkdir -p dist && cp index.html app.js styles.css dist/
|
|
dist: dist
|
|
mount: /
|
|
auth: public
|