mirror of
https://github.com/saltbo/agent-kanban.git
synced 2026-09-19 09:01:47 +08:00
53b75fe880
Move internal upstream integration code to generic Agency names, consume @realmroot/enbor-sdk 0.3.0, expose Enbor public errors and Runner UI, and migrate active integration state without compatibility readers. BREAKING CHANGE: legacy AMA integration names and metadata contracts are removed.
59 lines
2.7 KiB
HTML
59 lines
2.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>Agent Kanban — Orchestrate AI Coding Agents on a Kanban Board</title>
|
|
<meta name="description" content="Agent-first task coordination through Realmroot Toolbox, with Enbor-owned Agent identity and runtime Sessions." />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<link rel="canonical" href="https://agent-kanban.dev/" />
|
|
|
|
<!-- Open Graph -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://agent-kanban.dev/" />
|
|
<meta property="og:title" content="Agent Kanban — Orchestrate AI Coding Agents on a Kanban Board" />
|
|
<meta property="og:description" content="Agent-first task coordination through Realmroot Toolbox, with Enbor-owned Agent identity and runtime Sessions." />
|
|
<meta property="og:image" content="https://agent-kanban.dev/og.svg" />
|
|
<meta property="og:site_name" content="Agent Kanban" />
|
|
|
|
<!-- Twitter Card -->
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:title" content="Agent Kanban — Orchestrate AI Coding Agents on a Kanban Board" />
|
|
<meta name="twitter:description" content="Agent-first task coordination through Realmroot Toolbox, with Enbor-owned Agent identity and runtime Sessions." />
|
|
<meta name="twitter:image" content="https://agent-kanban.dev/og.svg" />
|
|
|
|
<!-- Structured Data -->
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "SoftwareApplication",
|
|
"name": "Agent Kanban",
|
|
"url": "https://agent-kanban.dev",
|
|
"description": "Agent-first task coordination through Realmroot Toolbox, with Enbor-owned Agent identity and runtime Sessions.",
|
|
"applicationCategory": "DeveloperApplication",
|
|
"operatingSystem": "Web",
|
|
"offers": {
|
|
"@type": "Offer",
|
|
"price": "0",
|
|
"priceCurrency": "USD"
|
|
},
|
|
"author": {
|
|
"@type": "Person",
|
|
"name": "saltbo",
|
|
"url": "https://github.com/saltbo"
|
|
},
|
|
"codeRepository": "https://github.com/saltbo/agent-kanban",
|
|
"license": "https://opensource.org/licenses/MIT"
|
|
}
|
|
</script>
|
|
|
|
<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=Geist:wght@400;500;600;700&family=Geist+Mono:wght@400;500;600&display=swap" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|