Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions agents/agent-kit/ecosystem.mdx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: "Ecosystem"
description: "Projects and services that integrate Agent Kit."
description: "Projects and services that integrate AgentKit."
"og:image": "https://raw.githubusercontent.com/worldcoin/developer-docs/main/images/docs/docs-meta.png"
"twitter:image": "https://raw.githubusercontent.com/worldcoin/developer-docs/main/images/docs/docs-meta.png"
---

Find places to use Agent Kit at [agentbook.world](https://agentbook.world/).
Find places to use AgentKit at [agentbook.world](https://agentbook.world/).

To add your project, open a PR to the [AgentBook registry](https://github.com/andy-t-wang/agentbook).

Expand Down
14 changes: 7 additions & 7 deletions agents/agent-kit/integrate.mdx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
title: "Integrate Agent Kit"
description: "Agent Kit Beta extends x402 allowing websites to enable agent traffic without falling victim to spam."
title: "Integrate AgentKit"
description: "AgentKit Beta extends x402 allowing websites to enable agent traffic without falling victim to spam."
"og:image": "https://raw.githubusercontent.com/worldcoin/developer-docs/main/images/docs/docs-meta.png"
"og:description": "Agent Kit Beta extends x402 allowing websites to enable agent traffic without falling victim to spam."
"og:description": "AgentKit Beta extends x402 allowing websites to enable agent traffic without falling victim to spam."
"twitter:image": "https://raw.githubusercontent.com/worldcoin/developer-docs/main/images/docs/docs-meta.png"
---

Agent Kit Beta extends x402 allowing websites to distinguish human-backed agents from bots and scripts.
AgentKit Beta extends x402 allowing websites to distinguish human-backed agents from bots and scripts.
Enable agentic traffic to access api endpoints while blocking malicious actors, scalpers and spam.

This quickstart follows a default implementation path:
Expand All @@ -17,7 +17,7 @@ This quickstart follows a default implementation path:
- `free-trial` mode with 3 uses
- Hono plus `@x402/hono` as the reference server example

# Step 1: Install Agent Kit
# Step 1: Install AgentKit

```bash
npm install @worldcoin/agentkit
Expand All @@ -40,7 +40,7 @@ During registration, the CLI:
2. Prompts the World App verification flow
3. Submits the registration transaction

Once the wallet is registered, Agent Kit can resolve it to an anonymous human identifier at request time.
Once the wallet is registered, AgentKit can resolve it to an anonymous human identifier at request time.

<video className="m-auto" width="700" autoPlay controls playsInline>
<source src="/images/docs/agentkit/registration.mp4" type="video/mp4" />
Expand All @@ -50,7 +50,7 @@ Once the wallet is registered, Agent Kit can resolve it to an anonymous human id

# Step 3: Wire the hooks-based server flow

The example below shows the maintained Hono wrapper path. Agent Kit itself is not Hono-only: Express and Next.js route handlers can use the same hooks and low-level helpers from the [SDK Reference](/agents/agent-kit/sdk-reference).
The example below shows the maintained Hono wrapper path. AgentKit itself is not Hono-only: Express and Next.js route handlers can use the same hooks and low-level helpers from the [SDK Reference](/agents/agent-kit/sdk-reference).

```typescript
import { Hono } from 'hono'
Expand Down
6 changes: 3 additions & 3 deletions agents/agent-kit/sdk-reference.mdx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
title: "SDK Reference"
description: "Reference for Agent Kit modes, APIs, supported chains, and low-level helpers."
description: "Reference for AgentKit modes, APIs, supported chains, and low-level helpers."
"og:image": "https://raw.githubusercontent.com/worldcoin/developer-docs/main/images/docs/docs-meta.png"
"og:description": "Reference for the Agent Kit SDK surface and advanced integration behavior."
"og:description": "Reference for the AgentKit SDK surface and advanced integration behavior."
"twitter:image": "https://raw.githubusercontent.com/worldcoin/developer-docs/main/images/docs/docs-meta.png"
---

{/* cspell:ignore DEVNET */}

Use this page when you need the full Agent Kit surface area. For the shortest path to a working setup, start with [Integrate Agent Kit](/agents/agent-kit/integrate).
Use this page when you need the full AgentKit surface area. For the shortest path to a working setup, start with [Integrate AgentKit](/agents/agent-kit/integrate).

## Access modes

Expand Down
2 changes: 1 addition & 1 deletion docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
"tab": "Agents",
"groups": [
{
"group": "Agent Kit",
"group": "AgentKit",
"pages": [
"agents/agent-kit/integrate",
"agents/agent-kit/sdk-reference",
Expand Down
Loading