Claude Code + Codex plugin marketplace publishing the docks plugin — a cross-tool engineering skill kit. Pipeline skills (security audit, refactor, skill-agent-pipeline) run sequentially on any agentskills.io runtime; a library of convention skills covers test-first, coverage, fix, review, human-docs, design tokens, SOLID, type-safety, and React patterns; and a GitHub-issue lifecycle tracks multi-commit work.
/plugin marketplace add DocksDocks/docks
/plugin install docks@docks
/reload-pluginssession-relay is no longer part of this kit. It lives at https://github.com/DocksDocks/session-relay and is installed from that repository's own catalog, in both Claude Code and Codex. This marketplace no longer lists it, and the skills here neither depend on it nor reference it.
The two plugins that ship from this repository support Linux and macOS only:
| Plugin | Supported hosts |
|---|---|
docks |
Linux and macOS only |
plan-lifecycle |
Linux and macOS only |
After install, the pipeline skills are user-invocable — ask "run a security audit", "refactor src/", or "audit my skills", or invoke security / refactor / skill-agent-pipeline directly. Every other skill auto-triggers by description match; namespacing is invisible at runtime.
Each runs as one sequential pass in a single context and gates approval through GitHub plan issues managed by the plan-manager skill, not a runtime-specific Plan Mode. Per-phase expertise lives in each skill's references/.
| Skill | Pipeline |
|---|---|
security |
discovery → vulnerability scan → logic analysis → adversarial hunt → synthesis that challenges every finding. Read-only; pipe findings to fix-workflow. |
refactor |
exploration → dead-code + duplication + per-principle SOLID analysis → tiered plan → approve → test-guarded one-change-at-a-time implementation → post-verify SOLID delta. |
skill-agent-pipeline |
explore → categorize skills → pattern-scan → build SKILL.md + references/ → build agents (.claude/agents/*.md + .codex/agents/*.toml) → verify → approve → implement. |
Auto-trigger on matching tasks (all user-invocable: false):
| Skill | Use when |
|---|---|
tdd-workflow |
Test-first development; tests as spec for code that doesn't exist yet |
test-coverage |
Adding tests to existing code; backfilling coverage |
code-review |
Reviewing a path / diff / working tree for bugs, security, perf, AI slop |
fix-workflow |
Fixing a specific bug, dependency vuln, or finding from security / code-review |
human-docs-workflow |
README, CLAUDE.md, docs/, .env.example, JSDoc — every claim grounded in source |
design-tokenization |
Color/Tailwind work — semantic + brand tokens, no-hex, :root/.dark parity |
dep-vuln-workflow |
CVE/GHSA triage, audit response, package upgrade decisions |
lint-no-suppressions |
When tempted to add eslint-disable / @ts-ignore / # noqa |
make-interfaces-feel-better |
UI polish, micro-interactions, optical alignment |
react-component-patterns |
React 19+ effects (3 acceptable categories) + composition (compound, slot/asChild, polymorphic, headless, provider+hook, cva variants) |
solid |
Generic SOLID for TS/Python/Go modules — strategy maps, discriminated unions, fat-interface splits, dependency injection |
type-safety-discipline |
Branded/newtype IDs, discriminated unions, parse-don't-validate — TS primary; references for Rust/Kotlin/Python |
The productivity/ category contains context-tree, multi-tool-bridge, scaffold, skill-agent-pipeline, skill-maintenance, write-skill, and zoom-out.
Directly implement one clear, reversible, low-risk local diff with one bounded acceptance path; it creates no plan issue, reviewer, or automatic commit. Use a canonical plan for explicit planning, multi-commit/cross-repository work, scheduling, cold handoff, unresolved decisions, cross-subsystem/public-contract changes, security-sensitive/destructive work, or an external effect.
The three lifecycle skills, shipped plan.mjs, marker-based contract
reference, and two read-only reviewer wrappers ship as the self-versioned
plan-lifecycle plugin (plugins/plan-lifecycle/), installable from this same
marketplace. Plan bodies and comment-backed review records live on GitHub
issues.
| Owner | Skill | Invocation | Responsibility |
|---|---|---|---|
| Workspace | plan-workspace |
Public | Create the plan label set and maintain docs/PLAN.md plus the docs/AGENTS.md/docs/CLAUDE.md pair; never mutate an individual plan issue |
| Orchestration | plan-manager |
Public, main context | Decide → draft → research → plan review → implement → code review; repair and freshly re-review both review phases, then archive after a pass and a merged closing pull request |
| Plan review | plan-reviewer |
Internal, read-only | Check only goal_fit, research_gap, and security_risk before implementation |
| Code review | code-reviewer |
Internal, read-only | Review the implemented diff against code standards and the plan |
These are the only live plan skills. Both read-only reviewers ship and get
seeded as thin Claude/Codex wrappers; main context invokes plan-manager
directly. The docks pipelines route to these skills and stop, naming the missing
plan-lifecycle plugin, when they are unavailable.
The lifecycle runs six phases: decide, draft, research, plan review, implement,
and code review. Plan repairs are re-reviewed from fresh exports, and code fixes
are re-reviewed from fresh diffs, with a five-round ceiling in each review
phase. Each reviewer returns one markdown block that the manager stores as one
issue comment. When implementation starts, the manager reuses or creates the
GitHub-linked plan branch. After code review passes, it commits and pushes any
remaining reviewed bytes, opens the closing pull request, and waits for
repository CI. It then asks Merge now or Leave pull request open. Without a
fresh Merge now answer, it leaves the pull request and issue open. After an
approved merge, plan.mjs archive verifies the merged closing pull request.
Every Steps row has Effect exactly
local|probe|production_access|publish|push|release|deploy. Each non-local
effect requires an in-session confirmation immediately before it runs.
The complete contract lives in docs/PLAN.md.
.
├── .claude-plugin/marketplace.json ← marketplace catalog (this file is what /plugin marketplace add reads)
├── .codex/agents/ ← repo-local Codex plan-reviewer and code-reviewer wrappers
├── plugins/
│ ├── docks/ ← the engineering kit plugin (only plugin dirs get cached on user install)
│ │ ├── .claude-plugin/plugin.json
│ │ ├── skills/ ← cross-tool skills
│ │ └── README.md ← plugin-facing docs
│ └── plan-lifecycle/ ← GitHub-issue plan lifecycle plugin (three skills + plan.mjs + marker contract + two read-only reviewer wrappers)
├── scripts/ ← plugin-author tooling (NOT shipped to users)
│ ├── ci.mjs / release.mjs ← orchestrators (the gate ci.yml runs)
│ ├── skills/guard.mjs, agents/guard.mjs + score.mjs
│ └── tree/ + config/ + lib/
└── .github/workflows/ci.yml ← validator CI on push/PR
What ships to users: only the plugins/<name>/ directory of each installed plugin. Files at the repo root (scripts/, .github/, this README.md, LICENSE) stay in the marketplace repo for development + CI but are NOT copied to ~/.claude/plugins/cache/ on install. This is enforced by the marketplace source boundary, not by an ignore-file mechanism — Claude Code's plugin cache copies only the directory pointed at by source.
Test changes without pushing to GitHub:
claude --plugin-dir ./plugins/docksWhen a --plugin-dir plugin shares a name with an installed marketplace plugin, the local copy wins for that session. After edits, run /reload-plugins in the running session — no Claude Code restart needed.
Four validators mirror the kit-side conventions:
bun install --frozen-lockfile
node scripts/skills/guard.mjs # Codex + Claude skill compatibility + reference hygiene
node plugins/docks/skills/productivity/write-skill/scripts/skill-guard.mjs score --per-file # skill quality score (max 16)
node scripts/agents/guard.mjs # frontmatter, "Use when…" / "Not…" CSO, model declared
node scripts/agents/score.mjs # quality score (max 15) — model, tools, Workflow + Success CriteriaNode 24 remains the validator runtime and matches CI's node-version; Bun 1.4.0 is the package manager pinned through packageManager.
--per-file on a scorer prints one <name> <score> line per item — useful for spotting drift after an edit. node scripts/ci.mjs runs the full local gate (guards + scorers + manifest + idempotency); ci.yml runs that same file on CI.
On a PR to main, CI runs only the shards the changed paths resolve to — the repo-wide checks always, plus the lane owning any plugin you touched. On a <plugin>--v<version> release tag (docks and plan-lifecycle tag independently), it runs the repo-wide shard plus that plugin's own gate. See .github/workflows/ci.yml; full trigger model below.
version in marketplace.json and plugins/docks/.claude-plugin/plugin.json controls update propagation:
- With explicit version: users only receive updates when this field bumps. Bump on every release.
- Without version: the git commit SHA is used; every commit counts as a new version (noisier but auto-tracking).
scripts/release.mjs wraps the full dance in one command (--dry-run previews the bump + manifest diff without tagging):
node scripts/release.mjs patch # 0.1.0 → 0.1.1
node scripts/release.mjs minor # 0.1.0 → 0.2.0
node scripts/release.mjs major # 0.1.0 → 1.0.0
node scripts/release.mjs 0.2.0 # explicitThe script bumps the Claude and Codex plugin manifests plus the versioned Claude marketplace catalog, commits + pushes, runs claude plugin tag --push for the docks--v<version> tag, waits for the tag-CI run to pass (.github/workflows/ci.yml is triggered by tag pushes), then calls gh release create with notes auto-generated from git log since the previous tag. If CI fails, the GitHub Release is NOT created — the tag stays as a marker that the release was attempted, and the script prints recovery steps. Released versions appear at https://github.com/DocksDocks/docks/releases.
CI runs only on (a) PRs to main, (b) tag pushes matching <plugin>--v<version>, and (c) manual workflow_dispatch. Pushes to main don't re-trigger CI — PR validation gates merges, tag-CI gates releases.
Manually: claude plugin tag --push ./plugins/docks (tag only, no GitHub Release).
MIT — see LICENSE at the repo root.