Nomad Skeleton Driver Plugin
Description
A template for writing a Nomad driver plugin.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Nomad Skeleton Driver Plugin
Skeleton project for [Nomad task driver plugins](https://www.nomadproject.io/docs/drivers/index.html).
This project is intended for bootstrapping development of a new task driver plugin.
- Website: https://www.nomadproject.io
- Mailing list: Google Groups
Requirements
Building the Skeleton Plugin
[Generate](https://github.com/hashicorp/nomad-skeleton-driver-plugin/generate) a new repository in your account from this template by clicking the `Use this template` button above.
Clone the repository somewhere in your computer. This project uses [Go modules](https://blog.golang.org/using-go-modules) so you will need to set the environment variable `GO111MODULE=on` or work outside your `GOPATH` if it is set to `auto` or not declared.
$ git clone git@github.com:/git
Enter the plugin directory and update the paths in `go.mod` and `main.go` to match your repository path.
// go.mod
- module github.com/hashicorp/nomad-skeleton-driver-plugin
+ module github.com//
...
// main.go
package main
import (
log "github.com/hashicorp/go-hclog"
- "github.com/hashicorp/nomad-skeleton-driver-plugin/hello"
+. "github.com///hello"
...
[!IMPORTANT] If your plugin imports `hashicorp/nomad` package, you may want to consult Nomad's top-level [`go.mod`](https://github.com/hashicorp/nomad/blob/main/go.mod) file to see if there aren't any "replace" directives that your package may also need.
Build the skeleton plugin.
$ make build
Deploying Driver Plugins in Nomad
The initial version of the skeleton is a simple task that outputs a greeting. You can try it out by starting a No
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11