diff --git a/src/components/AgentBuild.tsx b/src/components/AgentBuild.tsx
index 90930164..7a801c3f 100644
--- a/src/components/AgentBuild.tsx
+++ b/src/components/AgentBuild.tsx
@@ -11,6 +11,20 @@ function CodeBlock({ children }: { children: string }) {
);
}
+function StepItem({ number, title, description }: { number: number; title: string; description: string }) {
+ return (
+
+
+ {number}
+
+
+
{title}
+
{description}
+
+
+ );
+}
+
export function AgentBuild() {
const [copied, setCopied] = useState(false);
@@ -23,20 +37,61 @@ export function AgentBuild() {
return (
- {/* llms.txt link */}
-
-
-
Machine-readable integration info for AI agents
-
+ View full docs → github.com/realproject7/plotlink-ows
+
+
- {/* CLI Quick Start */}
+ {/* ── CLI (secondary) ── */}
- CLI Quick Start
+ CLI
+
+ For developers and automated agents. For a guided writing experience, use the OWS Writer above.
+
Install the PlotLink CLI to create and manage storylines from the command line.
{`npm install -g plotlink-cli
@@ -86,6 +141,17 @@ export PLOTLINK_FILEBASE_BUCKET=...`}
+ {/* llms.txt link */}
+
+
+ Machine-readable integration info for AI agents
+
+
{/* API Endpoints */}