## Website Updates - **Homepage** (index.html): - Updated hero subtitle to mention Agent Lightning integration - Added "⚡ Now with AL" badges to all pathway cards - Removed Audit Logs from hero (moved to researcher page) - Added comprehensive community section with both Discord servers - **Researcher Page** (researcher.html:619-786): - Added Agent Lightning integration section - 5 open research questions - Demo 2 validation status with limitations - Both Discord community links - **Implementer Page** (implementer.html:1324-1341): - Added Discord invite buttons to AL CTA section - **Leader Page** (leader.html:424-441): - Added Discord invite buttons to AL CTA section - **New Integration Page** (integrations/agent-lightning.html): - Standalone AL integration guide - Overview and community links ## Feedback System (Governed AI Communication) - Backend: Feedback model, controller, routes, governance service - Frontend: FAB, modal UI, navbar integration - Three governance pathways: Autonomous, Deliberation, Human Mandatory ## Discord Communities - Tractatus Discord: https://discord.gg/Dkke2ADu4E - Agent Lightning Discord: https://discord.gg/bVZtkceKsS 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
56 lines
3.6 KiB
HTML
56 lines
3.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" data-page="agent-lightning-integration">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Agent Lightning Integration | Tractatus AI Safety Framework</title>
|
|
<meta name="description" content="Integrating Microsoft's Agent Lightning reinforcement learning with Tractatus governance framework. Two-layer architecture maintaining safety boundaries through optimization cycles.">
|
|
<link rel="icon" type="image/svg+xml" href="/favicon-new.svg">
|
|
<link rel="stylesheet" href="/css/fonts.css?v=0.1.2.1761957249779">
|
|
<link rel="stylesheet" href="/css/tailwind.css?v=0.1.2.1761957249779">
|
|
<link rel="stylesheet" href="/css/tractatus-theme.min.css?v=0.1.2.1761957249779">
|
|
<style>
|
|
.skip-link { position: absolute; left: -9999px; }
|
|
.skip-link:focus { left: 0; z-index: 100; background: white; padding: 1rem; }
|
|
</style>
|
|
</head>
|
|
<body class="bg-gray-50 text-gray-900">
|
|
<a href="#main-content" class="skip-link">Skip to main content</a>
|
|
<div id="navbar-placeholder"></div>
|
|
<main id="main-content" class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
|
|
<div class="text-center mb-16">
|
|
<div class="inline-flex items-center justify-center w-20 h-20 rounded-full bg-gradient-to-br from-purple-600 to-indigo-600 text-white text-4xl mb-6">⚡</div>
|
|
<h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-4">Agent Lightning Integration</h1>
|
|
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Combining Microsoft's reinforcement learning optimization with Tractatus governance through architectural separation</p>
|
|
</div>
|
|
<section class="mb-16 bg-white rounded-xl p-8 shadow-lg">
|
|
<h2 class="text-3xl font-bold text-gray-900 mb-6">Overview</h2>
|
|
<p class="text-gray-700 mb-4 text-lg">
|
|
<strong>Agent Lightning</strong> (Microsoft) uses reinforcement learning to optimize agentic AI systems through continuous training on human feedback.
|
|
</p>
|
|
<div class="bg-blue-50 border-l-4 border-blue-600 p-6 rounded-r-lg">
|
|
<p class="text-blue-900 font-semibold text-lg">
|
|
Tractatus addresses governance persistence through <strong>architectural separation</strong>: governance services run independently of the optimization layer.
|
|
</p>
|
|
</div>
|
|
</section>
|
|
<section class="mb-16 bg-gradient-to-br from-purple-50 to-blue-50 rounded-xl p-8">
|
|
<h2 class="text-3xl font-bold text-gray-900 mb-6">Join the Community</h2>
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
|
<div class="bg-gradient-to-br from-purple-600 to-indigo-600 text-white rounded-xl p-8 shadow-lg">
|
|
<h3 class="text-2xl font-bold mb-2">Tractatus Discord</h3>
|
|
<p class="text-purple-100 text-sm mb-4">Governance-focused discussions</p>
|
|
<a href="https://discord.gg/Dkke2ADu4E" target="_blank" class="inline-block bg-white text-purple-700 font-bold px-6 py-3 rounded-lg hover:bg-purple-50 transition-all">Join Tractatus Server →</a>
|
|
</div>
|
|
<div class="bg-gradient-to-br from-blue-600 to-cyan-600 text-white rounded-xl p-8 shadow-lg">
|
|
<h3 class="text-2xl font-bold mb-2">Agent Lightning Discord</h3>
|
|
<p class="text-blue-100 text-sm mb-4">Technical implementation help</p>
|
|
<a href="https://discord.gg/bVZtkceKsS" target="_blank" class="inline-block bg-white text-blue-700 font-bold px-6 py-3 rounded-lg hover:bg-blue-50 transition-all">Join Agent Lightning Server →</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
<script src="/js/components/navbar.js"></script>
|
|
<script src="/js/components/feedback.js"></script>
|
|
</body>
|
|
</html>
|