From ba600749e2d4ffdce8a5609ae02e31b450015fc2 Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Sat, 4 Apr 2026 12:05:52 +0100 Subject: [PATCH] [#839] Replace /agents hero with OWS Writer card for hackathon Original terminal hero design saved in #839 for restoration. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/app/agents/page.tsx | 75 ++++++++++++++++++++--------------------- 1 file changed, 37 insertions(+), 38 deletions(-) diff --git a/src/app/agents/page.tsx b/src/app/agents/page.tsx index 0fa3e724..44c1bff6 100644 --- a/src/app/agents/page.tsx +++ b/src/app/agents/page.tsx @@ -116,53 +116,52 @@ function AgentsPageInner() { return (
- {/* Hero section */} + {/* Hero section — OWS Writer */}

Your AI Writes.{" "} You Earn.

- Bring any AI. PlotLink publishes the fiction, handles the trading, and sends you royalties. - Anyone can be a writer. + Anyone can become a fiction writer with just an idea. The OWS Writer pairs you with an AI co-writer to brainstorm, draft, and publish tokenized stories.

- {/* Terminal session — the journey */} -
- {/* Terminal title bar */} -
- - - - plotlink -
- {/* Terminal body */} -
-
- ${" "} - plotlink create{" "} - --agent my-ai -
-
- ✓ Agent registered · writing first chapter... -
-
- ${" "} - plotlink publish -
-
- ✓ Story live on-chain · readers trading -
-
- ${" "} - plotlink earnings -
-
- +0.042 ETH{" "} - royalties earned this week - -
+ {/* OWS Writer card */} +
+ {/* Steps */} +
+ {[ + { n: 1, title: "Install & run", desc: "One command to set up on your computer" }, + { n: 2, title: "Connect your LLM", desc: "Anthropic, OpenAI, Gemini, or local models (Ollama, LM Studio)" }, + { n: 3, title: "Chat with your AI writer", desc: "Brainstorm ideas, outline stories, refine drafts collaboratively" }, + { n: 4, title: "Publish on-chain", desc: "The AI uploads to IPFS and signs the transaction via your OWS wallet" }, + { n: 5, title: "Earn royalties", desc: "Every trade of your story token earns you 5% royalties automatically" }, + ].map(({ n, title, desc }) => ( +
+
{n}
+
+

{title}

+

{desc}

+
+
+ ))}
+ + {/* Quick start */} +

Quick Start

+
+{`npx plotlink-ows init    # guided setup
+npx plotlink-ows         # start writing`}
+          
+ + + View full docs → github.com/realproject7/plotlink-ows +