-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalog-registry.toml
More file actions
57 lines (51 loc) · 2.33 KB
/
Copy pathcatalog-registry.toml
File metadata and controls
57 lines (51 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
# Omegon Armory — Agent Catalog Registry
#
# This file lists all available bundled agents and the files that comprise
# each bundle. Used by `omegon catalog install` to fetch agents from upstream.
#
# Format:
# ["agent-id"]
# name = "Human-readable name"
# version = "semver"
# domain = "chat|coding|ops|infra|..."
# description = "Short description"
# files = ["agent.toml", ...] # files to download, relative to catalog/<agent-id>/
#
# Note: agent IDs contain dots so keys must be quoted to avoid TOML nested-table
# interpretation (e.g. ["styrene.bd-agent"] not [styrene.bd-agent]).
["styrene.bd-agent"]
name = "Business Development"
version = "1.0.0"
domain = "ops"
description = "Engagement tracking, opportunity assessment, proposal drafting, and client reporting using Flynt boards and agent run history."
files = ["agent.toml", "agent.pkl", "PERSONA.md", "mind/facts.jsonl"]
["styrene.coding-agent"]
name = "Software Engineer"
version = "1.0.0"
domain = "coding"
description = "General-purpose software engineering agent for code review, feature implementation, bug investigation, and refactoring across any language or framework."
files = ["agent.toml", "agent.pkl", "PERSONA.md", "mind/facts.jsonl"]
["styrene.community-agent"]
name = "Styrene Community Agent"
version = "1.0.0"
domain = "coding"
description = "Styrene project agent for Discord. Familiar with the styrene-lab ecosystem: omegon, vox, styrened, auspex, RNS/LXMF mesh networking, and edge device provisioning."
files = ["agent.toml", "agent.pkl", "PERSONA.md", "mind/facts.jsonl"]
["styrene.discord-agent"]
name = "Discord Agent"
version = "1.0.0"
domain = "chat"
description = "Omegon agent bridged to Discord via vox. Responds to operator and user messages in configured servers."
files = ["agent.toml", "agent.pkl", "PERSONA.md"]
["styrene.infra-engineer"]
name = "Infrastructure Engineer"
version = "1.0.0"
domain = "infra"
description = "Kubernetes cluster management, deployment automation, Helm chart authoring, incident response, and infrastructure observability."
files = ["agent.toml", "agent.pkl", "PERSONA.md", "mind/facts.jsonl"]
["styrene.slack-agent"]
name = "Slack Agent"
version = "1.0.0"
domain = "chat"
description = "Omegon agent bridged to Slack via vox. Responds to operator and user messages in configured channels."
files = ["agent.toml", "agent.pkl", "PERSONA.md"]