Skip to content

Automate PoC

A process improvement using agentic CLI and plugins for easier, faster PoC setup, configuration, and troubleshooting.

Read the FAQ


Demo

Viewable by organisation members only.

Setup walkthroughs

Real-world example

Prospect troubleshooting missing APM traces with Project DateNight (~12min) — see the root cause and solution report and final outcome. The Sales Engineer resolved the issue and got tracing working faster than expected, within an hour, without raising a support ticket.


Get started

Step 1: Access to LLM

Skip if you already have access to an LLM server.

Step 2: Set up agentic CLI (for macOS / Linux)

Skip if you already have an agentic coding tool (Codex, Gemini CLI, etc.).

Download and install Claude Code:

curl -fsSL https://claude.ai/install.sh | bash

Start Claude Code: (replace YOUR_GATEWAY_BASE_URL and YOUR_API_KEY provided by your Sales Engineer)

Option 1 — settings flag (inline config)

~/.local/bin/claude --settings '{"env":{"ANTHROPIC_BASE_URL":"YOUR_GATEWAY_BASE_URL","ANTHROPIC_AUTH_TOKEN":"YOUR_API_KEY"}}'

Option 2 — environment variables (temporary, current session only)

ANTHROPIC_BASE_URL="YOUR_GATEWAY_BASE_URL" ANTHROPIC_AUTH_TOKEN="YOUR_API_KEY" ~/.local/bin/claude

For a full install, see opencode.ai. Otherwise, use the portable setup below.

Download the portable OpenCode script:

curl -fLO https://raw.githubusercontent.com/jek-bao-choo/opencode-fork/refs/heads/dev/opencode-portable.sh

Make it executable:

chmod +x opencode-portable.sh

Create the config file: (replace YOUR_GATEWAY_BASE_URL provided by your Sales Engineer)

cat << 'EOF' > opencode-config.json
{
    "$schema": "https://opencode.ai/config.json",
    "provider": {
        "litellm": {
        "npm": "@ai-sdk/openai-compatible",
        "name": "LiteLLM",
        "options": {
            "baseURL": "YOUR_GATEWAY_BASE_URL/v1"
        },
        "models": {
            "claude-opus-4-6": {
            "name": "Claude Opus 4.6"
            },
            "claude-sonnet-4-6": {
            "name": "Claude Sonnet 4.6"
            }
        }
        }
    }
}
EOF

Launch OpenCode:

OPENCODE_CONFIG="./opencode-config.json" ./opencode-portable.sh

# Once OpenCode opens, run:
#   /connect
#
# Search for and select:
#   LiteLLM
#
# Enter the API key provided by your assigned Sales Engineer

Step 3: Add the marketplace and plugins

Add the marketplace

/plugin marketplace add https://github.com/jek-bao-choo/datadog-agentic-plugins

Install the plugin

/plugin install quickstart@datadog-agentic-plugins

Reload the plugins

/reload-plugins

Display the menu

/quickstart:menu

Coming soon.

Planning to add support for others such as Gemini CLI, Codex, etc.