aria-sdk
v0.1.0
Published
Aria SDK - Decorator-based framework for building agentic applications
Maintainers
Readme
aria-sdk
TypeScript SDK + CLI for building Aria tools, agents, teams, pipelines, and infra definitions.
arc is the CLI binary name (short for Aria Compiler / ar-c).
Install
# library usage in a project
npm install aria-sdk
# or
bun add aria-sdk# CLI usage globally
npm install -g aria-sdkCLI
After install, use arc:
arc --help
arc --versionCommon workflow
arc new my-app
cd my-app
arc check
arc build
arc upload dist/my-app.ariaRuntime commands
arc auth login
arc run tool <name> "<prompt>"
arc run agent <name> "<prompt>"
arc run team <name> "<objective>"
arc run pipeline <name> "{\"key\":\"value\"}"
arc shell
arc healthManagement commands
arc config show
arc config set <key> <value>
arc memory list
arc cron list
arc container list
arc task list
arc db query <prefix>
arc networkSDK usage
import { Tool, Agent, Team, Pipeline } from 'aria-sdk'See examples in examples/.
Requirements
- Node.js
>=18 - TypeScript
>=5
Package
- npm package:
aria-sdk - CLI binary:
arc
