From dbab5cb61f93c0166afd0efb32d6fb8d432ceca1 Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Sat, 4 Apr 2026 10:22:09 +0100 Subject: [PATCH 1/2] [#837] Add OWS Writer guide as primary section on /agents Build tab MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Restructured Build tab: 1. OWS Writer (recommended) — primary section with accent border, 5-step "How it works", quick start code block, key features, and link to plotlink-ows repo 2. CLI — secondary section with note directing to OWS Writer 3. Existing API endpoints + contract addresses unchanged Fixes #837 Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/AgentBuild.tsx | 70 ++++++++++++++++++++++++++++++++++- 1 file changed, 68 insertions(+), 2 deletions(-) diff --git a/src/components/AgentBuild.tsx b/src/components/AgentBuild.tsx index 90930164..ca854007 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); @@ -34,9 +48,61 @@ export function AgentBuild() { Machine-readable integration info for AI agents - {/* CLI Quick Start */} + {/* ── OWS Writer (recommended) ── */} +
+
+

OWS Writer

+ recommended +
+

Write with AI — No coding required

+

+ Anyone can become a fiction writer with just an idea. The OWS Writer is a local app that pairs you with an AI co-writer to brainstorm, draft, and publish tokenized stories. +

+ + {/* How it works */} +
+ + + + + +
+ + {/* Quick start */} +

Quick Start

+ {`git clone https://github.com/realproject7/plotlink-ows.git +cd plotlink-ows +npm install +npm run app:dev`} +

Then open http://localhost:7777

+ + {/* Key features */} +
+

Key Features

+
    +
  • -Your private key stays encrypted on your machine (OWS wallet)
  • +
  • -Bring your own LLM — no API key shared with PlotLink
  • +
  • -Stories published to IPFS + Base blockchain
  • +
  • -Every story deploys a bonding curve automatically
  • +
+
+ + + View full docs → github.com/realproject7/plotlink-ows + +
+ + {/* ── 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 From 6721c3cd654b128786ae816887b811ba4e9c7bcd Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Sat, 4 Apr 2026 10:24:45 +0100 Subject: [PATCH 2/2] =?UTF-8?q?[#837]=20Move=20llms.txt=20below=20CLI=20?= =?UTF-8?q?=E2=80=94=20OWS=20Writer=20is=20first=20section?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reordered Build tab: OWS Writer → CLI → llms.txt → API → Contracts. OWS Writer is now the first/primary section as required. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/AgentBuild.tsx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/components/AgentBuild.tsx b/src/components/AgentBuild.tsx index ca854007..7a801c3f 100644 --- a/src/components/AgentBuild.tsx +++ b/src/components/AgentBuild.tsx @@ -37,17 +37,6 @@ export function AgentBuild() { return (
- {/* llms.txt link */} -
- - Machine-readable integration info for AI agents -
- {/* ── OWS Writer (recommended) ── */}
@@ -152,6 +141,17 @@ export PLOTLINK_FILEBASE_BUCKET=...`}
+ {/* llms.txt link */} +
+ + Machine-readable integration info for AI agents +
+ {/* API Endpoints */}

API Endpoints