amico

Crates.ioamico
lib.rsamico
version0.1.2
created_at2025-01-16 14:06:18.284494+00
updated_at2025-01-18 08:42:30.435278+00
descriptionThe agent system executable for the Amico AI Agent Framework
homepage
repositoryhttps://github.com/AIMOverse/amico
max_upload_size
id1519306
size43,683
Archer (takasaki404)

documentation

README

Amico AI Agent

Amico is an AI Agent Framework designed for DePin devices.

Quick Start

Install & Run Amico Immediately

cargo install amico

# This will run Amico using the default config.
amico

Development Guide

Amico is built with Rust and is hosted on GitHub.

First, clone the repository:

git clone https://github.com/AIMOverse/amico.git
cd amico

Then, run cargo build to build the library and the agent binary.

cargo build

Plugin Development

Amico plugins are written in Rust and can be found in the plugins directory.

To add a new plugin:

cd plugins
cargo new --lib --vcs none amico-plugin-<name>

Then, edit the Cargo.toml file and add description" field under [package].

Supported Plugins

Official Plugins

  • Corepack amico-plugin-corepack
  • Solana amico-plugin-solana
  • Twitter amico-plugin-twitter
Commit count: 400

cargo fmt