Personal Codex plugins and workflow skills.
spec-to-ship captures a spec-first development workflow:
/html-specto make the future implementation visible as an HTML artifact.- Review the spec in depth with Codex annotations and direct edits.
/build-teststo create the red test contract from the approved spec.- QA the spec and tests manually.
- Use Codex goals to verify red, then implement to green.
- Test the app manually.
- Run Codex code review.
/simplifyto clean up without changing behavior.- Commit and push.
Open the visual workflow map:
spec-to-ship/workflow.html
The plugin lives at:
spec-to-ship/
.codex-plugin/plugin.json
skills/
html-spec/
build-tests/
simplify/
spec-to-ship/
Clone this repo to ~/plugins:
git clone https://github.com/conmeara/plugins.git ~/pluginsThen add this entry to ~/.agents/plugins/marketplace.json:
{
"name": "spec-to-ship",
"source": {
"source": "local",
"path": "./plugins/spec-to-ship"
},
"policy": {
"installation": "AVAILABLE",
"authentication": "ON_INSTALL"
},
"category": "Productivity"
}If the marketplace file does not exist yet, use marketplace.example.json as a starting point.