Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.joggr.ai/llms.txt

Use this file to discover all available pages before exploring further.

The Joggr CLI reads project-level configuration to control sandbox behavior and post-setup commands.

Config File

The CLI looks for a config file at .joggr/config.json or .joggr/config.yaml in your project root. Create the file manually and copy one of the examples below.

Schema

A schema is available for editor autocompletion and validation.
{
  "$schema": "https://raw.githubusercontent.com/joggrdocs/home/refs/heads/main/schema.json"
}

Reference

KeyTypeDescription
$schemastringURL to the JSON Schema for editor validation
sandboxobjectSandbox creation and post-setup commands

Examples

{
  "$schema": "https://raw.githubusercontent.com/joggrdocs/home/refs/heads/main/schema.json",
  "sandbox": {
    "local": {
      "copy": [".env", ".env.local"],
      "run": ["pnpm install"],
      "command": "claude"
    }
  }
}