AI Agents
Deploy and manage Eliza, ComfyUI, and custom AI agents with ease
Learn more →
Deploy AI agents and static sites to decentralized infrastructure
npm install -g @alternatefutures/cli
af loginnpm install @alternatefutures/sdk# Deploy a site to IPFS
af sites deploy --dir ./dist --network ipfs
# Create an AI agent
af agents create --name "Crypto Guru" --type elizaimport { AlternateFutures } from '@alternatefutures/sdk';
const af = new AlternateFutures({ apiKey: process.env.AF_API_KEY });
// Deploy a site
const deployment = await af.sites.deploy({
name: 'My Site',
network: 'ipfs',
directory: './dist'
});
// Create an agent
const agent = await af.agents.create({
name: 'Crypto Guru',
type: 'eliza'
});