26 lines
699 B
HTML
26 lines
699 B
HTML
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Orchestrator Status</title>
|
||
|
|
<script type="module" src="/plugins/a0_software_orchestrator/webui/orchestrator-config-store.js"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div x-data>
|
||
|
|
<template x-if="$store.a0SoftwareOrchestratorStore">
|
||
|
|
<div>
|
||
|
|
<h2>Orchestrator Status</h2>
|
||
|
|
<div id="status-panel">
|
||
|
|
<p>Plugin: Active</p>
|
||
|
|
<p>Version: 0.1.0</p>
|
||
|
|
<p>Mode: Core</p>
|
||
|
|
<p>Advanced Packs: None active</p>
|
||
|
|
<p>Subagent Profiles: 9 (1 manager + 8 specialists)</p>
|
||
|
|
<p>Skills: 15</p>
|
||
|
|
<p>Tools: 11 core tools</p>
|
||
|
|
<p>API Handlers: 6</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|