Ben Potter 99f3524160 feat(coder-labs/claude-self-hosted-runner): scaffold module
Drops Anthropic's Claude Code self-hosted runner into any Coder
template that has a coder_agent and a workspace image with the
runner binary installed. The module owns the runner script (writes
a per-session wrapper that forces --permission-mode
bypassPermissions, then spawns a detached supervisor that runs the
runner in the foreground and POSTs a delete build to self-evict on
drain), the agent env it needs, optional bot-git askpass, and host
Docker socket gid fixup. Agent metadata items (lock status, active
sessions, runner ID, last poll) are emitted via the agent_metadata
output for the parent to splat into a dynamic metadata block.

The parent template still owns the coder_agent itself, the
per-workspace scope-restricted self-evict token (minted via the
Mastercard/restapi provider against an admin bootstrap token), the
prebuild preset, and the infra block.

terraform test passes (6/6); rendered run.sh shellchecks clean. This
module is referenced from the Coder docs guide at
docs/ai-coder/claude-code-self-hosted-runners but is not yet
published to the registry; the docs reference the GitHub source
directly until the EAP recipe stabilizes.
2026-05-14 01:03:57 +00:00
2026-01-08 12:11:02 -06:00
2025-06-02 18:42:27 -05:00
2025-11-27 12:00:04 +05:00
2025-08-27 21:02:24 -05:00
2025-04-07 09:36:43 -04:00

Coder Registry

Registry SiteCoder OSSCoder DocsOfficial Discord

Health

Coder Registry is a community-driven platform for extending your Coder workspaces. Publish reusable Terraform as Coder Modules for users all over the world.

Note

The Coder Registry repo will be updated to support Coder Templates in the coming weeks. You can currently find all official templates in the official coder/coder repo, under the examples/templates directory.

Overview

Coder is built on HashiCorp's open-source Terraform language to provide developers an easy, declarative way to define the infrastructure for their remote development environments. Coder-flavored versions of Terraform allow you to mix in reusable Terraform snippets to add integrations with other popular development tools, such as JetBrains, Cursor, or Visual Studio Code.

Simply add the correct import snippet, along with any data dependencies, and your workspace can start using the new functionality immediately.

Coder Agent Bar

More information about Coder Modules can be found here, while more information about Coder Templates can be found here.

Getting started

The easiest way to discover new modules and templates is by visiting the official Coder Registry website. The website is a full mirror of the Coder Registry repo, and it is where .tar versions of the various resources can be downloaded from, for use within your Coder deployment.

Note that while Coder has a baseline set of requirements for allowing an external PR to be published, Coder cannot vouch for the validity or functionality of a resource until that resource has been flagged with the verified status. All modules under the Coder namespace are automatically verified.

Getting started with modules

To get started with a module, navigate to that module's page in either the registry site, or the main repo:

In both cases, the main README contains a Terraform snippet for integrating the module into your workspace. The snippet for Cursor looks like this:

module "cursor" {
  count    = data.coder_workspace.me.start_count
  source   = "registry.coder.com/coder/cursor/coder"
  version  = "1.0.19"
  agent_id = coder_agent.main.id
}

Simply include that snippet inside your Coder template, defining any data dependencies referenced, and the next time you create a new workspace, the functionality will be ready for you to use.

Contributing

We are always accepting new contributions. Please see our contributing guide for more information.

For Maintainers

Guidelines for maintainers reviewing PRs and managing releases. See the maintainer guide for more information.

Description
Publish Coder modules and templates for other developers to use.
Readme Apache-2.0 195 MiB
Languages
HCL 52.5%
TypeScript 21.9%
Shell 19.7%
Go 3.6%
JavaScript 1.1%
Other 1.1%