diff --git a/docs/assets/stylesheets/extra.css b/docs/assets/stylesheets/extra.css
index 43f740a16..96bd24b96 100644
--- a/docs/assets/stylesheets/extra.css
+++ b/docs/assets/stylesheets/extra.css
@@ -603,6 +603,11 @@ code .md-code__nav:hover .md-code__button {
font-size: 33px;
}
+/* Hide permalink anchor on top-level headings only */
+.md-typeset h1 > .headerlink {
+ display: none;
+}
+
.md-typeset h2 {
margin: 1.4em 0 0.64em;
padding-top: 0.2em;
diff --git a/docs/blog/posts/agentic-orchestration.md b/docs/blog/posts/agentic-orchestration.md
new file mode 100644
index 000000000..7c7236bf4
--- /dev/null
+++ b/docs/blog/posts/agentic-orchestration.md
@@ -0,0 +1,289 @@
+---
+title: "Infrastructure orchestration is an agent skill"
+date: 2026-03-11
+description: "Agentic engineering pulls compute discovery, provisioning, scheduling, and observability into the execution loop. Infrastructure orchestration is becoming an agent skill."
+slug: agentic-orchestration
+image: https://dstack.ai/static-assets/static-assets/images/agentic-orchestration.png
+---
+
+# Infrastructure orchestration is an agent skill
+
+Andrej Karpathy’s [autoresearch](https://github.com/karpathy/autoresearch) demo is a crisp example of “agentic engineering” in practice: a short Markdown spec (`program.md`) drives an automated research cycle that iterates many times on one GPU with minimal human involvement. This post extends that same idea one layer down.
+
+
+
+
+
+Closing a research loop on one GPU is already useful. Closing the full engineering loop—training jobs, evaluations, deploying inference endpoints, running regressions, rolling forward/back—forces one additional requirement: infrastructure orchestration has to be something an agent can do reliably.
+
+## Before: orchestration lived outside the workload
+
+Most orchestration approaches treat “what to run” and “where it runs” as separate.
+
+Teams decide the placement context outside the workload: which cluster or region, which GPU class, which runtime image, which quota pool, which scheduling lane. The workload is then expressed in a way that assumes that context is already fixed.
+
+That separation is not “wrong.” It matches how humans operate: decisions about capacity and placement are made deliberately, reviewed, and changed on a human timescale. The orchestrator executes inside a box that humans chose.
+
+## After: provisioning and scheduling move into the loop
+
+Agentic engineering collapses the separation.
+
+When an agent is responsible for progress—not just for drafting code—compute choices affect how quickly it can iterate, what it can afford to try, and whether it can ship a result as a service. The orchestration decisions aren’t just “which cluster?”
+
+Training often wants one shape of resources (long-running, stable, sometimes multi-GPU or multi-node).
+
+Evaluation wants another (many small runs, often interruptible). Inference wants another (a long-lived service with predictable restarts, health checks, and a stable endpoint). If those shapes require switching tools and rewriting glue each time, the “agent does execution” idea breaks down at the infrastructure boundary.
+
+!!! info "Where orchestration becomes an agent skill"
+ Orchestration becomes an agent skill when agents can choose and operate compute as part of execution, instead of handing infrastructure decisions back to a human.
+
+## What “agent skill” means here
+
+This isn’t about giving an agent raw cloud credentials and hoping for the best. “Agent skill” here means there is an interface and set of abstractions that are stable enough to teach, predictable enough to automate, and specific enough for GPU work.
+
+An agent needs to reason about GPU constraints as first-class inputs: memory and count, placement for multi-node jobs, preemptible vs stable capacity, and the difference between “run 100 short evals” and “keep an inference endpoint alive.”
+
+A true orchestration skill is one where the agent can answer, mechanically: what ran, where it ran, what resources it used, what state transitions happened, and what to do next.
+
+## What this does to platform teams
+
+The platform team shift is not “replace humans with agents.” It’s a change in what the platform optimizes for.
+
+Platforms are often designed around human workflows: manual approvals, bespoke runbooks, and implicit institutional knowledge. Agentic engineering needs a different center of gravity: an agent-native control plane that exposes explicit building blocks for GPU jobs and inference services, plus the constraints that keep cost and risk bounded.
+
+The old model treats orchestration as an internal service layer that humans operate on behalf of everyone else. In the emerging model, that ownership shifts.
+
+The platform team's job becomes enabling agent-driven orchestration and controlling it safely. That means defining the supported abstractions, access boundaries, budgets, quotas, and observability that let agents provision compute and operate workloads directly without turning the platform into an unbounded automation surface.
+
+## What this does to cloud and datacenter providers
+
+For cloud and datacenter providers, GPUs don’t become less important; the interface around them becomes decisive for agent-operated workflows.
+
+Agents need capacity to be discoverable, provisionable, and observable through repeatable semantics. A provider can have excellent hardware and still be painful to use if the operational contract is “humans click around and tribal-knowledge it into working.” In an agent-driven workflow, anything that can’t be expressed cleanly in an orchestration interface becomes friction.
+
+That’s why multi-environment orchestration layers matter. They don’t only reduce vendor lock-in; they make capacity usable by automation, which is increasingly the consumer.
+
+Providers that still require provider-specific operating patterns remain harder to operationalize, even when the underlying hardware is strong.
+
+## What this looks like with dstack
+
+`dstack` is an open-source control plane for GPU provisioning and orchestration across GPU clouds and on-prem clusters, with a workflow model that explicitly targets development, training, and inference.
+
+The way to read `dstack` is as a CLI with a small set of abstractions that line up with the agent-skill requirements above.
+
+**Step 1: treat available compute as queryable state**
+
+`dstack` exposes “offers” as a way to query available hardware configurations from configured backends or on-prem clusters. That turns “where can I run this?” into something automation can ask and answer deterministically, instead of hard-coding instance types and regions.
+
+```shell
+$ dstack offer --gpu H100:1.. --max-offers 3
+
+ # BACKEND REGION INSTANCE TYPE RESOURCES SPOT PRICE
+ 1 verda FIN-01 1H100.80S.30V 30xCPU, 120GB, 1xH100 (80GB), 100.0GB (disk) no $2.19
+ 2 runpod US-KS-2 NVIDIA H100 PCIe 16xCPU, 251GB, 1xH100 (80GB), 100.0GB (disk) no $2.39
+ 3 nebius eu-north1 gpu-h100-sxm 16xCPU, 200GB, 1xH100 (80GB), 100.0GB (disk) no $2.95
+ ...
+ Shown 3 of 99 offers
+```
+
+**Step 2: define capacity pools and provisioning bounds**
+
+Fleets are `dstack`’s way to make capacity explicit. A fleet can represent elastic capacity (scale from zero on demand) or a pre-provisioned pool (including SSH-managed on-prem hosts). It also supports operational patterns that matter for GPU efficiency, such as splitting a multi-GPU node into blocks so that many small jobs don’t waste a full 8-GPU box. The agent operates within declared capacity instead of interacting with provider infrastructure directly.
+
+```yaml
+# fleet.dstack.yml
+type: fleet
+name: h100-fleet
+
+nodes: 0..2
+idle_duration: 1h
+
+resources:
+ gpu: H100:8
+
+blocks: 4
+```
+
+