From 55df2bbaf72b45380666fc93e6e0461ecc44d0bd Mon Sep 17 00:00:00 2001 From: JulioMCruz Date: Wed, 5 Aug 2026 22:07:52 +0200 Subject: [PATCH] copy(landing): describe the knowledge commons in plain language The landing described a paid knowledge layer: an x402 access layer, programmable payment rails, sanitized premium research, and a chain strip listing Base, Celo and Solana. The API sample even queried 'ERC-8004 x402 agent payments' with 'Authorization: x402 or internal token'. Someone landing here learned about the payment plumbing before learning what the service is for. - Hero says what it is: write it down once, every helper can use it, and contributors are recognized when their knowledge helps. - Features cover the four things that matter: ask in plain words, private stays private, contributors recognized, validated before it spreads. - The strip lists what the service actually runs on instead of chains. - The API sample uses an ordinary question and a Bearer key. - Closing section points at MCP: any agent can read the commons, not just ours. Copy only. No routes, components, styles or logic changed. --- App/app/layout.tsx | 2 +- App/app/page.tsx | 42 ++++++++++++++++++++++-------------------- 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/App/app/layout.tsx b/App/app/layout.tsx index e5448eb..15c09c8 100644 --- a/App/app/layout.tsx +++ b/App/app/layout.tsx @@ -4,7 +4,7 @@ import './styles.css'; export const metadata: Metadata = { title: 'PerkOS Knowledge', - description: 'A live knowledge layer for AI agents, powered by curated research and x402 access.', + description: 'A shared knowledge commons. People contribute what they know, agents look it up when they need an answer, and contributors are recognized every time their knowledge helps.', other: { 'talentapp:project_verification': '6312cbdecd6b0d974fb841350d907866a1bc2ed3a10c7ac2057d9b747a3ef7ef662b202d1a8fcedc67ada1a5cc3d5cbddaf052fc7952b9a911c7c0fca1d4a572', diff --git a/App/app/page.tsx b/App/app/page.tsx index e7f843e..f94801d 100644 --- a/App/app/page.tsx +++ b/App/app/page.tsx @@ -1,19 +1,19 @@ import SiteNav from '../components/SiteNav'; const features = [ - ['Agent-ready search', 'Expose curated research through fast APIs designed for autonomous agents, assistants, and PerkOS services.'], - ['Private by default', 'Separate internal knowledge, sanitized public briefs, and paid external access without leaking operational notes.'], - ['x402 access layer', 'Let outside agents pay for premium briefs, topic reports, and custom research through programmable payment rails.'], - ['Built for reuse', 'Research is curated once; internal and external agents can reuse the same source of truth.'] + ['Ask in plain words', 'People and agents search the same commons and get answers back with the sources they came from.'], + ['Yours stays yours', 'Working notes stay private. You decide what becomes part of the shared commons, and nothing leaks by accident.'], + ['Contributors are recognized', 'Every time shared knowledge answers a question, the person who contributed it is credited and rewarded for it.'], + ['Checked before it spreads', 'Items are validated independently before they join the shared commons, so what circulates is worth trusting.'] ]; const apiCards = [ - ['Search', '/knowledge/search', 'Query vectorized research across protocols, markets, agents, and PerkOS product notes.'], - ['Briefs', '/knowledge/brief/:agent', 'Generate role-specific briefs for builders, researchers, strategists, and operators.'], - ['Paid reports', '/paid/report/:slug', 'Serve sanitized premium research to external agents with x402 payment verification.'] + ['Search', '/knowledge/search', 'Ask across everything the commons holds and get answers with their sources.'], + ['Briefs', '/knowledge/brief/:agent', 'A short brief written for whoever asked, whether that is a builder, a researcher, or an operator.'], + ['Reports', '/paid/report/:slug', 'Deeper reports for agents outside your team, so the people who wrote them get something back.'] ]; -const rails = ['Base', 'Celo', 'Solana', 'x402', 'Firebase', 'Qdrant', 'Postgres', 'Docker']; +const rails = ['Open source', 'Self-hostable', 'MCP', 'Qdrant', 'Postgres', 'Firebase', 'Docker']; export default function Home() { return ( @@ -23,10 +23,11 @@ export default function Home() {
-

Live knowledge infrastructure for AI agents

-

Research once. Let every agent know what matters.

+

A shared knowledge commons

+

Write it down once. Every helper can use it.

- PerkOS Knowledge turns curated research into a reusable, searchable, paid knowledge layer for internal agents and external autonomous clients. + PerkOS Knowledge is a commons. People and teams contribute what they know, agents look it up when + they need an answer, and the people who contributed are recognized every time their knowledge helps.

Open dashboard @@ -37,12 +38,12 @@ export default function Home() {
{`GET /knowledge/search
-Authorization: x402 or internal token
+Authorization: Bearer 
 
 {
-  "query": "ERC-8004 x402 agent payments",
-  "scope": "sanitized-public",
-  "results": "source-cited briefs"
+  "query": "how our refund policy works",
+  "scope": "shared",
+  "results": "answers, with their sources"
 }`}
@@ -54,7 +55,7 @@ Authorization: x402 or internal token

Why it exists

-

Knowledge that agents can actually call.

+

What a team knows should outlive the person who knew it.

{features.map(([title, text]) => (
@@ -68,9 +69,10 @@ Authorization: x402 or internal token

Interfaces

-

Internal memory, public products, paid access.

+

Private notes, shared answers, and a way to give back.

- The service is designed to run as a Dockerized application behind a reverse proxy, with private data services isolated from the public internet. + It runs as a small Docker service behind your own proxy, with the data kept off the public internet. + The code is open, so you can run the whole thing yourself.

@@ -86,8 +88,8 @@ Authorization: x402 or internal token

PerkOS agent network

-

A knowledge service that can become a skill, an API, and a market.

-

Next: indexing pipeline, authenticated internal search, and x402-paid public endpoints.

+

Knowledge that stays useful, and stays with the people who created it.

+

Any agent that speaks MCP can read the commons, not just ours.

);