-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloom.json
More file actions
76 lines (76 loc) · 2.1 KB
/
Copy pathfloom.json
File metadata and controls
76 lines (76 loc) · 2.1 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
74
75
76
{
"name": "Bouncer",
"description": "Gemini stands at the door. Independent quality gate that audits an AI agent's output and returns a 0-10 score, issues list, and PASS/FAIL verdict. Built to catch unverified claims before they ship.",
"manifest_version": "2.0",
"runtime": "python",
"python_dependencies": [
"google-genai==1.64.0"
],
"secrets_needed": [
"GEMINI_API_KEY"
],
"actions": {
"audit": {
"label": "Audit Output",
"description": "Score an AI agent's final response with Gemini as an independent reviewer. Returns score/10, issues, and PASS/FAIL.",
"inputs": [
{
"name": "assistant_text",
"label": "Assistant Output",
"type": "textarea",
"required": true,
"description": "The full text the agent produced and wants audited."
},
{
"name": "diff_text",
"label": "Code Diff (optional)",
"type": "textarea",
"required": false,
"description": "Optional git diff to ground coding-task audits against real changes."
},
{
"name": "task_context",
"label": "Task Context (optional)",
"type": "textarea",
"required": false,
"description": "Optional context: user request, project rules, workplan."
},
{
"name": "model",
"label": "Gemini Model",
"type": "text",
"required": false,
"default": "gemini-2.5-flash",
"description": "Gemini model to use for scoring."
}
],
"outputs": [
{
"name": "score",
"label": "Score",
"type": "number"
},
{
"name": "verdict",
"label": "Verdict",
"type": "text"
},
{
"name": "passed",
"label": "Passed",
"type": "text"
},
{
"name": "issues",
"label": "Issues",
"type": "json"
},
{
"name": "raw",
"label": "Raw Response",
"type": "text"
}
]
}
}
}