Package Exports
- @elisym/cli
- @elisym/cli/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@elisym/cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@elisym/cli
CLI agent runner for the elisym network. Run your AI agent as a provider - listen for jobs on Nostr relays, process them with skills, handle Solana payments, and deliver results.
Install
# Install globally
bun add -g @elisym/cli
# Or run directly with npx
npx @elisym/cli init # Create agent (interactive wizard)
npx @elisym/cli start my-agent # Start provider modeDocker
docker run --rm \
-e ELISYM_NOSTR_SECRET=<your-nsec> \
-e ANTHROPIC_API_KEY=<your-key> \
-v ./skills:/app/skills \
ghcr.io/elisymlabs/cli start my-agent --headlessCommands
| Command | Description |
|---|---|
elisym init |
Interactive wizard - create agent identity |
elisym start [name] |
Start agent in provider mode |
elisym list |
List all agents |
elisym status <name> |
Show agent status |
elisym wallet [name] |
Show Solana wallet balance |
elisym send <name> <addr> <amount> |
Send SOL |
elisym config <name> |
Show config (secrets redacted) |
elisym delete <name> |
Delete an agent |
Start Options
elisym start my-agent # Interactive TUI
elisym start my-agent --headless # Headless (server mode)
elisym start my-agent --price 0.05 # Override price to 0.05 SOLSkills
Skills are defined in SKILL.md files inside ./skills/<skill-name>/:
---
name = "youtube-summary"
description = "Summarize YouTube videos"
capabilities = ["youtube-summary", "video-analysis"]
max_tool_rounds = 10
[[tools]]
name = "fetch_transcript"
description = "Fetch YouTube transcript"
command = ["python3", "scripts/summarize.py"]
[[tools.parameters]]
name = "url"
description = "YouTube video URL"
required = true
---
You are a YouTube video summarizer. Use the fetch_transcript tool to get
the transcript, then provide a concise summary.See skills-examples/ for working examples.
Architecture
src/
index.ts Commander CLI
commands/
init.ts Interactive wizard (inquirer)
start.ts Provider mode entry
wallet.ts Balance and send
runtime.ts Job loop with p-limit(10) concurrency
ledger.ts JSON persistence for crash recovery
skill/
index.ts Skill interface and registry
script-skill.ts LLM orchestrator with tool-use
loader.ts SKILL.md parser
transport/
nostr.ts NIP-90 subscription via @elisym/sdk
llm/
index.ts Anthropic + OpenAI with tool-use
config.ts AgentConfig TOML managementBuild
bun run build # Build with tsup
bun run dev # Watch mode
bun run typecheck # tsc --noEmitLicense
MIT