Public distribution repository for Nominex Agentic tooling across both Claude Code and OpenCode runtimes.
agentic-plugin/
├── .claude-plugin/
│ ├── plugin.json
│ └── marketplace.json
├── claudecode/
│ └── agentic-plugin/
│ ├── README.md
│ ├── LICENSE.md
│ ├── .claude-plugin/
│ └── skills/
└── opencode/
└── agentic-plugin/
├── README.md
├── opencode.json
├── package.json
└── plugins/
claudecode/agentic-plugin/- Claude Code plugin package and skillsopencode/agentic-plugin/- OpenCode plugin package and instruction-backed commands
From your project root (assuming this repo is cloned as ./agentic-plugin):
claude plugin marketplace add ./agentic-plugin
claude plugin install agentic@nominex-agentic-plugin-marketplace --scope project
claude plugin reloadScope notes:
--scope projectinstalls only for the current project (recommended)--scope userinstalls globally for your user account
OpenCode does not use Claude marketplace installation. Copy the packaged OpenCode bundle
from this repo into your project's .opencode/ directory.
From your project root:
mkdir -p .opencode
rsync -a ./agentic-plugin/opencode/agentic-plugin/ ./.opencode/This installs:
.opencode/plugins/(includingagentic.tsand instruction files).opencode/opencode.json.opencode/package.json
This repository is sync-managed from the canonical harness workspace. Release sync publishes both runtime surfaces together.