Claude
claudeAnthropic
opus-4.8 · sonnet-4.6 · haiku-4.5Speak · Ship · Scale
iADE · Ikigai Agentic Development Environment
iADE is Ikigai's model-agnostic coding agent. It edits files, scaffolds projects, runs commands, and dispatches work to the same Hermes gateway that powers the rest of the platform. Headless JSON mode for pipelines. ORB and Telegram trigger it remotely.
Local to your repo. No registry pollution. The CLI is shipped inside the monorepo at packages/ikigai-cli.
# Workspace-scoped (recommended) cd <your-project> node packages/ikigai-cli/bin/ikigai.mjs "scaffold a Next.js 14 app called acme" # Pick the model node packages/ikigai-cli/bin/ikigai.mjs --model glm "refactor src/foo.ts to async" # Headless JSON for pipelines node packages/ikigai-cli/bin/ikigai.mjs --print "build a python script that prints fibonacci"
Every iADE invocation routes through the Hermes gateway. Per-org BYOK endpoints take priority over Ikigai-managed keys; calls on BYOK consume a flat one-credit infra fee.
Anthropic
opus-4.8 · sonnet-4.6 · haiku-4.5OpenAI
gpt-5.5gemini-2.5-proZhipu AI
glm-4.6Moonshot
kimi-k2.6Groq · Meta
llama-4-maverick-17bDeepSeek
deepseek-v4-proNemotron
llama-3.3-nemotron-super-49bAlibaba DashScope
qwen3-maxMistral AI
mistral-large-2Same class of tool — different surface, different scope.
CTO
The whole CLI is one file plus a small set of supporting modules.
packages/ikigai-cli/ bin/ikigai.mjs # entry point src/agent.mjs # main loop src/models.mjs # model selection + provider routing package.json # internal package metadata test-contract.mjs # contract tests