@alfe.ai/cli
v0.0.6
Published
CLI for setting up and managing Alfe AI agents
Readme
@alfe.ai/cli
CLI for setting up and managing Alfe AI agents.
Installation
pnpm install
pnpm buildUsage
# Authenticate with the Alfe API
alfe login
# Run the setup wizard
alfe setup
# Diagnose environment and connectivity issues
alfe doctor
# Manage the local gateway daemon
alfe gateway start|stop|restart|status|install|uninstall|logs
# Manage integrations
alfe integration list|install|remove|configure|status|searchConfiguration
Config is stored at ~/.alfe/config.toml:
api_key = "your-api-key-here"
gateway = "https://api.alfe.ai" # optional, derived from token prefixThe API endpoint is derived automatically from your token prefix (alfe_dev_, alfe_test_, alfe_live_). The gateway field overrides this.
Development
# Run in dev mode
pnpm dev
# Type check
pnpm typecheck
# Build
pnpm build