hkuds--deeptutor
e4dcfc49aa
Tests / Import Check (Python 3.13) (push) Has been cancelled
Tests / Import Check (Python 3.14) (push) Has been cancelled
Tests / Python Tests (Python 3.11) (push) Has been cancelled
Tests / Python Tests (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.14) (push) Has been cancelled
Tests / Test Summary (push) Has been cancelled
Tests / Lint and Format (push) Has been cancelled
Tests / Web Node Tests (push) Has been cancelled
Tests / Import Check (Python 3.11) (push) Has been cancelled
Tests / Import Check (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.13) (push) Has been cancelled
19 行
539 B
TypeScript
19 行
539 B
TypeScript
"use client";
|
|
|
|
import ConnectedAgents from "@/components/agents/ConnectedAgents";
|
|
import MyAgentsSection from "@/components/space/MyAgentsSection";
|
|
|
|
/**
|
|
* "My Agents" hub — the top-level page. Two complementary halves: live agents
|
|
* connected to the local Claude Code / Codex (consult them in chat now), and
|
|
* the imported-history agents (replay and continue past transcripts).
|
|
*/
|
|
export default function AgentsHub() {
|
|
return (
|
|
<div className="space-y-12">
|
|
<ConnectedAgents />
|
|
<MyAgentsSection />
|
|
</div>
|
|
);
|
|
}
|