-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloom.json
More file actions
169 lines (169 loc) · 4.65 KB
/
floom.json
File metadata and controls
169 lines (169 loc) · 4.65 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "OpenSlides",
"description": "AI pitch deck generator. Point it at a prompt (and optionally a company URL) and get a branded pitch deck back as HTML slides plus a base64-encoded PDF.",
"manifest_version": "2.0",
"runtime": "python",
"python_dependencies": [
"google-genai==1.9.0",
"httpx==0.28.1",
"Pillow==11.1.0",
"PyPDF2==3.0.1",
"python-pptx==1.0.2",
"colorthief==0.2.1"
],
"secrets_needed": [
"GEMINI_API_KEY"
],
"actions": {
"generate": {
"label": "Generate Deck",
"description": "Generate a branded pitch deck from a prompt and optional company URL. Scrapes brand colors, fonts, and logo from the URL. Returns slide HTML and (when PDF export is available) a base64-encoded PDF.",
"inputs": [
{
"name": "prompt",
"label": "Prompt",
"type": "textarea",
"required": true,
"description": "What the deck is about. Include company, stage, ask, and audience.",
"placeholder": "Floom is the production layer for AI scripts. Raising $200K F&F at $8M cap."
},
{
"name": "company_url",
"label": "Company URL",
"type": "url",
"required": false,
"description": "Optional company website. If set, brand colors, fonts, and logo are scraped from it.",
"placeholder": "https://floom.dev"
},
{
"name": "audience",
"label": "Audience",
"type": "text",
"required": false,
"default": "vc",
"description": "Target audience: vc, angel, ff, or customer."
},
{
"name": "deck_type",
"label": "Deck Type",
"type": "text",
"required": false,
"default": "pitch",
"description": "Type of deck: pitch, sales, update, or general."
}
],
"outputs": [
{
"name": "preview",
"label": "Slide Deck Preview",
"type": "html"
},
{
"name": "slide_count",
"label": "Slide Count",
"type": "number"
},
{
"name": "slides",
"label": "Raw Slide Data",
"type": "json"
},
{
"name": "deck_id",
"label": "Deck ID",
"type": "text"
},
{
"name": "pdf_base64",
"label": "PDF (base64)",
"type": "text"
},
{
"name": "pdf_size_bytes",
"label": "PDF Size (bytes)",
"type": "number"
}
]
},
"iterate": {
"label": "Iterate Slides",
"description": "Regenerate specific slides of a previously generated deck while keeping the rest. Returns the updated deck.",
"inputs": [
{
"name": "deck_id",
"label": "Previous Deck ID",
"type": "text",
"required": true,
"description": "ID of the deck to iterate on."
},
{
"name": "prompt",
"label": "Refinement",
"type": "textarea",
"required": true,
"description": "What to change or improve on the selected slides."
},
{
"name": "slide_indices",
"label": "Slide Indices (JSON array)",
"type": "textarea",
"required": true,
"description": "0-based indices of slides to regenerate as a JSON array, e.g. [2, 4, 5].",
"placeholder": "[0, 2, 4]"
}
],
"outputs": [
{
"name": "deck_id",
"label": "Deck ID",
"type": "text"
},
{
"name": "slide_count",
"label": "Slide Count",
"type": "number"
},
{
"name": "pdf_base64",
"label": "PDF (base64)",
"type": "text"
},
{
"name": "pdf_size_bytes",
"label": "PDF Size (bytes)",
"type": "number"
}
]
},
"resolve_logo": {
"label": "Resolve Logo",
"description": "Find the best logo URL for a company name or domain. Uses Simple Icons, svgl, and favicon fallbacks.",
"inputs": [
{
"name": "name",
"label": "Company or Domain",
"type": "text",
"required": true,
"placeholder": "stripe.com"
}
],
"outputs": [
{
"name": "url",
"label": "Logo URL",
"type": "text"
},
{
"name": "format",
"label": "Format",
"type": "text"
},
{
"name": "provider",
"label": "Provider",
"type": "text"
}
]
}
}
}