Getting Started
OntoSkills ships as a product suite with three pieces:
ontoskills- the user-facing CLIontomcp- the local MCP runtimeontocore- the optional compiler for source skills
The official registry is built in by default. Third-party registries can be added explicitly.
Prerequisites
- Node.js 18+ for the
ontoskillsCLI - Git for source imports
- Optional: Python 3.10+ if you install
ontocore
Installation
npx ontoskills install mcpnpx ontoskills install coreThis creates a managed user home under ~/.ontoskills/ with:
bin/ontomcpcore/for the compiler runtime, if installedontoskills/for compiled ontology packagesstate/for lockfiles and registry metadata
Common Commands
ontoskills init-coreontoskills compileontoskills compile my-skillontoskills query "SELECT ?s WHERE { ?s a oc:Skill }"ontoskills list-skillsontoskills security-auditIf you only want the runtime and the published skills, you do not need the compiler commands.
Registry Workflow
Built-In Official Registry
The official registry is already available to ontoskills. You can discover and install published skills without any extra setup.
npx ontoskills search hellonpx ontoskills install marea.greeting/hellonpx ontoskills enable marea.greeting/helloThird-Party Registries
ontoskills registry add-source acme https://example.com/index.jsonontoskills registry listImport Source Skills
Raw repositories containing SKILL.md files can be imported and compiled locally:
ontoskills import-source-repo https://github.com/nextlevelbuilder/ui-ux-pro-max-skillImported source skills are stored under ~/.ontoskills/skills/vendor/ and compiled outputs land in ~/.ontoskills/ontoskills/vendor/.
MCP Server
OntoMCP exposes compiled ontologies via the Model Context Protocol.
npx ontoskills install mcpThe current public tool set is:
search_skillsget_skill_contextevaluate_execution_planquery_epistemic_rules
Client-specific setup guides:
What’s Next?
- CLI — Full command surface and product workflows
- Marketplace — Search and install published skills
- Compiler — Install the optional compiler
- Skill Authoring — Import and compile source repositories
- Registry — Install, update, remove, and uninstall skills
- Troubleshooting — Diagnose install and runtime issues
- Roadmap — See what’s coming
- GitHub — Contribute