-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
59 lines (59 loc) · 1.63 KB
/
Copy pathplugin.json
File metadata and controls
59 lines (59 loc) · 1.63 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
{
"name": "vouch",
"version": "0.1.0",
"description": "Staged pipelines for AI agents — every artifact earns its way through verified stages. Adversary verification, atomic budgets, tournament-based prompt promotion, and markdown-driven witness checklists, all as Claude Code skills.",
"author": "vouch contributors",
"license": "Apache-2.0",
"homepage": "https://github.com/vouch-ai/vouch",
"skills": [
{
"name": "vouch-init",
"path": "skills/vouch-init/SKILL.md",
"trigger": "/vouch-init"
},
{
"name": "vouch-run",
"path": "skills/vouch-run/SKILL.md",
"trigger": "/vouch-run"
},
{
"name": "vouch-verify",
"path": "skills/vouch-verify/SKILL.md",
"trigger": "/vouch-verify"
},
{
"name": "vouch-promote",
"path": "skills/vouch-promote/SKILL.md",
"trigger": "/vouch-promote"
},
{
"name": "vouch-witness",
"path": "skills/vouch-witness/SKILL.md",
"trigger": "/vouch-witness"
},
{
"name": "vouch-status",
"path": "skills/vouch-status/SKILL.md",
"trigger": "/vouch-status"
},
{
"name": "vouch-resume",
"path": "skills/vouch-resume/SKILL.md",
"trigger": "/vouch-resume"
}
],
"agents": [
{"name": "vouch-stage", "path": "agents/vouch-stage.md"},
{"name": "vouch-adversary", "path": "agents/vouch-adversary.md"},
{"name": "vouch-judge", "path": "agents/vouch-judge.md"}
],
"helpers": [
"helpers/vouch_state.py",
"helpers/vouch_budget.py",
"helpers/vouch_tournament.py",
"helpers/vouch_witness.py"
],
"requires": {
"python": ">=3.10"
}
}