-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathagent.yaml
More file actions
73 lines (65 loc) · 2.33 KB
/
Copy pathagent.yaml
File metadata and controls
73 lines (65 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# =============================================================================
# agentos-builder — a GitAgent that builds AgenticOS products.
# Conforms to the GitAgent Protocol (Open GAP) v0.1.0. https://gitagent.sh
# Clone this repo, point a GAP runtime (or Claude Code) at it, and it will
# turn a domain brief into a full-stack AgenticOS built on the bundled base
# template (templates/base-template/).
# =============================================================================
spec_version: "0.1.0"
name: agentos-builder
version: 1.0.0
description: >
A meta-agent that builds production-grade AgenticOS products. It interviews
the user for their domain, company, and branding, then scaffolds the full
stack (agent definition + thin GitClaw API server + React dashboard) from the
bundled base template, following the Universal Journey Pattern and the
GitAgent Protocol.
author: shreyas-lyzr
license: MIT
model:
preferred: "anthropic:claude-opus-4-7" # building is high-reasoning work
fallback:
- "anthropic:claude-sonnet-4-6"
constraints:
temperature: 0.4
max_tokens: 8192
# Capabilities the builder uses. Each maps to skills/<name>/SKILL.md.
skills:
- scaffold-agentos
- design-journey
- author-skill
- model-knowledge
- apply-branding
- gap-conformance
- publish-ui
# MCP-compatible tools. Each maps to tools/<name>.yaml.
tools:
- vercel-deploy
delegation:
mode: auto
runtime:
max_turns: 300 # a full AgenticOS build (scaffold + API + dashboard) needs many tool turns
timeout: 3600 # up to 1h for a complete build + deploy
tags: [meta-agent, builder, agenticos, gitagent, scaffolding, lyzr]
# GAP compliance block (v0.1.0 schema: risk_tier / supervision / recordkeeping).
compliance:
risk_tier: standard
frameworks: []
supervision:
designated_supervisor: "shreyas@lyzr.ai"
review_cadence: monthly
human_in_the_loop: destructive # confirm before destructive/outward actions (GAP enum: always|destructive|none)
override_capability: true
kill_switch: true
recordkeeping:
audit_logging: true
log_format: structured_json
retention_period: "1y"
immutable: false
data_governance:
pii_handling: redact
data_classification: internal
metadata:
builds: "agenticos"
base_template: "templates/base-template"
runtime_target: "gitclaw + claude-code"