Model Registry: - Add per-user custom roles (add/remove via UI); required roles chat/orchestrator/distill are always present and cannot be removed - Auto-migrate legacy .env-defined roles to custom_roles on first access - Role config panel (gear): Remove role button moved inside panel; required badge below name - Role select: Primary + Backup slots only (was three) Settings pages — Tailwind CSS migration (CDN, preflight: false): - local_llm.html, settings.html, help.html, notifications.html, tools_settings.html, crons.html, integrations.html all migrated; pg-* color tokens; dark/light via data-theme pg.css fixes: - input[type=checkbox/radio]: width: auto — prevents pg.css width:100% from stretching checkboxes - btn-submit: responsive sizing via Tailwind w-full md:w-96 on each button (no longer full-width on desktop) Documentation: - MASTER.md, TODO__Agents.md: remove "/ Inara" from titles; description updated to "per-user AI personas" - HELP.md: persona-agnostic language throughout (NC Talk, Google Chat, push, schedules, HA sections); roles section restructured to show required vs. custom roles with examples - notifications.html: subtitle and HA description use "your persona" not "Inara" Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
135 lines
5.7 KiB
HTML
135 lines
5.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Cortex — Integrations</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet">
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script>
|
|
tailwind.config = {
|
|
corePlugins: { preflight: false },
|
|
darkMode: ['selector', '[data-theme="dark"]'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
pg: {
|
|
bg: 'var(--pg-bg)',
|
|
surface: 'var(--pg-surface)',
|
|
border: 'var(--pg-border)',
|
|
text: 'var(--pg-text)',
|
|
muted: 'var(--pg-muted)',
|
|
dim: 'var(--pg-dim)',
|
|
dimmer: 'var(--pg-dimmer)',
|
|
bright: 'var(--pg-bright)',
|
|
accent: 'var(--pg-accent)',
|
|
action: 'var(--pg-action)',
|
|
}
|
|
},
|
|
fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'] }
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<link rel="stylesheet" href="/static/pg.css">
|
|
<script>(function(){var t=localStorage.getItem('theme')||(window.matchMedia('(prefers-color-scheme: dark)').matches?'dark':'light');document.documentElement.setAttribute('data-theme',t);})();</script>
|
|
<style>
|
|
details.channel-block summary::-webkit-details-marker { display: none; }
|
|
details.channel-block summary::before {
|
|
content: '▶'; font-size: 0.65rem; color: var(--pg-dimmer);
|
|
transition: transform 0.15s; flex-shrink: 0;
|
|
}
|
|
details.channel-block[open] summary::before { transform: rotate(90deg); }
|
|
details.channel-block[open] summary { border-bottom: 1px solid var(--pg-border); }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav class="page-nav">
|
|
<a href="{{ back_href }}" class="nav-link">← Chat</a>
|
|
<a href="{{ help_href }}" class="nav-link">Help</a>
|
|
<a href="/settings" class="nav-link">Settings</a>
|
|
<a href="/settings/models" class="nav-link">Models</a>
|
|
<a href="/settings/notifications" class="nav-link">Notifications</a>
|
|
<a href="/settings/tools" class="nav-link">Tools</a>
|
|
<a href="/settings/crons" class="nav-link">Schedules</a>
|
|
<a href="/settings/integrations" class="nav-link active">Integrations</a>
|
|
<span class="nav-spacer"></span>
|
|
<a href="/logout" class="nav-link nav-logout">Sign out</a>
|
|
</nav>
|
|
<div class="page-wrap">
|
|
<h1 class="page-title">Integrations</h1>
|
|
<p class="page-subtitle">External service connections — admin only.</p>
|
|
|
|
<!-- SUCCESS -->
|
|
<!-- ERROR -->
|
|
|
|
<form method="POST" action="/settings/integrations">
|
|
|
|
<div class="section">
|
|
<h2>Aether Platform Database</h2>
|
|
<p class="section-note">
|
|
Gives the orchestrator direct read-only access to the Aether MariaDB via the
|
|
<code>ae_db_query</code>, <code>ae_db_describe</code>, and <code>ae_db_show_view</code> tools.
|
|
Only SELECT, SHOW, DESCRIBE, and EXPLAIN are permitted — no writes possible.
|
|
</p>
|
|
|
|
<details class="channel-block border border-pg-border rounded-lg overflow-hidden mb-3"
|
|
{{ ae_db_host and 'open' or '' }}>
|
|
<summary class="flex items-center gap-2 px-4 py-3 text-sm font-semibold text-pg-muted cursor-pointer select-none bg-pg-bg">
|
|
Connection
|
|
</summary>
|
|
<div class="px-4 pt-4 pb-2">
|
|
<p class="text-xs text-pg-dimmer mb-4 -mt-1 leading-relaxed">
|
|
Use the same credentials as
|
|
<code class="font-mono text-pg-accent bg-pg-bg border border-pg-border rounded px-1 text-xs">agents_sync/mcp/scripts/sql_inspector.py</code>.
|
|
Leave the password blank to keep the stored value.
|
|
</p>
|
|
<div class="grid grid-cols-[1fr_7rem] gap-3 items-start">
|
|
<div class="field">
|
|
<label for="ae_db_host">Host</label>
|
|
<input type="text" id="ae_db_host" name="ae_db_host"
|
|
value="{{ ae_db_host }}"
|
|
placeholder="192.168.64.5"
|
|
autocomplete="off" spellcheck="false">
|
|
</div>
|
|
<div class="field">
|
|
<label for="ae_db_port">Port</label>
|
|
<input type="number" id="ae_db_port" name="ae_db_port"
|
|
value="{{ ae_db_port }}"
|
|
placeholder="3306" min="1" max="65535"
|
|
autocomplete="off">
|
|
</div>
|
|
</div>
|
|
<div class="field">
|
|
<label for="ae_db_name">Database name</label>
|
|
<input type="text" id="ae_db_name" name="ae_db_name"
|
|
value="{{ ae_db_name }}"
|
|
placeholder="aether_dev"
|
|
autocomplete="off" spellcheck="false">
|
|
</div>
|
|
<div class="field">
|
|
<label for="ae_db_user">Username</label>
|
|
<input type="text" id="ae_db_user" name="ae_db_user"
|
|
value="{{ ae_db_user }}"
|
|
placeholder="aether_dev"
|
|
autocomplete="off" spellcheck="false">
|
|
</div>
|
|
<div class="field">
|
|
<label for="ae_db_password">Password</label>
|
|
<input type="password" id="ae_db_password" name="ae_db_password"
|
|
value=""
|
|
placeholder="Leave blank to keep existing value"
|
|
autocomplete="new-password" spellcheck="false">
|
|
</div>
|
|
</div>
|
|
</details>
|
|
</div>
|
|
|
|
<button type="submit" class="btn-submit w-full md:w-96">Save integrations</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|