From 14d350378f615638b3d1498b4c63996cbcfc4c8a Mon Sep 17 00:00:00 2001 From: KaifAhmad1 Date: Thu, 9 Apr 2026 12:31:31 +0530 Subject: [PATCH] Expand plugin README for community usage --- plugins/.claude-plugin/README.md | 68 ++++++++++++++++++++++++-------- 1 file changed, 51 insertions(+), 17 deletions(-) diff --git a/plugins/.claude-plugin/README.md b/plugins/.claude-plugin/README.md index 96e2b412..0a173c49 100644 --- a/plugins/.claude-plugin/README.md +++ b/plugins/.claude-plugin/README.md @@ -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 /semantica ``` -## Supported platforms +Then install the plugin from that marketplace: -- Claude -- Cursor -- Codex +```bash +/plugin install semantica@ +``` -## 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.