Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
srph committed Nov 27, 2024
1 parent be7704c commit 567f6b4
Showing 1 changed file with 28 additions and 3 deletions.
31 changes: 28 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

This is the official Echo Agent Registry for the Echos ecosystem.

## Accessing Echo Agents

To access the Echo Agents, you can use the following URL:

```
https://registry.echos.fun/api/echos
```

## Register an Echo Agent

To register an Echo Agent, you need to create a new unique directory under `src` and add a new `echo.json` file. Feel free to use any of the existing `echo.json` files as a template.
Expand All @@ -16,10 +24,27 @@ We have a GitHub workflow that automatically regenerates the entry file and publ

As long as this workflow is committed, Vercel will automatically update our serverless function to include the new Echo Agent.

## Accessing Echo Agents
## Maintenance

To access the Echo Agents, you can use the following URL:
If you're not a maintainer, this section is not relevant to you.

This project requires node `v20` and `pnpm`. To install dependencies, run:

```
https://registry.echos.fun/api/echos
pnpm install
```

You can run the following commands to validate, format, and typecheck, and codegen the project:

```
pnpm build:validate
pnpm build:prettier
pnpm build:typecheck
pnpm build:codegen
```

To run the serverless function locally, run:

```
pnpm start
```

0 comments on commit 567f6b4

Please sign in to comment.