A reference AI-powered infrastructure management CLI built on the turf MCP
server — a drop-in replacement for
Terraform with agentic superpowers: full support for Terraform HCL and the
module registry, driven by an AI agent. turf drives the server through
cagent to plan and apply changes against
any OpenTofu provider.
It is intended as a showcase: a small, readable example of how to wrap the turf MCP server in a polished UX. The server is the product; this CLI is one way to consume it. Here's the CLI in action:
kind-crd-up.mp4
Installs both the turf CLI and the turf-mcp-server binary from the alpha
release:
brew install turfbuild/tap/turf
turf --version
which turf-mcp-serverAlpha / pre-release. This is early evaluation software. Expect rough edges, and please don't redistribute the binaries.
Build just the CLI from this repository (the source is MPL-2.0):
go install github.com/turfbuild/turf@latest # → a `turf` binary
# or, from a clone:
make build # → bin/turfThe CLI launches turf-mcp-server as a subprocess and must be able to find
it. Install the server separately and ensure it is on PATH:
# Verify the server is reachable
which turf-mcp-server
# Or point the CLI at a specific binary
export TURF_MCP_SERVER=/path/to/turf-mcp-server# Interactive infrastructure management (TUI)
turf chat
# Start the guided product demo (type inside the session)
turf chat # then: /demo
# Deploy from HCL configuration in the current directory
turf up
# ...or target another directory (like `tofu -chdir=DIR`)
turf -C ./examples/azure-storage-container up
# Destroy everything in a configuration
turf -C ./examples/azure-storage-container destroy
# Use a specific model
turf --model anthropic/claude-sonnet-5 chat
# Run a one-shot request without the TUI (see Scripting with exec)
turf exec "what workspaces exist?"
# Authenticate to a private registry or TFE-compatible host (see Credentials)
turf login app.terraform.io
turf logout app.terraform.ioType /demo inside turf chat to launch the guided walkthrough. It covers workspaces, remote backends, registry modules, Terraform Actions, and a live Kubernetes stack converged via deferrals. Showcase is the recommended starting point — a fast, cross-cutting grand tour — but you can jump straight to any deep-dive topic (/demo actions, /demo deferrals, etc.).
| Flag | Env | Default | Description |
|---|---|---|---|
--model |
TURF_MODEL |
auto |
LLM as a named model, provider/model, or auto (see Model providers) |
--base-url |
TURF_MODEL_BASE_URL |
(provider default) | Model endpoint for OpenAI-compatible servers (vLLM, LM Studio, gateways) |
--mcp-server |
TURF_MCP_SERVER |
(PATH lookup) | Path to the turf-mcp-server binary |
--tmp-dir |
TURF_TMP_DIR |
system temp | Cache directory for downloaded provider binaries |
--memory-path |
./.turf/memory.db |
SQLite memory database | |
--no-memory |
false |
Disable persistent agent memory | |
--session-db |
TURF_SESSION_DB |
./.turf/sessions.db |
SQLite session-history database (chat/exec resume via --session/--continue) |
--no-session |
false |
Disable session persistence and resume | |
--chdir, -C |
Switch to this directory before running | ||
--log-file |
TF_LOG_PATH |
(stderr) | Write server logs to this file |
--log-level |
TF_LOG_CORE, TF_LOG |
info |
trace/debug/info/warn/error/off |
--log-format |
TF_LOG -JSON suffix |
text |
text or json |
--theme |
TURF_THEME |
meadow |
TUI theme name; overrides the saved choice for this run |
The three --log-* flags are pass-throughs to the turf-mcp-server subprocess. When unset, the TF_LOG_* env vars (matching OpenTofu's convention) reach the server through environment inheritance. Provider plugins also inherit these vars, so TF_LOG_PROVIDER=DEBUG enables plugin-side debug logging into the same sink as the server.
turf login <hostname> obtains an API token for a Terraform-compatible host — a
private module registry, or a TFE-compatible backend such as HCP Terraform or
Scalr — and turf logout <hostname> removes it again. Like tofu login, both
require an explicit hostname; neither guesses a default.
The token is written to credentials.tfrc.json in your OpenTofu/Terraform CLI
configuration directory, in the same format those tools write, so a
co-installed tofu or terraform reads exactly what turf stores (and vice
versa):
| Platform | Path |
|---|---|
| macOS, Linux | ~/.terraform.d/credentials.tfrc.json |
Linux, fresh install with XDG_CONFIG_HOME set and no ~/.terraform.d |
$XDG_CONFIG_HOME/opentofu/credentials.tfrc.json |
| Windows | %APPDATA%\terraform.d\credentials.tfrc.json |
The file is written with mode 0600, and any unrelated settings already in it
(plugin_cache_dir, provider_installation, other hosts) are preserved.
turf uses these credentials for its own host-facing requests too — remote-protocol
state backends (HCP Terraform, Scalr, TFE) and the provider registry — so one
turf login covers turf and a co-installed tofu/terraform alike.
Note: that consumption lives in
turf-mcp-serverand landed after v0.11.1. Against v0.11.1 or earlier the file is still written correctly and still servestofu/terraform, but the server itself authenticates anonymously. Check withturf-mcp-server --version.
Most hosts, including HCP Terraform and Scalr, do not implement the OAuth login
protocol, so turf login opens their user-token page and reads back the token
you paste. Hosts that do advertise a login.v1 service get a full OAuth 2.0
authorization-code flow with PKCE instead. Either way turf shows you where the
token will be stored and asks for confirmation before writing it.
For CI, pipe the token instead of typing it:
echo "$TFE_TOKEN" | turf login --token-stdin tfe.example.comPrefer a pipe over a herestring (<<<), which materializes the token in a
temporary file in some shells. Without --token-stdin, turf login refuses to
run with stdin redirected rather than hanging on a prompt nobody can answer.
Precedence when a host is configured more than once follows OpenTofu's: a
TF_TOKEN_<hostname> environment variable wins over the credentials file, which
wins over a credentials helper. turf login warns when the token it is about to
write would be shadowed by such a variable, and turf logout warns when one will
keep authenticating you after the stored token is gone.
Two limitations relative to tofu login: turf does not detect a credentials
block hand-written in .terraformrc/.tofurc (such a block silently keeps
winning over the file turf writes), and it does not support credentials helpers.
Note also that turf logout only forgets the token locally — it does not revoke
it on the host, so revoke it there if it has leaked.
turf exec runs a single natural-language request against the model (set
with --model) without launching the TUI, streaming the run to stdout. It is
the entry point for driving turf from a script, a CI job, or another agent — the
same real model and tools as chat, just headless.
# A message argument — quoting is optional; words are joined into one request
turf exec create a random_pet named demo
turf exec "create a random_pet named demo"
# Use -- to pass a message that begins with a dash
turf exec -- --dry-run first, then apply
# Read the request from stdin
echo "what workspaces exist?" | turf exec
turf exec - < request.txtThe process exits non-zero if the run fails, so exec composes with normal
shell error handling (set -e, &&, CI steps).
--json — machine-readable event stream. With --json, turf emits one JSON
object per line for every runtime event (agent text, tool calls, tool results,
warnings, errors) instead of formatted text. This is the reliable way to assert
on a run from a script even though model prose is non-deterministic — you match
on structure (which tools ran, whether an error occurred), not wording:
# Which turf tools did the run invoke?
turf exec --json "create a random_pet" | jq -r 'select(.type=="tool_call") | .tool_call.function.name'
# Fail if any error event was emitted
turf exec --json "reconcile the stack" | jq -e 'select(.type=="error")' && echo "run had errors" >&2--yes / --auto-approve — unattended runs. exec is non-interactive, so
plan-approval questions are auto-confirmed, but the mutation gate (apply,
imports, refresh) still asks on stdin by default. Pass --yes to auto-approve
those so a run proceeds with no human at the keyboard. Use --hide-tool-calls
to print only the agent's prose.
execstill launchesturf-mcp-server, so it must be onPATH(see Install). For repeatable runs with no cloud credentials or cost, point it at HCL using OpenTofu's credential-free providers (null,local,random,tls).
turf runs on any model provider that Docker's docker-agent runtime supports —
select one with --model provider/model (env TURF_MODEL). The default is
auto: turf picks the first provider whose credentials are set, falling back to
a keyless local model, so it runs out of the box — pin a specific default in
turf.yaml. Docker's providers overview lists
the full matrix and each provider's exact configuration.
turf needs a tool-calling model. Every turf action runs through tools, so the model must support tool (function) calling. The cloud models below all qualify; for local models, choose a tool-capable one (see below) — a model without it fails with
does not support tools.
Run the model entirely on your own machine — no API key, no cost, and your infrastructure prompts stay off third-party APIs. Local models need two things configured that cloud models do not: a tool-capable model, and a context window large enough for turf's prompt.
turf's prompt is ~27k tokens before you type anything. turf exposes ~40 infrastructure tools plus their workflow instructions, and that goes in every request. Docker Model Runner's default window is far smaller, so an unconfigured local model rejects turf's very first message with
exceeds the available context size. Setcontext_sizeand it works.
Docker Model Runner (bundled with Docker Desktop) — pull the model, then
declare it in a turf.yaml:
docker model pull ai/qwen3 # once — fetch the model# ~/.turf/turf.yaml (global) or <project>/.turf/turf.yaml
model: local
models:
local:
provider: dmr
model: ai/qwen3
provider_opts:
# turf's own prompt is ~27k tokens, so Model Runner's default window
# rejects the first request. 64k leaves working room for plan and state
# tool results. Lower it if the model won't fit in memory — the engine
# reserves cache for the whole window up front, so memory use scales
# with this number.
context_size: 65536Then just turf chat. The config file is required for this: context_size is a
per-model setting, so --model dmr/ai/qwen3 on its own cannot carry it and
will fall back to the runner's default window. turf discovers the local Model
Runner automatically; set MODEL_RUNNER_HOST to point at a remote runner. See
Docker's Model Runner guide.
Ollama (if you already run it):
turf --model ollama/llama3.2 # defaults to http://localhost:11434Ollama has the same context problem but a different knob — provider_opts does
not reach it. Size its window with OLLAMA_CONTEXT_LENGTH (or num_ctx in a
Modelfile) before starting the server.
Pick a tool-capable local model — DMR's ai/qwen3, or on Ollama one of
llama3.1/llama3.2, qwen2.5, or the mistral family. Older or smaller
builds (plain llama3, tiny 1B GGUFs) often lack tool support and fail with
does not support tools.
Export the matching API key, then select the model. A representative set:
--model prefix |
Example --model |
API key env var |
|---|---|---|
anthropic |
anthropic/claude-sonnet-4-6 |
ANTHROPIC_API_KEY |
openai |
openai/gpt-5 |
OPENAI_API_KEY |
google |
google/gemini-pro-latest |
GEMINI_API_KEY or GOOGLE_API_KEY |
mistral |
mistral/mistral-large-latest |
MISTRAL_API_KEY |
groq |
groq/llama-3.3-70b-versatile |
GROQ_API_KEY |
deepseek |
deepseek/deepseek-chat |
DEEPSEEK_API_KEY |
xai |
xai/grok-4 |
XAI_API_KEY |
amazon-bedrock |
amazon-bedrock/anthropic.claude-3-5-sonnet-20241022-v2:0 |
standard AWS credentials |
turf inherits docker-agent's full provider list — including Azure OpenAI and GitHub Copilot. See the providers overview for every option.
For any OpenAI-compatible server (vLLM, LM Studio, an internal gateway), use the
openai provider and override the endpoint with --base-url (env
TURF_MODEL_BASE_URL):
turf --model openai/my-model --base-url http://localhost:8000/v1Beyond the flags, a project can pin its model configuration in a turf.yaml,
read from two locations in increasing precedence (project overrides global):
~/.turf/turf.yaml— per-user global (override the home dir withTURF_HOME)<project>/.turf/turf.yaml— versioned alongside your infra config
Overall model precedence is --model / TURF_MODEL > turf.yaml model: >
auto. A minimal file:
# Default selector: a named model below, an inline provider/model, or "auto".
model: smart
models:
# Try each candidate in order; pick the first whose credentials are set. A
# candidate is an inline provider/model OR the name of another entry here —
# which is how the local fallback below keeps its provider_opts.
smart:
first_available:
- anthropic/claude-sonnet-5
- openai/gpt-4o
- local # keyless local fallback (defined below)
# Docker Model Runner. context_size is required for local models: turf's own
# prompt is ~27k tokens and the runner's default window is far smaller. See
# Local models above.
local:
provider: dmr
model: ai/qwen3
provider_opts:
context_size: 65536
# A named model that targets a custom provider (defined below).
house:
provider: myhouse
model: my-model
# Custom providers, referenced by models by name — e.g. an internal
# OpenAI-compatible gateway. Credentials are read from the named env var.
providers:
myhouse:
provider: openai
base_url: https://gateway.internal/v1
token_key: MY_HOUSE_KEYThe models: and providers: values follow docker-agent's model/provider
schema, so per-model tuning fields (temperature, max_tokens, …) and a
top-level models_gateway: work here too. The same file also carries the
branding: overlay. For a complete project, see the
CLI configuration example.
could not start the model … API key … is required — turf could not reach an
LLM. Either set the key for your provider, or switch to a keyless local model —
which needs a turf.yaml, not just a --model flag (see
Local models).
unknown provider … / invalid model format … — --model must be a named
model from turf.yaml or a provider/model ref (e.g.
anthropic/claude-sonnet-5, google/gemini-pro-latest). Check the prefix
against the providers overview.
turf-mcp-server not found on PATH — the CLI launches the server as a
subprocess and must find it. Install it and put it on PATH, or point at it
explicitly (see Install):
export TURF_MCP_SERVER=/path/to/turf-mcp-serverturf drives everything through tools, so the model must support tool (function)
calling — many local models don't. Switch to a tool-capable model: DMR's
ai/qwen3, or on Ollama one of llama3.1/llama3.2, qwen2.5, or mistral
rather than plain llama3. See Model providers.
A local model is running with a context window smaller than turf's prompt. turf sends ~27k tokens before you type anything (roughly 40 infrastructure tools and their workflow instructions), and Docker Model Runner's default window is far smaller — so the very first message is rejected.
Declare the model in a turf.yaml with a context_size that fits, then run
turf chat with no --model flag — the setting is per-model, so
--model dmr/ai/qwen3 alone cannot carry it:
model: local
models:
local:
provider: dmr
model: ai/qwen3
provider_opts:
context_size: 65536See Local models. On Ollama the equivalent
knob is OLLAMA_CONTEXT_LENGTH.
The inference engine reserves cache for the whole context window up front, so
memory use scales with context_size — a large window on a large model can
exhaust RAM and push the machine into swap. Lower context_size (32768 is the
practical floor given turf's ~27k prompt) or pick a smaller model.
turf ships five built-in terrain themes — a play on turf's own name, the astroturf pun: the same astroturf imagined in a different terrain, each palette drawn from that place's natural objects. The terrain tints the HCL syntax colors and the create / destroy / change status colors, but those keep their meaning (create stays green, destroy red, change amber) so a plan stays legible:
| Theme | Terrain | Palette notes |
|---|---|---|
meadow |
real (natural) turf | grass & loam canvas, wildflower buttercup/goldenrod & thistle/lavender ink |
stadium |
football-field astroturf — default | vivid turf, white chalk yard-lines, pigskin, flag red |
sonora |
Arizona xeriscape | adobe, sandstone, saguaro green, turquoise, sunset coral |
lunar |
astroturf on the moon | grey regolith, black sky, Earthrise blue, astro-green |
surf |
turf underwater | seagrass, deep teal ocean, bioluminescent cyan, coral, sea-urchin purple |
The default is stadium. cagent's built-ins (and the legacy calm-roots)
remain selectable via /theme. Themes are loaded and saved from turf's own
config home — ~/.turf (override with TURF_HOME) — so turf never reads or
writes ~/.cagent.
To use a custom theme, drop a YAML file at ~/.turf/themes/<name>.yaml and pick
it inside the TUI with the /theme command. A partial file is merged onto the
built-in default, so you only specify the colors you want to change. Edits
hot-reload while the /theme picker is open, and your selection persists across
restarts.
To preview a theme without changing your saved choice, launch with --theme
(or set TURF_THEME):
turf --theme tokyo-night chat# ~/.turf/themes/my-brand.yaml
version: 1
name: "My Brand"
colors:
text_primary: "#C0C0C0"
markdown:
heading: "#7AA2F7"
link: "#7AA2F7"A distributor can give turf their own look and voice without forking it, using a
branding: section in turf.yaml. It merges
from the same two locations, so a brand can be set once per machine
(~/.turf/turf.yaml) or per project (<project>/.turf/turf.yaml), and a project
file can override a single key while inheriting the rest.
branding:
# Default theme — a theme *ref*, not a path: one of turf's terrain themes, or
# your own dropped at ~/.turf/themes/<name>.yaml (see Theming).
theme: surf
# Welcome banner for the lean TUI, as a path relative to this turf.yaml.
# Plain text is fine — each line is drawn in the theme's accent color.
banner: taco-banner.txt
# Replaces turf's built-in chat welcome text.
welcome_message: |
Welcome to Taco — infrastructure management with governance built in.
# Appended to turf's persona as extra standing guidance.
additional_instructions: |
Treat platform policy as a gate: evaluate the plan against the workspace's
policy set before asking the user to approve it.Branding is look and voice only — it does not rename turf. There is no name
key: the binary, the TUI status bar, and the agent badge all still say turf, so
a co-branded turf is still recognizably turf. The tool namespace is likewise
fixed at turf_* (the timeline renderers, the /tools grouping, and the
pre-approval allow-list all depend on it), and no gate is relaxed — the
pre-approved tool list, the mutation confirmations, and the filesystem sandbox
are all in code.
Two things worth knowing. theme: sets the default — a saved /theme choice
and --theme both still win, so a user keeps control of their own look. And
additional_instructions is prompt content from a config file: it can steer the
agent's behavior, so treat a turf.yaml from an untrusted source with the same
care as any script you would run. A misconfigured brand degrades rather than
fails — an unreadable banner or theme falls back to turf's own with a warning.
For worked examples, see the integrations in the examples repo.
You can teach turf your own procedures by dropping SKILL.md files into
turf-owned locations. Each skill is a directory:
~/.turf/skills/<name>/SKILL.md # global: org best practices, migration playbooks
<project>/.turf/skills/<name>/SKILL.md # project: versioned alongside your infra config
turf scans only these two locations (override the global one with
TURF_HOME) — it never reads ~/.claude, ~/.codex, or ~/.agents. A project
skill overrides a global skill of the same name. The working-dir location is
exactly <cwd>/.turf/skills — there is no walk up the tree, so what loads is
predictable from where you launch turf.
A SKILL.md needs YAML frontmatter with at least name and description (the
description is what turf matches a request against). Keep the body lean and push
detail into supporting files, loaded on demand:
---
name: azure-migration
description: Adopt hand-built Azure resources into managed state. Use when the user says "adopt" or "import our existing".
# context: fork # optional — run this skill as an isolated sub-agent
---
# Azure migration playbook
Adopt-then-reconcile; never create before importing.
1. Import each existing resource (ID formats: see references/import-ids.md).
2. Plan — a `=` no-op means clean adoption; `~`/`±` means drift to reconcile.~/.turf/skills/azure-migration/
SKILL.md
references/
import-ids.md # loaded on demand when the skill needs it
These are separate from turf's built-in infrastructure workflows (which the agent already knows) — your skills add to them, they don't replace them.
For a working project skill you can copy, see the CLI configuration example.
turf (this binary)
│
│ cagent runtime + LLM (local via Docker Model Runner / Ollama,
│ or cloud: Anthropic / OpenAI / Google / …)
│
▼
turf-mcp-server (separate binary, on PATH)
│
▼
OpenTofu providers (downloaded on demand)
The CLI never imports turf's server code. The only contract is the MCP protocol spoken over stdio.
Runnable examples live in turfbuild/turf-examples.
- Configuring the CLI
— a per-project turf setup: a
.turf/turf.yamlwith credential-basedfirst_availablemodel fallback and named models, plus a project.turf/skills/skill. Copy it as a starting point for your own.turf/directory. - Infrastructure configurations — ordinary HCL you drive with
turf -C <dir>: a local Kubernetes kind cluster (CRD + custom resource, or a Helm release; credential-free, Docker only), Azure and GCP modules, and language/feature tours (Terraform Actions, Turf-native actions).
The turf CLI — the source in this repository — is the Covered Software,
licensed under the Mozilla Public License 2.0 (MPL-2.0). See
LICENSE. Copyright © The Turf Authors.
Turf as a whole — this CLI combined with the proprietary turf-mcp-server
and distributed together as the alpha binaries — is the MPL-2.0 Larger Work.
Those distributed binaries are offered under a separate Pre-Release Evaluation
License, which is bundled inside each release archive (and installed alongside
the Homebrew formula). MPL-2.0 expressly permits combining the Covered Software
into such a Larger Work under other terms.