> ## Documentation Index
> Fetch the complete documentation index at: https://aiwithapex.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Croc

# Building a personal assistant with crocbot (Croc-style)

crocbot is a Telegram gateway for **Pi** agents. This guide is the "personal assistant" setup: a dedicated Telegram bot that behaves like your always-on agent.

## ⚠️ Safety first

You're putting an agent in a position to:

* run commands on your machine (depending on your Pi tool setup)
* read/write files in your workspace
* send messages back out via Telegram

Start conservative:

* Always set `channels.telegram.allowFrom` (never run open-to-the-world on your personal Mac).
* Use a dedicated Telegram bot for the assistant.
* Heartbeats now default to every 30 minutes. Disable until you trust the setup by setting `agents.defaults.heartbeat.every: "0m"`.

## Prerequisites

* Node **22+**
* crocbot available on PATH (recommended: global install)
* A Telegram bot token (from @BotFather)

```bash theme={null}
npm install -g crocbot@latest
# or: pnpm add -g crocbot@latest
```

From source (development):

```bash theme={null}
git clone https://github.com/moshehbenavraham/crocbot.git
cd crocbot
pnpm install
pnpm ui:build # auto-installs UI deps on first run
pnpm build
pnpm link --global
```

## The Telegram bot setup (recommended)

You want this:

```
Your Phone (personal)
┌─────────────────┐
│  Your Telegram  │  ──────▶  @YourAssistantBot
│  @your_user     │  message  (Telegram Bot)
└─────────────────┘                  │
                                     │ bot token
                                     ▼
                            ┌─────────────────┐
                            │  Your Mac       │
                            │  (crocbot)      │
                            │    Pi agent     │
                            └─────────────────┘
```

Create a dedicated bot via @BotFather so only messages to that bot become "agent input".

## 5-minute quick start

1. Configure your Telegram bot token:

```bash theme={null}
crocbot channels login
```

2. Start the Gateway (leave it running):

```bash theme={null}
crocbot gateway --port 18789
```

3. Put a minimal config in `~/.crocbot/crocbot.json`:

```json5 theme={null}
{
  channels: { telegram: { allowFrom: ["@your_telegram_username"] } }
}
```

Now message your bot from your allowlisted Telegram account.

When onboarding finishes, we auto-open the dashboard with your gateway token and print the tokenized link. To reopen later: `crocbot dashboard`.

## Give the agent a workspace (AGENTS)

Croc reads operating instructions and “memory” from its workspace directory.

By default, crocbot uses `~/croc` as the agent workspace, and will create it (plus starter `AGENTS.md`, `SOUL.md`, `TOOLS.md`, `IDENTITY.md`, `USER.md`) automatically on setup/first agent run. `BOOTSTRAP.md` is only created when the workspace is brand new (it should not come back after you delete it).

Tip: treat this folder like Croc’s “memory” and make it a git repo (ideally private) so your `AGENTS.md` + memory files are backed up. If git is installed, brand-new workspaces are auto-initialized.

```bash theme={null}
crocbot setup
```

Full workspace layout + backup guide: [Agent workspace](/concepts/agent-workspace)
Memory workflow: [Memory](/concepts/memory)

Optional: choose a different workspace with `agents.defaults.workspace` (supports `~`).

```json5 theme={null}
{
  agent: {
    workspace: "~/croc"
  }
}
```

If you already ship your own workspace files from a repo, you can disable bootstrap file creation entirely:

```json5 theme={null}
{
  agent: {
    skipBootstrap: true
  }
}
```

## The config that turns it into “an assistant”

crocbot defaults to a good assistant setup, but you’ll usually want to tune:

* persona/instructions in `SOUL.md`
* thinking defaults (if desired)
* heartbeats (once you trust it)

Example:

```json5 theme={null}
{
  logging: { level: "info" },
  agent: {
    model: "anthropic/claude-opus-4-5",
    workspace: "~/croc",
    thinkingDefault: "high",
    timeoutSeconds: 1800,
    // Start with 0; enable later.
    heartbeat: { every: "0m" }
  },
  channels: {
    telegram: {
      allowFrom: ["@your_telegram_username"],
      groups: {
        "*": { requireMention: true }
      }
    }
  },
  routing: {
    groupChat: {
      mentionPatterns: ["@croc", "croc"]
    }
  },
  session: {
    scope: "per-sender",
    resetTriggers: ["/new", "/reset"],
    reset: {
      mode: "daily",
      atHour: 4,
      idleMinutes: 10080
    }
  }
}
```

## Sessions and memory

* Session files: `~/.crocbot/agents/<agentId>/sessions/{{SessionId}}.jsonl`
* Session metadata (token usage, last route, etc): `~/.crocbot/agents/<agentId>/sessions/sessions.json` (legacy: `~/.crocbot/sessions/sessions.json`)
* `/new` or `/reset` starts a fresh session for that chat (configurable via `resetTriggers`). If sent alone, the agent replies with a short hello to confirm the reset.
* `/compact [instructions]` compacts the session context and reports the remaining context budget.

## Heartbeats (proactive mode)

By default, crocbot runs a heartbeat every 30 minutes with the prompt:
`Read HEARTBEAT.md if it exists (workspace context). Follow it strictly. Do not infer or repeat old tasks from prior chats. If nothing needs attention, reply HEARTBEAT_OK.`
Set `agents.defaults.heartbeat.every: "0m"` to disable.

* If `HEARTBEAT.md` exists but is effectively empty (only blank lines and markdown headers like `# Heading`), crocbot skips the heartbeat run to save API calls.
* If the file is missing, the heartbeat still runs and the model decides what to do.
* If the agent replies with `HEARTBEAT_OK` (optionally with short padding; see `agents.defaults.heartbeat.ackMaxChars`), crocbot suppresses outbound delivery for that heartbeat.
* Heartbeats run full agent turns — shorter intervals burn more tokens.

```json5 theme={null}
{
  agent: {
    heartbeat: { every: "30m" }
  }
}
```

## Media in and out

Inbound attachments (images/audio/docs) can be surfaced to your command via templates:

* `{{MediaPath}}` (local temp file path)
* `{{MediaUrl}}` (pseudo-URL)
* `{{Transcript}}` (if audio transcription is enabled)

Outbound attachments from the agent: include `MEDIA:<path-or-url>` on its own line (no spaces). Example:

```
Here’s the screenshot.
MEDIA:/tmp/screenshot.png
```

crocbot extracts these and sends them as media alongside the text.

## Operations checklist

```bash theme={null}
crocbot status          # local status (creds, sessions, queued events)
crocbot status --all    # full diagnosis (read-only, pasteable)
crocbot status --deep   # adds gateway health probes (Telegram)
crocbot health --json   # gateway health snapshot (WS)
```

Logs live under `/tmp/crocbot/` (default: `crocbot-YYYY-MM-DD.log`).

## Next steps

* WebChat: [WebChat](/web/webchat)
* Gateway ops: [Gateway runbook](/gateway)
* Cron + wakeups: [Cron jobs](/automation/cron-jobs)
* Windows status: [Windows (WSL2)](/platforms/windows)
* Linux status: [Linux app](/platforms/linux)
* Security: [Security](/gateway/security)
