flock-core 0.4.0b35__py3-none-any.whl → 0.4.0b37__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of flock-core might be problematic. Click here for more details.
- flock/__init__.py +34 -11
- flock/cli/loaded_flock_cli.py +38 -18
- flock/core/flock.py +48 -3
- flock/themes/alabaster.toml +43 -43
- flock/themes/guezwhoz.toml +43 -43
- flock/themes/wildcherry.toml +43 -43
- flock/themes/wombat.toml +43 -43
- flock/themes/zenburn.toml +43 -43
- flock/webapp/app/config.py +80 -2
- flock/webapp/app/main.py +506 -3
- flock/webapp/app/templates/theme_mapper.html +326 -0
- flock/webapp/app/theme_mapper.py +812 -0
- flock/webapp/run.py +116 -14
- flock/webapp/static/css/custom.css +168 -83
- flock/webapp/templates/base.html +14 -7
- flock/webapp/templates/partials/_agent_detail_form.html +4 -3
- flock/webapp/templates/partials/_agent_list.html +1 -6
- flock/webapp/templates/partials/_agent_manager_view.html +52 -14
- flock/webapp/templates/partials/_agent_manager_view_old.html +19 -0
- flock/webapp/templates/partials/_create_flock_form.html +1 -1
- flock/webapp/templates/partials/_dashboard_flock_properties_preview.html +1 -1
- flock/webapp/templates/partials/_env_vars_table.html +25 -0
- flock/webapp/templates/partials/_execution_form.html +1 -1
- flock/webapp/templates/partials/_execution_view_container.html +13 -12
- flock/webapp/templates/partials/_flock_properties_form.html +2 -1
- flock/webapp/templates/partials/_header_flock_status.html +5 -0
- flock/webapp/templates/partials/_load_manager_view.html +50 -0
- flock/webapp/templates/partials/_settings_env_content.html +10 -0
- flock/webapp/templates/partials/_settings_theme_content.html +15 -0
- flock/webapp/templates/partials/_settings_view.html +36 -0
- flock/webapp/templates/partials/_sidebar.html +13 -6
- flock/webapp/templates/partials/_structured_data_view.html +4 -4
- flock/webapp/templates/partials/_theme_preview.html +23 -0
- {flock_core-0.4.0b35.dist-info → flock_core-0.4.0b37.dist-info}/METADATA +1 -1
- {flock_core-0.4.0b35.dist-info → flock_core-0.4.0b37.dist-info}/RECORD +38 -29
- flock/webapp/templates/partials/_load_manage_view.html +0 -88
- {flock_core-0.4.0b35.dist-info → flock_core-0.4.0b37.dist-info}/WHEEL +0 -0
- {flock_core-0.4.0b35.dist-info → flock_core-0.4.0b37.dist-info}/entry_points.txt +0 -0
- {flock_core-0.4.0b35.dist-info → flock_core-0.4.0b37.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
<header>
|
|
2
|
+
<h5>{% if is_new %}Add New Agent{% else %}Edit Agent: {{ agent.name if agent else '' }}{% endif %}</h5>
|
|
3
|
+
</header>
|
|
1
4
|
<article id="agent-detail-form-content">
|
|
2
|
-
|
|
3
|
-
<h4>{% if is_new %}Add New Agent{% else %}Edit Agent: {{ agent.name if agent else '' }}{% endif %}</h4>
|
|
4
|
-
</header>
|
|
5
|
+
|
|
5
6
|
{% if form_message %}
|
|
6
7
|
<div class="form-message {{ 'success' if success else 'error' }}"
|
|
7
8
|
x-data="{ show: true }" x-show="show" x-init="setTimeout(() => show = false, 3000)"
|
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
<article id="agent-list-content">
|
|
2
|
-
|
|
3
|
-
<h4>Agents ({{ flock.agents|length }})</h4>
|
|
4
|
-
<div style="text-align: right;">
|
|
5
|
-
<button role="button" class="outline" hx-get="/api/flocks/htmx/agents/new-agent-form" hx-target="#agent-detail-panel" hx-swap="innerHTML">Add New Agent</button>
|
|
6
|
-
</div>
|
|
7
|
-
</header>
|
|
2
|
+
|
|
8
3
|
{% if message %}
|
|
9
4
|
<div class="form-message {{ 'success' if success else 'error' }}">{{ message }}</div>
|
|
10
5
|
{% endif %}
|
|
@@ -1,15 +1,53 @@
|
|
|
1
|
-
<
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
<!-- <article id="dashboard-flock-manager-content"> -->
|
|
2
|
+
<!-- {# This outer header is removed, title moves into the left-pane's new article structure #}
|
|
3
|
+
{# <header>
|
|
4
|
+
<h2>Manage & Load Flocks</h2> #}
|
|
5
|
+
</header> -->
|
|
6
|
+
|
|
7
|
+
{% if error_message %}
|
|
8
|
+
<div class="error DANGER" role="alert" x-data="{ show: true }" x-show="show" x-init="setTimeout(() => show = false, 5000)">
|
|
9
|
+
{{ error_message }} <button type="button" class="close" @click="show = false">×</button>
|
|
10
|
+
</div>
|
|
11
|
+
{% endif %}
|
|
12
|
+
{% if success_message %}
|
|
13
|
+
<div class="success SUCCESS" role="alert" x-data="{ show: true }" x-show="show" x-init="setTimeout(() => show = false, 5000)">
|
|
14
|
+
{{ success_message }} <button type="button" class="close" @click="show = false">×</button>
|
|
15
|
+
</div>
|
|
16
|
+
{% endif %}
|
|
17
|
+
|
|
18
|
+
<article class="two-pane-flex-container">
|
|
19
|
+
<article class="left-pane"> {# Changed section to article, or wrap section in article #}
|
|
20
|
+
<header class="grid">
|
|
21
|
+
<h2>Agents ({{ flock.agents|length }}) </h2>
|
|
22
|
+
<div style="text-align: right;">
|
|
23
|
+
<button role="button" class="outline" hx-get="/api/flocks/htmx/agents/new-agent-form" hx-target="#agent-detail-panel" hx-swap="innerHTML">Add New Agent</button>
|
|
24
|
+
</div>
|
|
25
|
+
|
|
26
|
+
</header>
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
{# Content of the left pane now goes into this article #}
|
|
30
|
+
<div style="padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal); flex-grow: 1; display: flex; flex-direction: column;">
|
|
31
|
+
<div hx-get="/api/flocks/htmx/agent-list"
|
|
32
|
+
hx-trigger="load, agentListChanged from:body"
|
|
33
|
+
hx-swap="innerHTML"
|
|
34
|
+
id="agent-list-panel"
|
|
35
|
+
class="item-list-container" style="flex-grow: 1; ">
|
|
36
|
+
<p style="padding:1rem;">Loading Agents...</p><progress indeterminate></progress>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
13
39
|
</article>
|
|
14
|
-
|
|
15
|
-
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
<section id="agent-detail-panel" class="right-pane-framed"> {# Added right-pane-framed #}
|
|
44
|
+
<header>
|
|
45
|
+
<h5>Agent Details</h5> {# Changed to h5 for consistency #}
|
|
46
|
+
</header>
|
|
47
|
+
|
|
48
|
+
<p>Select an agent from the list to view/edit, or create a new one using the button above.</p>
|
|
49
|
+
</section>
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
</article>
|
|
53
|
+
<!-- </article> -->
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<article class="two-pane-flex-container"> {# Use the new unified flex container #}
|
|
2
|
+
<section id="agent-list-panel"
|
|
3
|
+
class="left-pane item-list-container" {# Added left-pane and item-list-container for scroll/style #}
|
|
4
|
+
hx-get="/api/flocks/htmx/agent-list"
|
|
5
|
+
hx-trigger="load, agentListChanged from:body" {# Reload when agent list changes #}
|
|
6
|
+
hx-swap="innerHTML">
|
|
7
|
+
{# The hx-get will load content here. We expect it to be an <ul> or similar for the .item-list styles to apply #}
|
|
8
|
+
<article><p>Loading agents...</p><progress></progress></article>
|
|
9
|
+
</section>
|
|
10
|
+
|
|
11
|
+
<section id="agent-detail-panel" class="right-pane-framed"> {# Added right-pane-framed #}
|
|
12
|
+
<article>
|
|
13
|
+
<header>
|
|
14
|
+
<h5>Agent Details</h5> {# Changed to h5 for consistency #}
|
|
15
|
+
</header>
|
|
16
|
+
<p>Select an agent from the list to view/edit, or create a new one using the button above.</p>
|
|
17
|
+
</article>
|
|
18
|
+
</section>
|
|
19
|
+
</article>
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
{% if preview_flock %}
|
|
6
6
|
<p><strong>Default Model:</strong> {{ preview_flock.model or 'Not set' }}</p>
|
|
7
7
|
<p><strong>Description:</strong> {{ preview_flock.description or 'None' }}</p>
|
|
8
|
-
<p><strong>Agents:</strong> {{ preview_flock.
|
|
8
|
+
<p><strong>Agents:</strong> {{ preview_flock.agents_count }}</p>
|
|
9
9
|
|
|
10
10
|
<form hx-post="/ui/load-flock-action/by-name"
|
|
11
11
|
hx-target="#main-content-area" {# This will load the full editor for this flock #}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<div id="env-vars-container">
|
|
2
|
+
<table class="striped" style="font-size:0.9rem;">
|
|
3
|
+
<thead>
|
|
4
|
+
<tr>
|
|
5
|
+
<th>Name</th>
|
|
6
|
+
<th>Value</th>
|
|
7
|
+
<th>Actions</th>
|
|
8
|
+
</tr>
|
|
9
|
+
</thead>
|
|
10
|
+
<tbody>
|
|
11
|
+
{% for var in env_vars %}
|
|
12
|
+
<tr>
|
|
13
|
+
<td>{{ var.name }}</td>
|
|
14
|
+
<td>{{ var.value }}</td>
|
|
15
|
+
<td>
|
|
16
|
+
<button class="secondary small outline" hx-post="/ui/htmx/env-edit" hx-vals='{"var_name": "{{ var.name }}"}'
|
|
17
|
+
hx-prompt="Enter new value for {{ var.name }}" hx-target="#env-vars-container" hx-swap="outerHTML">Edit</button>
|
|
18
|
+
<button class="contrast small outline" hx-post="/ui/htmx/env-delete" hx-vals='{"var_name": "{{ var.name }}"}'
|
|
19
|
+
hx-confirm="Delete {{ var.name }}?" hx-target="#env-vars-container" hx-swap="outerHTML" style="margin-left:0.25rem;">Delete</button>
|
|
20
|
+
</td>
|
|
21
|
+
</tr>
|
|
22
|
+
{% endfor %}
|
|
23
|
+
</tbody>
|
|
24
|
+
</table>
|
|
25
|
+
</div>
|
|
@@ -1,19 +1,20 @@
|
|
|
1
|
-
<article
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
</
|
|
1
|
+
<article class="two-pane-flex-container">
|
|
2
|
+
<section id="execution-left-pane" style="flex: 1; min-width: 300px;">
|
|
3
|
+
{# The Execution Form will be loaded here #}
|
|
4
|
+
<div id="execution-form-wrapper" hx-get="/api/flocks/htmx/execution-form-content" {# New endpoint for just the
|
|
5
|
+
form #} hx-trigger="load" hx-swap="innerHTML">
|
|
6
|
+
<p>Loading execution form...</p><progress indeterminate></progress>
|
|
7
|
+
</div>
|
|
8
|
+
</section>
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
<section id="execution-right-pane" class="right-pane-framed"
|
|
11
|
+
style="flex: 2; border-left: 1px solid var(--pico-muted-border-color); padding-left: 1.5rem;">
|
|
12
|
+
{# The Results Display area, always present when this container is loaded #}
|
|
13
|
+
<header style=" border-bottom: 1px solid var(--pico-muted-border-color); margin-bottom: 1rem;">
|
|
13
14
|
<h5>Execution Results</h5>
|
|
14
15
|
</header>
|
|
15
16
|
<div id="results-display">
|
|
16
|
-
<p><
|
|
17
|
+
<p><code>Results will appear here after running the Flock.</code></p>
|
|
17
18
|
</div>
|
|
18
19
|
</section>
|
|
19
20
|
</article>
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
<article id="flock-properties-form-article">
|
|
2
2
|
<header>
|
|
3
|
-
<
|
|
3
|
+
<h2>Flock Properties </h2>
|
|
4
|
+
|
|
4
5
|
</header>
|
|
5
6
|
|
|
6
7
|
{% if update_message %}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
<!-- <article id="dashboard-flock-manager-content"> -->
|
|
2
|
+
<!-- {# This outer header is removed, title moves into the left-pane's new article structure #}
|
|
3
|
+
{# <header>
|
|
4
|
+
<h2>Manage & Load Flocks</h2> #}
|
|
5
|
+
</header> -->
|
|
6
|
+
|
|
7
|
+
{% if error_message %}
|
|
8
|
+
<div class="error DANGER" role="alert" x-data="{ show: true }" x-show="show" x-init="setTimeout(() => show = false, 5000)">
|
|
9
|
+
{{ error_message }} <button type="button" class="close" @click="show = false">×</button>
|
|
10
|
+
</div>
|
|
11
|
+
{% endif %}
|
|
12
|
+
{% if success_message %}
|
|
13
|
+
<div class="success SUCCESS" role="alert" x-data="{ show: true }" x-show="show" x-init="setTimeout(() => show = false, 5000)">
|
|
14
|
+
{{ success_message }} <button type="button" class="close" @click="show = false">×</button>
|
|
15
|
+
</div>
|
|
16
|
+
{% endif %}
|
|
17
|
+
|
|
18
|
+
<article class="two-pane-flex-container">
|
|
19
|
+
<article class="left-pane"> {# Changed section to article, or wrap section in article #}
|
|
20
|
+
<header class="grid">
|
|
21
|
+
<h2>Load Flock</h2> {# Moved title here #}
|
|
22
|
+
<div style="text-align: right;">
|
|
23
|
+
<button role="button" class="outline" hx-get="/ui/htmx/create-flock-form?ui_mode={{ ui_mode }}" hx-target="#flock-properties-or-action-content" hx-swap="innerHTML">Add New Flock</button>
|
|
24
|
+
</div>
|
|
25
|
+
</header>
|
|
26
|
+
{# Content of the left pane now goes into this article #}
|
|
27
|
+
<div style="padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal); flex-grow: 1; display: flex; flex-direction: column;">
|
|
28
|
+
<div hx-get="/ui/htmx/dashboard-flock-file-list"
|
|
29
|
+
hx-trigger="load, flockFileListChanged from:body"
|
|
30
|
+
hx-swap="innerHTML"
|
|
31
|
+
id="dashboard-flock-file-list-target"
|
|
32
|
+
class="item-list-container" style="flex-grow: 1; overflow-y: auto;border: 1px solid var(--pico-border-color); border-radius: var(--pico-border-radius);">
|
|
33
|
+
<p style="padding:1rem; border: 1px solid var(--pico-border-color); border-radius: var(--pico-border-radius);">Loading files...</p><progress indeterminate></progress>
|
|
34
|
+
</div>
|
|
35
|
+
</div>
|
|
36
|
+
</article>
|
|
37
|
+
|
|
38
|
+
<section id="flock-detail-action-column" class="right-pane-framed">
|
|
39
|
+
<header>
|
|
40
|
+
<h5>Flock Details</h5>
|
|
41
|
+
</header>
|
|
42
|
+
<div id="flock-properties-or-action-content">
|
|
43
|
+
<article style="text-align:center; margin-top: 2rem; border: none; background: transparent;">
|
|
44
|
+
<p>Select a Flock from the list to view its details and load it into the editor.</p>
|
|
45
|
+
<p><small>To create a new Flock or upload an existing one, use the options in the sidebar.</small></p>
|
|
46
|
+
</article>
|
|
47
|
+
</div>
|
|
48
|
+
</section>
|
|
49
|
+
</article>
|
|
50
|
+
<!-- </article> -->
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<article>
|
|
2
|
+
<h3>Environment Variables</h3>
|
|
3
|
+
<div style="display:flex; gap:0.5rem; flex-wrap:wrap;">
|
|
4
|
+
<button class="outline small" id="toggle-secrets-btn" hx-post="/ui/htmx/toggle-show-secrets" hx-target="#env-vars-container" hx-swap="outerHTML">
|
|
5
|
+
{% if show_secrets %}Hide Secrets{% else %}Show Secrets{% endif %}
|
|
6
|
+
</button>
|
|
7
|
+
<button class="outline small" hx-get="/ui/htmx/env-add-form" hx-target="#env-vars-container" hx-swap="afterbegin">Add Variable</button>
|
|
8
|
+
</div>
|
|
9
|
+
{% include 'partials/_env_vars_table.html' %}
|
|
10
|
+
</article>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<article>
|
|
2
|
+
<h3>Theme Switcher</h3>
|
|
3
|
+
<div style="display:flex; gap:0.5rem; flex-wrap:wrap; align-items:center;">
|
|
4
|
+
<label for="theme-select" style="margin:0;">Select Theme:</label>
|
|
5
|
+
<select id="theme-select" name="theme" hx-get="/ui/htmx/theme-preview" hx-target="#theme-preview" hx-trigger="load, change" hx-include="#theme-select">
|
|
6
|
+
{% for t in themes %}
|
|
7
|
+
<option value="{{ t }}" {% if t == current_theme %}selected{% endif %}>{{ t }}</option>
|
|
8
|
+
{% endfor %}
|
|
9
|
+
</select>
|
|
10
|
+
<button class="small" hx-post="/ui/apply-theme" hx-target="body" hx-include="#theme-select" hx-swap="none">Apply</button>
|
|
11
|
+
</div>
|
|
12
|
+
<div id="theme-preview" style="margin-top:1rem;">
|
|
13
|
+
<!-- Preview generated by theme-preview endpoint -->
|
|
14
|
+
</div>
|
|
15
|
+
</article>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<!-- Settings View -->
|
|
2
|
+
<article>
|
|
3
|
+
<header>
|
|
4
|
+
<h2>Settings</h2>
|
|
5
|
+
</header>
|
|
6
|
+
<nav>
|
|
7
|
+
<ul role="group">
|
|
8
|
+
<li>
|
|
9
|
+
<button role="button" class="primary" hx-get="/ui/htmx/settings/env-vars" hx-target="#settings-content-container" hx-indicator="#settings-loading" hx-on:click="setActiveButton(this)">Environment</button>
|
|
10
|
+
</li>
|
|
11
|
+
<li>
|
|
12
|
+
<button role="button" class="outline" hx-get="/ui/htmx/settings/theme" hx-target="#settings-content-container" hx-indicator="#settings-loading" hx-on:click="setActiveButton(this)">Theme</button>
|
|
13
|
+
</li>
|
|
14
|
+
</ul>
|
|
15
|
+
</nav>
|
|
16
|
+
|
|
17
|
+
<div id="settings-loading" class="htmx-indicator" style="text-align:center; margin-top:1rem;">
|
|
18
|
+
<progress></progress> Loading...
|
|
19
|
+
</div>
|
|
20
|
+
|
|
21
|
+
<div id="settings-content-container" style="margin-top:1.5rem;">
|
|
22
|
+
{% include 'partials/_settings_env_content.html' %}
|
|
23
|
+
</div>
|
|
24
|
+
</article>
|
|
25
|
+
|
|
26
|
+
<script>
|
|
27
|
+
function setActiveButton(clickedButton) {
|
|
28
|
+
const buttons = clickedButton.closest('ul[role="group"]').querySelectorAll('button');
|
|
29
|
+
buttons.forEach(btn => {
|
|
30
|
+
btn.classList.remove('primary');
|
|
31
|
+
btn.classList.add('outline');
|
|
32
|
+
});
|
|
33
|
+
clickedButton.classList.remove('outline');
|
|
34
|
+
clickedButton.classList.add('primary');
|
|
35
|
+
}
|
|
36
|
+
</script>
|
|
@@ -6,16 +6,16 @@
|
|
|
6
6
|
<button hx-get="/ui/htmx/load-flock-view?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
7
7
|
hx-push-url="/?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
8
8
|
class="contrast {% if request.url.path == '/' or request.url.path == '/ui/htmx/load-flock-view' %}active-nav{% endif %}">
|
|
9
|
-
<i class="fas fa-folder-open"></i> Load
|
|
9
|
+
<i class="fas fa-folder-open"></i> Load Flock
|
|
10
10
|
</button>
|
|
11
11
|
</li>
|
|
12
|
-
<li>
|
|
12
|
+
<!-- <li>
|
|
13
13
|
<button hx-get="/ui/htmx/create-flock-form?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
14
14
|
hx-push-url="/ui/create?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
15
15
|
class="contrast {% if request.url.path == '/ui/create' %}active-nav{% endif %}">
|
|
16
16
|
<i class="fas fa-plus-circle"></i> Create New Flock
|
|
17
17
|
</button>
|
|
18
|
-
</li>
|
|
18
|
+
</li> -->
|
|
19
19
|
</ul>
|
|
20
20
|
{% endif %}
|
|
21
21
|
|
|
@@ -26,21 +26,21 @@
|
|
|
26
26
|
<li>
|
|
27
27
|
<button hx-get="/api/flocks/htmx/flock-properties-form?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
28
28
|
hx-push-url="/ui/editor/properties?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
29
|
-
class="{% if request.url.path == '/ui/editor/properties' %}active-nav{% endif %}">
|
|
29
|
+
class="contrast {% if request.url.path == '/ui/editor/properties' %}active-nav{% endif %}">
|
|
30
30
|
<i class="fas fa-cog"></i> Properties
|
|
31
31
|
</button>
|
|
32
32
|
</li>
|
|
33
33
|
<li>
|
|
34
34
|
<button hx-get="/ui/htmx/agent-manager-view?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
35
35
|
hx-push-url="/ui/editor/agents?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
36
|
-
class="{% if request.url.path == '/ui/editor/agents' %}active-nav{% endif %}">
|
|
36
|
+
class="contrast{% if request.url.path == '/ui/editor/agents' %}active-nav{% endif %}">
|
|
37
37
|
<i class="fas fa-robot"></i> Agents ({{ current_flock.agents|length }})
|
|
38
38
|
</button>
|
|
39
39
|
</li>
|
|
40
40
|
<li>
|
|
41
41
|
<button hx-get="/ui/htmx/execution-view-container?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
42
42
|
hx-push-url="/ui/editor/execute?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
43
|
-
class="{% if request.url.path == '/ui/editor/execute' %}active-nav{% endif %}">
|
|
43
|
+
class="contrast {% if request.url.path == '/ui/editor/execute' %}active-nav{% endif %}">
|
|
44
44
|
<i class="fas fa-play-circle"></i> Execute Flock
|
|
45
45
|
</button>
|
|
46
46
|
</li>
|
|
@@ -57,6 +57,13 @@
|
|
|
57
57
|
<i class="fas fa-book"></i> View Registry
|
|
58
58
|
</button>
|
|
59
59
|
</li>
|
|
60
|
+
<li>
|
|
61
|
+
<button hx-get="/ui/htmx/settings-view?ui_mode={{ ui_mode }}" hx-target="#main-content-area"
|
|
62
|
+
hx-push-url="/ui/settings?ui_mode={{ ui_mode }}" hx-indicator="#content-loading-indicator-main"
|
|
63
|
+
class="contrast {% if request.url.path == '/ui/settings' %}active-nav{% endif %}">
|
|
64
|
+
<i class="fas fa-sliders-h"></i> Settings
|
|
65
|
+
</button>
|
|
66
|
+
</li>
|
|
60
67
|
</ul>
|
|
61
68
|
<div id="content-loading-indicator-main" class="htmx-indicator" style="text-align:center; padding:1rem;"><progress
|
|
62
69
|
indeterminate></progress></div>
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
{% endif %}
|
|
17
17
|
{% elif value is iterable and value is not string %}
|
|
18
18
|
{% if not value %}
|
|
19
|
-
<em style="color: var(--pico-
|
|
19
|
+
<em style="color: var(--pico-code-color);">(Empty List)</em>
|
|
20
20
|
{% else %}
|
|
21
21
|
<ul style="margin-left: {{ level * 20 }}px; padding-left: 1em; list-style-type: disc; margin-bottom:0.5em;">
|
|
22
22
|
{% for item in value %}
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
</ul>
|
|
26
26
|
{% endif %}
|
|
27
27
|
{% elif value is boolean %}
|
|
28
|
-
<code style="color: {{ '
|
|
28
|
+
<code style="color: {{ 'var(--flock-success-color)' if value else 'var(--flock-error-color)' }}; font-weight:bold;">{{ value }}</code>
|
|
29
29
|
{% elif value is number %}
|
|
30
|
-
<code style="color:
|
|
30
|
+
<code style="color: var(--pico-code-color);">{{ value }}</code>
|
|
31
31
|
{% elif value is none %}
|
|
32
|
-
<em style="color: var(--pico-
|
|
32
|
+
<em style="color: var(--pico-code-color);">None</em>
|
|
33
33
|
{% else %}
|
|
34
34
|
{# Apply pre-wrap for multi-line strings #}
|
|
35
35
|
<span style="white-space: pre-wrap; word-break: break-word;">{{ value }}</span>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{% if css_vars_str %}
|
|
2
|
+
<style>
|
|
3
|
+
{{ css_vars_str | safe }}
|
|
4
|
+
</style>
|
|
5
|
+
{% endif %}
|
|
6
|
+
<article style="border:1px solid var(--pico-border-color); padding:1rem; border-radius:8px;">
|
|
7
|
+
<hgroup>
|
|
8
|
+
<h3>Theme Preview: {{ theme_name }}</h3>
|
|
9
|
+
</hgroup>
|
|
10
|
+
<div class="grid" style="grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap:0.5rem;">
|
|
11
|
+
{% for color_name, color_value in main_colors %}
|
|
12
|
+
<div>
|
|
13
|
+
<div style="height:24px; border-radius:4px; background-color: {{ color_value }};"></div>
|
|
14
|
+
<small>{{ color_name }}<br>{{ color_value }}</small>
|
|
15
|
+
</div>
|
|
16
|
+
{% endfor %}
|
|
17
|
+
</div>
|
|
18
|
+
<hr>
|
|
19
|
+
<button>Button</button>
|
|
20
|
+
<button class="secondary">Secondary</button>
|
|
21
|
+
<button class="contrast">Contrast</button>
|
|
22
|
+
<p>Sample text with <a href="#">link</a>, <mark>mark</mark>, <code>code</code>.</p>
|
|
23
|
+
</article>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
flock/__init__.py,sha256=
|
|
1
|
+
flock/__init__.py,sha256=1tMdEwpFvJXVso96jyGvGPXhD9P7EbZfkSV-WX1fXuE,5918
|
|
2
2
|
flock/config.py,sha256=Nrip1Nn03KGVmRq2NYkuI-hJtnIVI1lHkurIrsPt7YI,1588
|
|
3
3
|
flock/cli/config.py,sha256=5DvFLObOx3ObisHnc9JfnUBnK83y0CBsUQzXfxPZve0,138
|
|
4
4
|
flock/cli/constants.py,sha256=ZyXtTW91P1hUMkbMwmOwp_JEL5e9-YkcuM3vHM5glP4,978
|
|
@@ -9,7 +9,7 @@ flock/cli/load_agent.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
|
|
9
9
|
flock/cli/load_examples.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
|
10
10
|
flock/cli/load_flock.py,sha256=sfZ9B9aiyC5TCEbn1xR5Yd5SoaVji6MBNYzXlWOpoZ4,7111
|
|
11
11
|
flock/cli/load_release_notes.py,sha256=bkMIjjQFfOngXkDCh2kB404lQYIToeR91LodzI2IUWM,555
|
|
12
|
-
flock/cli/loaded_flock_cli.py,sha256=
|
|
12
|
+
flock/cli/loaded_flock_cli.py,sha256=lGZ9Y2O16v4OEr0dxvPQA8HqreB_bP25C9teg4ViSsA,8202
|
|
13
13
|
flock/cli/manage_agents.py,sha256=Psl014LCrJmBgwrjsp7O3WNlWvQmVd_IDud3rd0lnLI,12786
|
|
14
14
|
flock/cli/registry_management.py,sha256=mAHy3wT97YgODR0gVOkTXDqR5NIPzM-E-z9dEtw9-tw,29790
|
|
15
15
|
flock/cli/runner.py,sha256=TgiuhRLkpa6dn3C-3eCmWx-bWUlTjaH0sD7Y-O7MrYM,1122
|
|
@@ -19,7 +19,7 @@ flock/cli/view_results.py,sha256=dOzK0O1FHSIDERnx48y-2Xke9BkOHS7pcOhs64AyIg0,781
|
|
|
19
19
|
flock/cli/yaml_editor.py,sha256=K3N0bh61G1TSDAZDnurqW9e_-hO6CtSQKXQqlDhCjVo,12527
|
|
20
20
|
flock/cli/assets/release_notes.md,sha256=bqnk50jxM3w5uY44Dc7MkdT8XmRREFxrVBAG9XCOSSU,4896
|
|
21
21
|
flock/core/__init__.py,sha256=p7lmQULRu9ejIAELfanZiyMhW0CougIPvyFHW2nqBFQ,847
|
|
22
|
-
flock/core/flock.py,sha256=
|
|
22
|
+
flock/core/flock.py,sha256=HLJyWDdpUfDfpp-hHeyhrJty0FiOHBa8CBM2YrSMFyM,30139
|
|
23
23
|
flock/core/flock_agent.py,sha256=JTqaGD_OnZSd3bVU989WMsK1rAT6UGn-JYrPxFV15EE,39576
|
|
24
24
|
flock/core/flock_evaluator.py,sha256=dOXZeDOGZcAmJ9ahqq_2bdGUU1VOXY4skmwTVpAjiVw,1685
|
|
25
25
|
flock/core/flock_factory.py,sha256=_4zsjkEmJnCR7IvJ3SUHnDbX6c7Tt3E4P5ohxwKvE6w,3173
|
|
@@ -109,7 +109,7 @@ flock/themes/abernathy.toml,sha256=T-FeYc_Nkz4dXxj-1SwKhr1BpBPg0bmqAt2Wve9cqUo,1
|
|
|
109
109
|
flock/themes/adventure.toml,sha256=sgT63QdUaoq9yatWTnm9H5jp7G6DTsECvfnVon_4LK4,1658
|
|
110
110
|
flock/themes/adventuretime.toml,sha256=ZIrnONaakvI4uqVWfMF4U7OhxtpA-uwzxzlpBgFSQu8,1664
|
|
111
111
|
flock/themes/afterglow.toml,sha256=3gDfvb3D8FBtKjX25NoFrkLl-CVg18ZI8qGhWe5vjOM,1667
|
|
112
|
-
flock/themes/alabaster.toml,sha256=
|
|
112
|
+
flock/themes/alabaster.toml,sha256=PstGD2YqNkk0oyKg0yN9bp-9xMehsPPigKbBj98RHgk,1713
|
|
113
113
|
flock/themes/alienblood.toml,sha256=1xME0JoUgdMc3kbT7hYK-4LaK8kJrTEZOekGPkhZbfs,1673
|
|
114
114
|
flock/themes/andromeda.toml,sha256=l8HftFpTWtQj8dg_9aRuidnMyKruNSvOGaGpkBoJ3iw,1670
|
|
115
115
|
flock/themes/apple-classic.toml,sha256=tHa8YwdROQgewwB5-2Fw2d9L56GDB61azmG9nNiYPtM,1667
|
|
@@ -228,7 +228,7 @@ flock/themes/gruber-darker.toml,sha256=fCorkKK4YO3bPE7f8tgZIfmQ_nUBRdWeTsmsK1ayg
|
|
|
228
228
|
flock/themes/gruvboxdark.toml,sha256=3FD37Uvy4X7JNdTWtbat96jjPXTaAvC9Y7dpj6bx0kI,1663
|
|
229
229
|
flock/themes/gruvboxdarkhard.toml,sha256=KHkr-KKuOYjTkoY4o9qPQXnH5sckK7WeBSfXUsQwZVI,1665
|
|
230
230
|
flock/themes/gruvboxlight.toml,sha256=CtBoE4ujuaQ92CDzIe5rTJXrpVBntT3iARqeKAl13Us,1671
|
|
231
|
-
flock/themes/guezwhoz.toml,sha256=
|
|
231
|
+
flock/themes/guezwhoz.toml,sha256=mIrXQCl9rfrz0NEmD4BH7lLZacePQ8jXsO0NI3Sv1E0,1714
|
|
232
232
|
flock/themes/hacktober.toml,sha256=Rztvv9BhuA0oK8nr2t4fi3qvUTNk9_54LrCesn79IV0,1667
|
|
233
233
|
flock/themes/hardcore.toml,sha256=pc8BJasVwEZ8DhEEQLlv5qiH8z1veGxwUS6d7FFXTdo,1666
|
|
234
234
|
flock/themes/harper.toml,sha256=eu_rj2fjozgE_W1nM21uZZz118wiyW7YpowgNK-m5-g,1676
|
|
@@ -422,9 +422,9 @@ flock/themes/violet-light.toml,sha256=HP14ITuiHhVxLQ71TRsIEFk6DaBWCzfyULsGqx4xZ6
|
|
|
422
422
|
flock/themes/warmneon.toml,sha256=1Zol382-WDi7mgb4DmOtxgr1pWv7o80zctfVOGcFNSI,1665
|
|
423
423
|
flock/themes/wez.toml,sha256=ZfnAQwhfaA_1hNI-Fm_nGQyqP0jCy2dO4aQFTvPb2fw,1663
|
|
424
424
|
flock/themes/whimsy.toml,sha256=xGlS4olSJQqmAG6mIq2DNEzTwFkfnfxbpdeCw3M2msQ,1668
|
|
425
|
-
flock/themes/wildcherry.toml,sha256=
|
|
425
|
+
flock/themes/wildcherry.toml,sha256=caVn8FqmlyHcKY2iE-ledAU2YWx-jUHVViyTsBl54OI,1719
|
|
426
426
|
flock/themes/wilmersdorf.toml,sha256=2Z9Y493ygAggGQvOaoERzdPHVDN2a7ZFGuLtVLaaGks,1671
|
|
427
|
-
flock/themes/wombat.toml,sha256=
|
|
427
|
+
flock/themes/wombat.toml,sha256=TCjXgMNoHjIPd9Q7Dg6ElJkvMvLKE5b2im3mC71Y4Ik,1708
|
|
428
428
|
flock/themes/wryan.toml,sha256=hede2Z_uWh9qNUo1GKLxD4IN-5iEy5IYsgO9Q-NWkyc,1670
|
|
429
429
|
flock/themes/xcodedark.toml,sha256=xI2MXOxmsG3riVcmOIkBuJFfIWizYVRv9_MPQhJIEZ4,1665
|
|
430
430
|
flock/themes/xcodedarkhc.toml,sha256=yuHNlpiuDhiqFfnxzoJ8oBNbb4yfq4FOjrzDJp2YyI8,1669
|
|
@@ -434,16 +434,17 @@ flock/themes/xcodewwdc.toml,sha256=J3LSja00Jr9AVbIgXcDNx-ZnNRuxmtArvASUCJvwhug,1
|
|
|
434
434
|
flock/themes/zenbones-dark.toml,sha256=sMC44n-zpKbm0zskPNT_pJnfCtxpxvtBa0wPRjCP3lc,1665
|
|
435
435
|
flock/themes/zenbones-light.toml,sha256=lhUL5pZUerhvjlf12A_jeYjQDoHbPGLaBz1l7yw_rHc,1671
|
|
436
436
|
flock/themes/zenbones.toml,sha256=OaET0eQSsNQ4Xen4HGqq8TxOk8zEWWjrJi2WKnuM-rE,1667
|
|
437
|
-
flock/themes/zenburn.toml,sha256=
|
|
437
|
+
flock/themes/zenburn.toml,sha256=NxOAR3cx-Z9PVErEKHFZ6jsjfKBtPmfyN_vGSri5_qo,1711
|
|
438
438
|
flock/themes/zenburned.toml,sha256=UEmquBbcAO3Zj652XKUwCsNoC2iQSlIh-q5c6DH-7Kc,1664
|
|
439
439
|
flock/themes/zenwritten-dark.toml,sha256=To5l6520_3UqAGiEumpzGWsHhXxqu9ThrMildXKgIO0,1669
|
|
440
440
|
flock/themes/zenwritten-light.toml,sha256=G1iEheCPfBNsMTGaVpEVpDzYBHA_T-MV27rolUYolmE,1666
|
|
441
441
|
flock/webapp/__init__.py,sha256=YtRbbyciN3Z2oMB9fdXZuvM3e49R8m2mY5qHLDoapRA,37
|
|
442
|
-
flock/webapp/run.py,sha256=
|
|
442
|
+
flock/webapp/run.py,sha256=DGXcZ9APSE9ae0r7t2DhVKsKdIx1kGZrhzzXFZmHqYc,4944
|
|
443
443
|
flock/webapp/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
444
|
-
flock/webapp/app/config.py,sha256=
|
|
445
|
-
flock/webapp/app/main.py,sha256=
|
|
444
|
+
flock/webapp/app/config.py,sha256=t4-4OCa_tqktkJLQgVbAmwFA7MoyahFE1IEDItsqqpY,4155
|
|
445
|
+
flock/webapp/app/main.py,sha256=DV-k_oZ-EkpujLCK3x0wZWdA0GtWsFK-3wiOw4hdmzA,42980
|
|
446
446
|
flock/webapp/app/models_ui.py,sha256=vrEBLbhEp6FziAgBSFOLT1M7ckwadsTdT7qus5_NduE,329
|
|
447
|
+
flock/webapp/app/theme_mapper.py,sha256=QzWwLWpED78oYp3FjZ9zxv1KxCyj43m8MZ0fhfzz37w,34302
|
|
447
448
|
flock/webapp/app/utils.py,sha256=RF8DMKKAj1XPmm4txUdo2OdswI1ATQ7cqUm6G9JFDzA,2942
|
|
448
449
|
flock/webapp/app/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
449
450
|
flock/webapp/app/api/agent_management.py,sha256=sV1lGmfujjiMumItVqkvFIgzolNzbSUExVjBsieesI8,9159
|
|
@@ -452,32 +453,40 @@ flock/webapp/app/api/flock_management.py,sha256=nrPrXimTNYawV2n9iS_854KobTVU3MQJ
|
|
|
452
453
|
flock/webapp/app/api/registry_viewer.py,sha256=IoInxJiRR0yFlecG_l2_eRc6l35RQQyEDMG9BcBkipY,1020
|
|
453
454
|
flock/webapp/app/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
454
455
|
flock/webapp/app/services/flock_service.py,sha256=52TjryxYT9nYadXTbwWnsyLFiqtKIwbdXm6L9aqPUyk,10294
|
|
455
|
-
flock/webapp/
|
|
456
|
-
flock/webapp/
|
|
456
|
+
flock/webapp/app/templates/theme_mapper.html,sha256=z8ZY7nmk6PiUGzD_-px7wSXcEnuBM121rMq6u-2oaCo,14249
|
|
457
|
+
flock/webapp/static/css/custom.css,sha256=Y1ZRBha-2AW9qUH3dczRnB72WYXb6i3Jp53KsF-1gHc,16484
|
|
458
|
+
flock/webapp/templates/base.html,sha256=NprLbMIB7WCG2YswvhS5aFkgSxQldR0qvxDD3bhYWpw,4657
|
|
457
459
|
flock/webapp/templates/flock_editor.html,sha256=tB17wRixXfzRDiZHQaDlxVk-s2GbpxB2y18B7FhbiLY,540
|
|
458
460
|
flock/webapp/templates/index.html,sha256=eK7s5Cnh63unqPwq9NGZGEKyvYwkhudfmSn9su3Ctyg,412
|
|
459
461
|
flock/webapp/templates/registry_viewer.html,sha256=gZM1MeefVBhCvTgNU8fzj0ZBRfbZQeobgyOo2WE31m4,3226
|
|
460
|
-
flock/webapp/templates/partials/_agent_detail_form.html,sha256=
|
|
461
|
-
flock/webapp/templates/partials/_agent_list.html,sha256=
|
|
462
|
-
flock/webapp/templates/partials/_agent_manager_view.html,sha256=
|
|
462
|
+
flock/webapp/templates/partials/_agent_detail_form.html,sha256=iRVyCgwdo7I-sjR3r2RfdIRe8XXRS-ySukBvxJTgMEg,5941
|
|
463
|
+
flock/webapp/templates/partials/_agent_list.html,sha256=PHWYz5aazrxoE4I36Mww3e5ukDvAwPTDe7PuXEiFy2o,857
|
|
464
|
+
flock/webapp/templates/partials/_agent_manager_view.html,sha256=mA4Y6ymDh2aeMU_y49Kj9q_ifhDljZlkdzZkZRB65c8,2467
|
|
465
|
+
flock/webapp/templates/partials/_agent_manager_view_old.html,sha256=hJRNvVpVOyxqyAuZ7BBT6aeVwOWPHvvnRgJ5Y-Myhuc,1005
|
|
463
466
|
flock/webapp/templates/partials/_agent_tools_checklist.html,sha256=T60fb7OrJYHUw0hJLC_otskgvbH9dZXbv5klgWBkSWk,686
|
|
464
|
-
flock/webapp/templates/partials/_create_flock_form.html,sha256=
|
|
467
|
+
flock/webapp/templates/partials/_create_flock_form.html,sha256=nQVbuTWqOQ59q5zyGXkuBixikvCkaZIPVW8CRF6wCm0,2806
|
|
465
468
|
flock/webapp/templates/partials/_dashboard_flock_detail.html,sha256=c7srF0nL8ETmP0ATsIxF8MMHMtHVXJqWVzdrnu2i-1Q,1012
|
|
466
469
|
flock/webapp/templates/partials/_dashboard_flock_file_list.html,sha256=hevhRzK94tHJC6j8_iLc0ORCOb0wEYHCpRWecXB-5io,795
|
|
467
|
-
flock/webapp/templates/partials/_dashboard_flock_properties_preview.html,sha256=
|
|
470
|
+
flock/webapp/templates/partials/_dashboard_flock_properties_preview.html,sha256=jxBKR6hnDXccqxUqFV6zJjsE1YeXhdELwlXGB6uMDEU,1595
|
|
468
471
|
flock/webapp/templates/partials/_dashboard_upload_flock_form.html,sha256=lQxR75yLgeRdm1vSkpGGgkhhfQ5JQvu14jx1y-QZUAM,956
|
|
469
472
|
flock/webapp/templates/partials/_dynamic_input_form_content.html,sha256=WYr2M7Mb5vKITFhIVXXEHppRx9IjGew91yLo1_I9kkI,1230
|
|
470
|
-
flock/webapp/templates/partials/
|
|
471
|
-
flock/webapp/templates/partials/
|
|
473
|
+
flock/webapp/templates/partials/_env_vars_table.html,sha256=6TFUWvkYwzwodqXZ0yJhH_NU6L4tz7V09mDamSfDI8c,1082
|
|
474
|
+
flock/webapp/templates/partials/_execution_form.html,sha256=WiUi8LJTUEQZRR9kZTwmu37XKjpAoyeBqhM8Fdeq_L0,2298
|
|
475
|
+
flock/webapp/templates/partials/_execution_view_container.html,sha256=OtRNZVn3M-tjh7cOTNCsCDuUCpPB6gL1PMYawfB7rnQ,1029
|
|
472
476
|
flock/webapp/templates/partials/_flock_file_list.html,sha256=FjIxAqB0OxA0mQ8f2jBX1_M_AM5ea7gCA8PEjPpiZVc,1209
|
|
473
|
-
flock/webapp/templates/partials/_flock_properties_form.html,sha256=
|
|
477
|
+
flock/webapp/templates/partials/_flock_properties_form.html,sha256=8VqgTk7c0CsyH57ON91dHgQS0zLshILghybIcxPCFpc,2887
|
|
474
478
|
flock/webapp/templates/partials/_flock_upload_form.html,sha256=h2dIPwPeTg5dv_ubrZiwBXReF0NjzJ6eKSwwz7mbQQs,960
|
|
475
|
-
flock/webapp/templates/partials/
|
|
479
|
+
flock/webapp/templates/partials/_header_flock_status.html,sha256=reNB4Prsu9lObz5tFhGk3AMe4bNw92gDJZUKABVaVBM,158
|
|
480
|
+
flock/webapp/templates/partials/_load_manager_view.html,sha256=2u4lufQMEpUlQOThUzo1zrE3AulDQ-aErruS6t91W44,2909
|
|
476
481
|
flock/webapp/templates/partials/_registry_table.html,sha256=z4EW5G3DTknymBeSlpL2PZLcb2143P35upMnmHFfeJs,715
|
|
477
482
|
flock/webapp/templates/partials/_registry_viewer_content.html,sha256=c8-qlA0FT1dbKSLTzIHw1aBGsKUo5IHD47epgXFRKJs,1882
|
|
478
483
|
flock/webapp/templates/partials/_results_display.html,sha256=vuAbIdnG_7jzeHxeeoRvPqStD_7CJwXnyhvry_kMfLQ,1625
|
|
479
|
-
flock/webapp/templates/partials/
|
|
480
|
-
flock/webapp/templates/partials/
|
|
484
|
+
flock/webapp/templates/partials/_settings_env_content.html,sha256=Q1Xr6wLHLlqiduqNk6PyF1B4juP-vvqLOLZyiHHNRLc,572
|
|
485
|
+
flock/webapp/templates/partials/_settings_theme_content.html,sha256=-y5vGRKBZf3Cp5DDE1M4Qw-yunuMtCG54Sa7r60XfJE,807
|
|
486
|
+
flock/webapp/templates/partials/_settings_view.html,sha256=7Uy2EfAgVJ2Kac5S6nkeaIEr2tSagVyR5CBbf07fbSQ,1349
|
|
487
|
+
flock/webapp/templates/partials/_sidebar.html,sha256=JXvxZpAihndiZ83Fg9JQVsUihFnog443IsM-lqF9oPc,3541
|
|
488
|
+
flock/webapp/templates/partials/_structured_data_view.html,sha256=IsmGbm2rKHZr6qx0a_n6QGs89Rq4xNFhymrZVI6OShc,2063
|
|
489
|
+
flock/webapp/templates/partials/_theme_preview.html,sha256=81vP5z8958LjhGWGwjVAVw3zW0uvYwfcXlU30i9exmo,867
|
|
481
490
|
flock/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
482
491
|
flock/workflow/activities.py,sha256=Rcgcepa-RzaEjKo2aNuI14O_sX8ij0RrqeyPa0oSw8M,9910
|
|
483
492
|
flock/workflow/agent_activities.py,sha256=NhBZscflEf2IMfSRa_pBM_TRP7uVEF_O0ROvWZ33eDc,963
|
|
@@ -485,8 +494,8 @@ flock/workflow/agent_execution_activity.py,sha256=Gy6FtuVAjf0NiUXmC3syS2eJpNQF4R
|
|
|
485
494
|
flock/workflow/flock_workflow.py,sha256=iSUF_soFvWar0ffpkzE4irkDZRx0p4HnwmEBi_Ne2sY,9666
|
|
486
495
|
flock/workflow/temporal_config.py,sha256=3_8O7SDEjMsSMXsWJBfnb6XTp0TFaz39uyzSlMTSF_I,3988
|
|
487
496
|
flock/workflow/temporal_setup.py,sha256=YIHnSBntzOchHfMSh8hoLeNXrz3B1UbR14YrR6soM7A,1606
|
|
488
|
-
flock_core-0.4.
|
|
489
|
-
flock_core-0.4.
|
|
490
|
-
flock_core-0.4.
|
|
491
|
-
flock_core-0.4.
|
|
492
|
-
flock_core-0.4.
|
|
497
|
+
flock_core-0.4.0b37.dist-info/METADATA,sha256=LwoAJHiE-9HElrwu-8oXHv-3oUfAojCocQpJLR2k6wk,17125
|
|
498
|
+
flock_core-0.4.0b37.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
499
|
+
flock_core-0.4.0b37.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
|
|
500
|
+
flock_core-0.4.0b37.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
|
|
501
|
+
flock_core-0.4.0b37.dist-info/RECORD,,
|