Monkeys
Start Here

Getting Started

Choose the right path for trying, deploying, or developing Monkeys

Quick Start

Choose the path that matches what you want to do.

GoalRecommended path
Understand the productWhy Monkeys and Core Concepts
Try Monkeys without running infrastructureCloud Service
Bring up a private environment from zeroDeploy From Zero
Run the full local stack with containersDocker Compose
Develop frontend or backend codeLocal Development
Deploy to KubernetesHelm

Current Repository Layout

The current Monkeys platform is split into multiple repositories. Clone them as siblings under one workspace when running locally.

INFMONKEYS/
  monkeys/
  monkeys-server/
  monkeys-studio/
  monkeys-kernel/
  monkeys-compute/
  ...

Core product repositories:

git clone https://github.com/infmonkeys/monkeys.git
git clone https://github.com/infmonkeys/monkeys-server.git
git clone https://github.com/infmonkeys/monkeys-studio.git
git clone https://github.com/infmonkeys/monkeys-kernel.git
git clone https://github.com/infmonkeys/monkeys-compute.git

Clone optional capability repositories only when needed:

git clone https://github.com/infmonkeys/monkeys-agent-server.git
git clone https://github.com/infmonkeys/monkeys-billing-server.git
git clone https://github.com/infmonkeys/monkeys-data-server.git
git clone https://github.com/infmonkeys/monkeys-webhook-server.git
git clone https://github.com/infmonkeys/monkeys-mcp-server.git
git clone https://github.com/infmonkeys/monkeys-conductor-worker.git
git clone https://github.com/infmonkeys/monkeys-training-worker.git
git clone https://github.com/infmonkeys/monkeys-comfyui-worker.git
git clone https://github.com/infmonkeys/monkey-tools-third-party-api.git
git clone https://github.com/infmonkeys/monkey-tools-third-party-api-python.git
git clone https://github.com/infmonkeys/monkey-tools-sandbox.git
git clone https://github.com/infmonkeys/monkey-tools-agentkits.git

Development Summary

  1. Start shared infrastructure from monkeys/docker/infrastructure.
  2. Start product services from monkeys/docker/services, or run backend/frontend repositories directly for development.
  3. Import any external tool service into Studio through its manifest.json.
  4. Create or open a workflow in Studio and test it from the UI or OpenAI-compatible API.

Use Deploy From Zero for a complete private environment, or Local Development when you are preparing a code contribution.

On this page