Automate PoC¶
A process improvement using agentic CLI and plugins for easier, faster PoC setup, configuration, and troubleshooting.
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.
Coming soon.
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:
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)
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:
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:
Step 3: Add the marketplace and plugins¶
Coming soon.
Planning to add support for others such as Gemini CLI, Codex, etc.