Documentation

Learn the concepts, APIs, and best practices to build with CloneJutsu.

Core Concepts

Projects

Projects scope your agents, tools, rules, and API tokens.

Agents (Coordinator & Subagent)

Coordinators orchestrate tasks and spawn Subagents when needed.

Subagents perform focused tasks with tools and rules.

Tools

Tools are Python functions registered to an agent. Provide a clear docstring, typed args, and return type.

def web_search(query: str, num_results: int = 5) -> list:
    """Search the web for information."""
    return []

Rules

Rules enforce policy and safety during agent execution.

Sessions

Sessions capture conversation history and agent state for resuming later.

MCP Servers

Integrate external capabilities via MCP. Register servers under MCP Serversin the Console and attach them to Coordinators.