Skip to content

Clerkboard/create-arp-agent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

create-arp-agent

Scaffold a new ARP (Agent Relations Protocol) agent in seconds.

Usage

npx create-arp-agent

Or with arguments:

npx create-arp-agent my-agent --domain agents.mycompany.com --lang ts

Options

Flag Description Default
<name> Agent project name my-agent
--domain Domain for the agent localhost
--lang Language: ts or py ts
--port Port number 3141 (TS) / 3142 (Python)

What it generates

TypeScript

my-agent/
├── package.json
├── tsconfig.json
├── .env
├── .gitignore
├── agent.ts
├── Dockerfile
├── docker-compose.yml
└── README.md

Python

my-agent/
├── requirements.txt
├── .env
├── .gitignore
├── agent.py
├── arp_crypto.py
├── arp_store.py
└── README.md

After generating

cd my-agent
npm install    # (TypeScript)
npm start

# or for Python:
pip install -r requirements.txt
python agent.py

About

The CLI scaffolding tool

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors