feat: add Claude Code plugin with /ops:run and /ops:init-opsfile skills#47
Merged
seanseannery merged 1 commit intomainfrom Mar 13, 2026
Merged
feat: add Claude Code plugin with /ops:run and /ops:init-opsfile skills#47seanseannery merged 1 commit intomainfrom
seanseannery merged 1 commit intomainfrom
Conversation
Adds an installable Claude Code plugin to the opsfile repo. The plugin exposes two skills: /ops:run (run ops commands by direct args or natural language) and /ops:init-opsfile (analyze a repo's tech stack and scaffold an Opsfile). Updates README, GitHub Pages site, and AGENTS.md directory structure to document the plugin and integrate it into the Getting Started flow.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Key Changes
.claude-plugin/plugin.json— plugin manifest (name:ops, skills path./skills/)skills/run/SKILL.md—/ops:runskill: accepts direct CLI args or natural language; runsops --listto discover commands when given a prompt, shows resolved command before executingskills/init-opsfile/SKILL.md+skills/init-opsfile/reference.md—/ops:init-opsfileskill: detects tech stack (language, containerization, cloud platform, IaC), selects matching platform template, generates a tailored Opsfile; reference file is self-contained so users don't need the repo clonedSessionStarthook inplugin.jsonto warn ifopsCLI is not installedREADME.mdwith Claude Code Plugin section (install + skill docs)docs/site/index.html: Claude Plugin nav entry, install tab, OR-dividers in Getting Started steps, Claude plugin section; bash syntax highlighting on all install tabs; terminal demo 3rd entry showingclaude "/ops:run ..."; various style improvements (h3 prominence, tagline font, centered h2s, or-divider, prereq note)docs/site/style.css: new rules for.skill,.skill-inline,.or-divider,.prereq-note, section h2 centering, monospace tagline, h3 sizing, terminal padding and animation additionsAGENTS.mddirectory structureWhy do we need this?
Enables Claude Code users to install the
opsplugin from this repo and use two skills: one to run ops commands by name or natural language (/ops:run), and one to scaffold a new Opsfile by analyzing the current repo's tech stack (/ops:init-opsfile). This makesopsfileaccessible to AI-assisted workflows without requiring users to remember CLI syntax.New modules or other dependencies introduced
None — plugin is markdown + JSON only, no new Go code or external dependencies.
How was this tested?
python3 -m http.server