Trobz public skills marketplace for code agents
npx claudepluginhub trobz/public-skillsOdoo data inspection and querying toolkit using odooly CLI
A public marketplace of plugins for Claude Code, OpenCode, OpenAI Codex CLI, Cursor, Amp, Google Antigravity, and other code agents.
Add this marketplace to your Claude Code configuration:
claude plugin marketplace add [email protected]:trobz/public-skills.git
Or from a local clone:
claude plugin marketplace add ~/code/trobz/packages/public-skills
All agents that support SKILL.md-based skills can be installed via npx skills:
# List available skills before installing
npx skills add [email protected]:trobz/public-skills.git --list
# Install all skills globally for your agent
npx skills add [email protected]:trobz/public-skills.git -a <agent> -g
# Install a specific skill globally
npx skills add [email protected]:trobz/public-skills.git --skill odooly -a <agent> -g
# Install to current project only (no -g flag)
npx skills add [email protected]:trobz/public-skills.git -a <agent>
# Update all installed skills to latest version
npx skills update
Where <agent> is one of: amp, opencode, codex, cursor, antigravity.
From a local clone:
npx skills add ~/code/trobz/packages/public-skills -a <agent> -g
Odoo data inspection and querying toolkit using the odooly CLI.
Installation:
claude plugin install odoo
Requirements:
odooly available in $PATH~/odooly.iniSkills:
| Skill | Description |
|---|---|
| odooly | Query and inspect Odoo data using odooly CLI |
Examples:
/odoo:odooly search partners named John
/odoo:odooly show sale orders in state done
Or ask naturally: "Show me all sale orders from partner Trobz"
This repo uses pre-commit to lint Markdown and JSON files.
Install the hooks after cloning:
pip install pre-commit
pre-commit install
Run manually against all files:
pre-commit run --all-files
The CI workflow runs these checks automatically on every push and pull request.
To add new plugins to this marketplace:
plugins/.claude-plugin/plugin.json with plugin metadata.claude-plugin/marketplace.json to include the new pluginValidate the marketplace structure:
claude plugin validate .