mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-08-29 04:26:20 +00:00
* Clarify plugin README install and usage steps * feat(explorer): add welcome message to root endpoint and bump version to 0.4.0 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * docs(plugins): update all plugin READMEs for v0.4.0 with full platform list - Rewrite main community guide with platform table (8 plugins), skills/agents inventory, Knowledge Explorer section, and per-platform install steps - Add v0.4.0 badge and Knowledge Explorer section to VS Code, Cline, Continue, Windsurf, and OpenClaw READMEs - Fix inconsistent tool count (12 → 17) across all READMEs - Bump Python requirement from 3.8+ to 3.10+ across all plugins Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * docs: add PR description for utils → main Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * chore: remove PR_DESCRIPTION.md Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
35 lines
656 B
Markdown
35 lines
656 B
Markdown
# Semantica — Continue Plugin
|
|
|
|
> **v0.4.0** — Adds Semantica as an MCP server and context provider to [Continue.dev](https://continue.dev).
|
|
|
|
## MCP Server Setup
|
|
|
|
Add to `~/.continue/config.json`:
|
|
|
|
```json
|
|
{
|
|
"mcpServers": [
|
|
{
|
|
"name": "semantica",
|
|
"command": "python",
|
|
"args": ["-m", "semantica.mcp_server"]
|
|
}
|
|
]
|
|
}
|
|
```
|
|
|
|
Continue will show all 17 Semantica skills in the `@semantica` context provider dropdown.
|
|
|
|
## Knowledge Explorer
|
|
|
|
```bash
|
|
semantica-explorer --graph my_graph.json --port 8000
|
|
```
|
|
|
|
Open `http://localhost:5174` for the interactive graph dashboard.
|
|
|
|
## Requirements
|
|
|
|
- Python 3.10+
|
|
- `pip install semantica`
|