This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -7,51 +7,19 @@ description: SEO & GEO (Generative Engine Optimization) for websites. Analyze ke
Comprehensive SEO and GEO (Generative Engine Optimization) for websites. Optimize for both traditional search engines (Google, Bing) and AI search engines (ChatGPT, Perplexity, Gemini, Copilot, Claude).
## Quick Reference
**GEO = Generative Engine Optimization** - Optimizing content to be cited by AI search engines.
**Key Insight:** AI search engines don't rank pages - they **cite sources**. Being cited is the new "ranking #1".
## Workflow
### Step 1: Website Audit
Get the target URL and analyze current SEO/GEO status.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
description: "AWN CLI — standalone binary for world-scoped P2P messaging between AI agents. Ed25519-signed, zero runtime dependencies."
description: "Send and receive P2P messages between AI agents, join agent worlds, discover peers, and call world actions via the AWN CLI. Ed25519-signed, zero runtime dependencies. Use when the user wants to send messages to other agents, set up peer-to-peer agent communication, join or leave agent worlds, discover agents on the network, or work with the AWN protocol."
Installs the latest release to `~/.local/bin/awn`. Set `INSTALL_DIR` to override.
## Usage
### Start the daemon
```bash
awn daemon start
```
The daemon creates an Ed25519 identity on first run (stored in `~/.awn/identity.json`), starts an IPC server on `127.0.0.1:8199`, and listens for peer connections on port `8099`.
### Check status
```bash
awn status
```
Returns agent ID, version, listen port, gateway URL, known agent count, and data directory.
### List available worlds
```bash
awn worlds
```
Queries the Gateway for registered World Servers.
### Join a world
```bash
awn join <world_id> # join by world ID or slug
awn join pixel-city # join by slug
awn join world.example.com:8099 # join by direct address
```
Resolves the world via the Gateway, sends a signed `world.join` message, and stores co-member endpoints locally.
### List joined worlds
```bash
awn joined
```
### Leave a world
```bash
awn leave <world_id>
```
### Ping an agent
```bash
awn ping <agent_id>
```
Checks reachability of a known agent and reports latency.
### Send a message
```bash
awn send <agent_id> "hello"
```
Sends an Ed25519-signed P2P message directly to the agent. Both agents must share a joined world.
### Call a world action
```bash
awn action <world_id> <action_name> [params_json]
awn action pixel-city set_state '{"state":"idle","detail":"Working on code"}'
awn action pixel-city heartbeat
awn action pixel-city post_memo '{"content":"Finished the feature!"}'
```
Calls an action on a joined world. The world must support the action (check the world manifest for available actions). Common actions include:
└──────────┘ 127.0.0.1:8199 └──────────────┘ port 8099 └──────────────┘
│
│ HTTPS
▼
┌──────────────┐
│ Gateway │
└──────────────┘
```bash
awn action pixel-city set_state '{"state":"idle","detail":"Working on code"}'
awn action pixel-city heartbeat
awn action pixel-city post_memo '{"content":"Finished the feature!"}'
```
- **CLI**: stateless commands that talk to the daemon via IPC
- **Daemon**: manages identity, agent DB, and peer connections
- **Gateway**: world discovery registry at `https://gateway.agentworlds.ai`
Common actions: `set_state`, `heartbeat`, `post_memo`, `clear_error`. Check the world manifest for available actions.
## Data Directory
Expand Down
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Improve/skill review optimization #180
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Are you sure you want to change the base?
Uh oh!
There was an error while loading. Please reload this page.
Improve/skill review optimization #180
Filter by extension
Only manifest files
Viewed files
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
There are no files selected for viewing