mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-08-29 04:26:20 +00:00
Expand plugin README for community usage
This commit is contained in:
@@ -1,32 +1,66 @@
|
||||
# Semantica Claude Plugin
|
||||
# Semantica Plugins (Community Guide)
|
||||
|
||||
This folder contains the plugin metadata for the Semantica Claude/Cursor/Codex plugin.
|
||||
Semantica ships a shared plugin bundle under `plugins/` with skills, agents, and hooks for knowledge graphs, context graphs, decision intelligence, reasoning, explainability, provenance, ontology, and export workflows.
|
||||
|
||||
## Installation
|
||||
This README is for community users who want to install or reuse the plugin package across Claude, Cursor, and Codex.
|
||||
|
||||
- In Claude Code or Cursor, install this plugin from the repository root where `plugins` lives.
|
||||
- If your workspace root is the `plugins` folder, use:
|
||||
## Supported Platforms
|
||||
|
||||
- Claude Code
|
||||
- Cursor
|
||||
- Codex
|
||||
|
||||
## Plugin Contents
|
||||
|
||||
- `skills/`: 17 domain skills (`causal`, `decision`, `explain`, `reason`, `temporal`, etc.)
|
||||
- `agents/`: specialized agents (`decision-advisor`, `explainability`, `kg-assistant`)
|
||||
- `hooks/hooks.json`: plugin hook configuration
|
||||
- `.claude-plugin/plugin.json`: Claude manifest
|
||||
- `.cursor-plugin/plugin.json`: Cursor manifest
|
||||
- `.codex-plugin/plugin.json`: Codex manifest
|
||||
- `*/marketplace.json`: local marketplace definitions
|
||||
|
||||
## Use In Claude Code
|
||||
|
||||
From the repository root:
|
||||
|
||||
```bash
|
||||
/plugin install ./
|
||||
claude --plugin-dir ./plugins
|
||||
```
|
||||
|
||||
- If this repo is published on GitHub and the plugin root is the `plugins` folder, add it as a marketplace:
|
||||
Or add a marketplace hosted in a git repo:
|
||||
|
||||
```bash
|
||||
/plugin marketplace add <owner>/semantica
|
||||
```
|
||||
|
||||
## Supported platforms
|
||||
Then install the plugin from that marketplace:
|
||||
|
||||
- Claude
|
||||
- Cursor
|
||||
- Codex
|
||||
```bash
|
||||
/plugin install semantica@<marketplace-name>
|
||||
```
|
||||
|
||||
## What is included
|
||||
## Use In Codex
|
||||
|
||||
- `skills/`: plugin skill definitions for graph, reasoning, extraction, validation, visualization, and more.
|
||||
- `hooks/`: plugin hooks for post-edit and pre-tool usage.
|
||||
- `agents/`: agent definitions for explainability and other workflows.
|
||||
- `.claude-plugin/plugin.json`: plugin manifest and compatibility metadata.
|
||||
- `.claude-plugin/marketplace.json`: marketplace registry file.
|
||||
1. Ensure your repo marketplace exists at `.agents/plugins/marketplace.json`.
|
||||
2. Point the plugin entry `source.path` to `./plugins` (or your chosen plugin directory).
|
||||
3. Restart Codex and install from the marketplace UI.
|
||||
|
||||
Codex manifest used by this bundle:
|
||||
|
||||
- `.codex-plugin/plugin.json`
|
||||
|
||||
## Use In Cursor
|
||||
|
||||
Cursor reads plugin metadata from:
|
||||
|
||||
- `.cursor-plugin/plugin.json`
|
||||
- `.cursor-plugin/marketplace.json`
|
||||
|
||||
If you maintain a team/community plugin repo, publish this `plugins/` directory and refresh/reinstall in Cursor Marketplace to pick up updates.
|
||||
|
||||
## Community Notes
|
||||
|
||||
- Keep plugin name/version/keywords updated in each manifest before publishing.
|
||||
- Keep skill frontmatter consistent (`name` + `description`) for reliable discovery.
|
||||
- For open-source sharing, include this folder as-is so skills, agents, and hooks remain bundled.
|
||||
|
||||
Reference in New Issue
Block a user