-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy path.octos-workspace.toml
More file actions
214 lines (177 loc) · 4.65 KB
/
Copy path.octos-workspace.toml
File metadata and controls
214 lines (177 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
schema_version = 1
[workspace]
kind = "session"
[version_control]
provider = "git"
auto_init = false
trigger = "turn_end"
fail_on_error = false
[tracking]
ignore = [
"tmp/**",
".DS_Store",
]
[validation]
on_turn_end = []
on_source_change = []
on_completion = []
[artifacts]
image_png = "**/*.png"
podcast_audio = "**/podcast_full_*.*"
primary_audio = "*.mp3"
slides_pptx = "**/*.pptx"
[spawn_tasks.deep_search]
on_verify = []
on_failure = ["notify_user:Deep search failed"]
[[spawn_tasks.deep_search.on_completion]]
id = "deep_search.primary_index"
required = true
kind = "file_exists"
path = "${args.research_dir}/_search_results.md"
[[spawn_tasks.deep_search.on_completion]]
id = "deep_search.sources_warn"
required = true
soft_fail = true
kind = "file_exists"
path = "${args.research_dir}/01_source.md"
[spawn_tasks.fm_tts]
artifact = "primary_audio"
on_verify = [
"file_exists:$artifact",
"file_size_min:$artifact:1024",
]
on_failure = ["notify_user:TTS generation failed"]
[[spawn_tasks.fm_tts.on_completion]]
kind = "audio_non_silent"
glob = ""
min_ratio = 0.30000001192092896
source = "spawn_only_files"
extension = "mp3"
[spawn_tasks.fm_voice_save]
on_verify = []
on_failure = ["notify_user:Voice registration failed"]
[[spawn_tasks.fm_voice_save.on_completion]]
kind = "ominix_voice_exists"
name_arg = "name"
[[spawn_tasks.fm_voice_save.on_completion]]
kind = "file_exists"
path = "voice_profiles/${args.name}.wav"
min_bytes = 1024
[spawn_tasks.manage_skills]
on_verify = []
on_failure = ["notify_user:Skill install verification failed"]
[[spawn_tasks.manage_skills.on_completion]]
kind = "sha256_match"
glob = "${args.skill_dir}/main"
sha256 = "${args.expected_sha256}"
[spawn_tasks.mofa_cards]
on_verify = []
on_failure = ["notify_user:Card generation failed"]
[[spawn_tasks.mofa_cards.on_completion]]
kind = "magic_bytes"
glob = "**/*.png"
format = "png"
[spawn_tasks.mofa_comic]
artifact = "image_png"
on_verify = []
on_failure = ["notify_user:Comic generation failed"]
[[spawn_tasks.mofa_comic.on_completion]]
kind = "file_exists"
path = "${args.out}"
min_bytes = 1024
[[spawn_tasks.mofa_comic.on_completion]]
kind = "magic_bytes"
glob = ""
format = "png"
source = "spawn_only_files"
extension = "png"
[spawn_tasks.mofa_frame]
artifact = "image_png"
on_verify = []
on_failure = ["notify_user:Frame extraction failed"]
[[spawn_tasks.mofa_frame.on_completion]]
kind = "magic_bytes"
glob = ""
format = "png"
source = "spawn_only_files"
extension = "png"
[spawn_tasks.mofa_infographic]
artifact = "image_png"
on_verify = []
on_failure = ["notify_user:Infographic generation failed"]
[[spawn_tasks.mofa_infographic.on_completion]]
kind = "file_exists"
path = "${args.out}"
min_bytes = 1024
[[spawn_tasks.mofa_infographic.on_completion]]
kind = "magic_bytes"
glob = ""
format = "png"
source = "spawn_only_files"
extension = "png"
[spawn_tasks.mofa_publish]
on_verify = []
on_failure = ["notify_user:Publish probe failed"]
[[spawn_tasks.mofa_publish.on_completion]]
id = "mofa_publish.deploy_url_probe"
required = false
kind = "http_probe"
url_template = "${output.deploy_url}"
expected_status = 200
expected_contains = "<!DOCTYPE"
[spawn_tasks.mofa_slides]
artifact = "slides_pptx"
on_verify = []
on_failure = ["notify_user:Slide generation failed"]
[[spawn_tasks.mofa_slides.on_completion]]
kind = "magic_bytes"
glob = ""
format = "pptx"
source = "spawn_only_files"
extension = "pptx"
[spawn_tasks.podcast_generate]
artifact = "podcast_audio"
on_verify = [
"file_exists:$artifact",
"file_size_min:$artifact:4096",
]
on_failure = ["notify_user:Podcast generation failed"]
[[spawn_tasks.podcast_generate.on_completion]]
kind = "magic_bytes"
glob = ""
format = "mp3"
source = "spawn_only_files"
extension = "mp3"
[[spawn_tasks.podcast_generate.on_completion]]
kind = "audio_non_silent"
glob = ""
min_ratio = 0.30000001192092896
source = "spawn_only_files"
extension = "mp3"
[spawn_tasks.synthesize_research]
on_verify = []
on_failure = ["notify_user:Research synthesis failed"]
[[spawn_tasks.synthesize_research.on_completion]]
id = "synthesize_research.primary_report"
required = true
kind = "file_exists"
path = "${args.research_dir}/synthesis.md"
min_bytes = 256
[[spawn_tasks.synthesize_research.on_completion]]
id = "synthesize_research.partials_warn"
required = true
soft_fail = true
kind = "file_exists"
path = "${args.research_dir}/_search_results.md"
[spawn_tasks.voice_synthesize]
artifact = "primary_audio"
on_verify = [
"file_exists:$artifact",
"file_size_min:$artifact:1024",
]
on_failure = ["notify_user:Voice synthesis failed"]
[[spawn_tasks.voice_synthesize.on_completion]]
kind = "audio_non_silent"
glob = ""
min_ratio = 0.30000001192092896
source = "spawn_only_files"