Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/api/process/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export async function POST(req: NextRequest) {
{
error: "CLASSIFICATION_ERROR",
message: err instanceof Error ? err.message : "Classification failed",
details: (err as any)?.details ?? null,
details: err instanceof EllaError ? err.details ?? null : null,
},
{ status: 502 }
);
Expand Down
10 changes: 6 additions & 4 deletions app/components/SiteHeader.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import Link from 'next/link'

const navItems = [
{ href: '/ella', label: '/ella' },
{ href: '/works', label: '/works' },
Expand All @@ -9,14 +11,14 @@ const navItems = [
export function SiteHeader() {
return (
<header className="site-header">
<a className="wordmark" href="/" aria-label="EllaEntity.ai home">
<Link className="wordmark" href="/" aria-label="EllaEntity.ai home">
EllaEntity<span>.ai</span>
</a>
</Link>
<nav className="site-nav" aria-label="Primary navigation">
{navItems.map((item) => (
<a key={item.href} href={item.href}>
<Link key={item.href} href={item.href}>
{item.label}
</a>
</Link>
))}
</nav>
</header>
Expand Down
4 changes: 2 additions & 2 deletions app/domains/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ export default function Page() {
dangerouslySetInnerHTML={{ __html: JSON.stringify(schema) }}
/>
<section className="content-panel" aria-labelledby="domains-title">
<h1 id="domains-title">Ella's Domain Authority</h1>
<h1 id="domains-title">Ella&apos;s Domain Authority</h1>
<p>
Ella operates with defined authority across longevity science, environmental adaptation intelligence under the TrailGenic Method, sleep research through Sleepgenic, and AI-era intelligence frameworks developed at exmxc.
</p>
</section>

<section aria-labelledby="domains-scope">
<SchemaEyebrow label="knowsAbout" />
<h2 id="domains-scope">Ella's Domain Authority</h2>
<h2 id="domains-scope">Ella&apos;s Domain Authority</h2>
<div className="domain-grid">
<article className="domain-card">
<span className="domain-fragment">#domain-longevity</span>
Expand Down
2 changes: 1 addition & 1 deletion app/system/mcp/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function Page() {

<section className="content-panel" aria-labelledby="mcp-title">
<h1 id="mcp-title">Ella MCP Access</h1>
<p>This page documents Ella's public, read-only Model Context Protocol surfaces. The canonical entity ID is <code>{ELLA_CANONICAL_ENTITY_ID}</code>.</p>
<p>This page documents Ella&apos;s public, read-only Model Context Protocol surfaces. The canonical entity ID is <code>{ELLA_CANONICAL_ENTITY_ID}</code>.</p>
<p>The native server is <code>{ELLA_MCP_SERVER_INFO.name}</code> version <code>{ELLA_MCP_SERVER_INFO.version}</code>. It supports MCP protocol versions <code>{ELLA_MCP_PROTOCOL_VERSIONS.join(', ')}</code>.</p>
<p>Public MCP access exposes canonical identity, domains, frameworks, works, collaboration records, and the entity graph. It does not expose private conversations, credentials, memory, traces, internal prompts, unpublished content, private user information, or <code>/api/process</code>.</p>
</section>
Expand Down
Loading
Loading