Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.4 KB

File metadata and controls

53 lines (40 loc) · 1.4 KB

Semcode Claude Plugin

This directory contains the Claude plugin for semcode MCP server.

Installation

See semcode/README.md for complete installation and usage instructions.

Quick Start

# 1. Build semcode
cd /path/to/semcode
cargo build --release

# 2. Add to PATH
export PATH="/path/to/semcode/target/release:$PATH"

# 3. Index your codebase
cd /path/to/your/code
semcode-index --source .

# 4. Install plugin
cd /path/to/semcode
claude plugin marketplace add $(pwd)/plugin
claude plugin install semcode@semcode-local

# 5. Restart Claude and verify
# Ask: "What semcode tools do you have access to?"

Directory Structure

plugin/
├── .claude-plugin/
│   └── marketplace.json  # Plugin marketplace manifest
├── README.md             # This file
└── semcode/              # Plugin implementation
    ├── .claude-plugin/
    │   └── plugin.json   # Plugin manifest
    ├── .mcp.json         # MCP server configuration
    ├── README.md         # Full installation and usage guide
    ├── TOOL_APPROVAL.md
    ├── approve-tools.sh
    └── install.sh

Documentation