Expose short copy/paste operator prompts on /prompts derived from canonical workflow files with workflow path and SHA-256 hash. Adds JSON export at /api/prompts, copy buttons, and tests. Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
161 lines
3.9 KiB
Python
161 lines
3.9 KiB
Python
"""Shared HTML layout for the internal web UI."""
|
|
|
|
from __future__ import annotations
|
|
|
|
NAV_ITEMS = (
|
|
("/", "Home"),
|
|
("/projects", "Projects"),
|
|
("/prompts", "Prompts"),
|
|
("/runtime", "Runtime"),
|
|
("/audit", "Audit"),
|
|
("/worktrees", "Worktrees"),
|
|
("/leases", "Leases"),
|
|
)
|
|
|
|
MVP_NOTICE = (
|
|
"Read-only MVP — Gitea, MCP tools, and canonical workflows remain the "
|
|
"source of truth. No mutation endpoints."
|
|
)
|
|
|
|
|
|
def render_page(*, title: str, body_html: str, extra_head: str = "") -> str:
|
|
nav_links = "".join(
|
|
f'<a href="{href}">{label}</a>' for href, label in NAV_ITEMS
|
|
)
|
|
return f"""<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{title} · MCP Control Plane</title>
|
|
<style>
|
|
:root {{
|
|
--bg: #0f1419;
|
|
--surface: #1a2332;
|
|
--text: #e7ecf3;
|
|
--muted: #8b9cb3;
|
|
--accent: #5b9fd4;
|
|
--border: #2a3648;
|
|
}}
|
|
* {{ box-sizing: border-box; }}
|
|
body {{
|
|
margin: 0;
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
line-height: 1.5;
|
|
}}
|
|
header {{
|
|
background: var(--surface);
|
|
border-bottom: 1px solid var(--border);
|
|
padding: 0.75rem 1.25rem;
|
|
}}
|
|
header h1 {{
|
|
margin: 0 0 0.5rem;
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
}}
|
|
nav {{
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.75rem 1rem;
|
|
}}
|
|
nav a {{
|
|
color: var(--accent);
|
|
text-decoration: none;
|
|
font-size: 0.9rem;
|
|
}}
|
|
nav a:hover {{ text-decoration: underline; }}
|
|
main {{
|
|
max-width: 52rem;
|
|
margin: 0 auto;
|
|
padding: 1.5rem 1.25rem 2.5rem;
|
|
}}
|
|
.notice {{
|
|
color: var(--muted);
|
|
font-size: 0.85rem;
|
|
margin-bottom: 1.25rem;
|
|
padding: 0.65rem 0.85rem;
|
|
border: 1px solid var(--border);
|
|
border-radius: 6px;
|
|
background: var(--surface);
|
|
}}
|
|
h2 {{ margin-top: 0; font-size: 1.35rem; }}
|
|
p {{ color: var(--muted); }}
|
|
.stub {{
|
|
border-left: 3px solid var(--accent);
|
|
padding-left: 0.85rem;
|
|
margin: 1rem 0;
|
|
}}
|
|
.meta {{ font-size: 0.85rem; }}
|
|
table.registry, table.detail {{
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin: 1rem 0;
|
|
font-size: 0.9rem;
|
|
}}
|
|
table.registry th, table.registry td,
|
|
table.detail th, table.detail td {{
|
|
text-align: left;
|
|
padding: 0.45rem 0.6rem;
|
|
border-bottom: 1px solid var(--border);
|
|
}}
|
|
table.registry th, table.detail th {{
|
|
color: var(--muted);
|
|
font-weight: 500;
|
|
}}
|
|
code {{
|
|
font-family: ui-monospace, monospace;
|
|
font-size: 0.85em;
|
|
color: var(--text);
|
|
}}
|
|
ol.checklist {{
|
|
padding-left: 1.25rem;
|
|
margin: 0.5rem 0 1.5rem;
|
|
}}
|
|
ol.checklist li {{ margin-bottom: 0.85rem; }}
|
|
ol.checklist p {{ margin: 0.25rem 0 0; font-size: 0.9rem; }}
|
|
.prompt-card {{
|
|
margin: 1.25rem 0 1.75rem;
|
|
padding: 1rem 1.1rem;
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
background: var(--surface);
|
|
}}
|
|
.prompt-card h3 {{ margin: 0 0 0.5rem; font-size: 1.05rem; }}
|
|
pre.prompt-text {{
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
margin: 0.75rem 0;
|
|
padding: 0.75rem 0.85rem;
|
|
border-radius: 6px;
|
|
background: var(--bg);
|
|
border: 1px solid var(--border);
|
|
font-size: 0.9rem;
|
|
color: var(--text);
|
|
}}
|
|
.copy-btn {{
|
|
background: var(--accent);
|
|
color: #0b1219;
|
|
border: none;
|
|
border-radius: 6px;
|
|
padding: 0.4rem 0.85rem;
|
|
font-size: 0.85rem;
|
|
cursor: pointer;
|
|
}}
|
|
.copy-btn:hover {{ filter: brightness(1.08); }}
|
|
.muted {{ color: var(--muted); }}
|
|
</style>
|
|
{extra_head}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>MCP Control Plane</h1>
|
|
<nav>{nav_links}</nav>
|
|
</header>
|
|
<main>
|
|
<p class="notice">{MVP_NOTICE}</p>
|
|
{body_html}
|
|
</main>
|
|
</body>
|
|
</html>""" |