- Rename marketplace to lm-claude-plugins - Move MCP servers to root with symlinks - Add 6 PR tools to Gitea MCP (list_pull_requests, get_pull_request, get_pr_diff, get_pr_comments, create_pr_review, add_pr_comment) - Add clarity-assist plugin (prompt optimization with ND accommodations) - Add git-flow plugin (workflow automation) - Add pr-review plugin (multi-agent review with confidence scoring) - Centralize configuration docs - Update all documentation for v3.0.0 BREAKING CHANGE: MCP server paths changed, marketplace renamed Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
40 lines
787 B
Markdown
40 lines
787 B
Markdown
# Configuration Guide - Projman Plugin
|
|
|
|
For comprehensive configuration instructions, see the **[Centralized Configuration Guide](../../docs/CONFIGURATION.md)**.
|
|
|
|
## Quick Reference
|
|
|
|
### Required Configuration
|
|
|
|
**System-level** (`~/.config/claude/gitea.env`):
|
|
```bash
|
|
GITEA_URL=https://gitea.example.com
|
|
GITEA_TOKEN=your_token
|
|
GITEA_ORG=your_organization
|
|
```
|
|
|
|
**Project-level** (`.env` in project root):
|
|
```bash
|
|
GITEA_REPO=your-repo-name
|
|
```
|
|
|
|
### MCP Server Installation
|
|
|
|
```bash
|
|
cd mcp-servers/gitea
|
|
python3 -m venv .venv
|
|
source .venv/bin/activate
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
### Verification
|
|
|
|
```bash
|
|
/initial-setup
|
|
/labels-sync
|
|
```
|
|
|
|
---
|
|
|
|
For detailed setup instructions, troubleshooting, and security best practices, see [docs/CONFIGURATION.md](../../docs/CONFIGURATION.md).
|