Major fixes for Claude Code plugin installation: 1. Moved marketplace.json to repo root (.claude-plugin/) - Fixes known bug #11243, #11278 with local marketplace path resolution - Claude Code uses marketplace.json file path as base, not directory 2. Simplified plugin.json manifests - Removed commands/agents/skills directory declarations - Claude Code auto-discovers these from standard directories - Specifying directories caused "must end with .md" validation errors 3. Cleaned command frontmatter - Removed non-standard fields (name, agent, arguments) - Only description field is valid in command frontmatter 4. Removed deprecated claude-plugin-developer skill - Skill was never properly integrated - Removed from repo and all documentation references All three plugins now validate successfully: - projman: Sprint planning with Gitea/Wiki.js - cmdb-assistant: NetBox CMDB integration - project-hygiene: Post-task cleanup hooks 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
34 lines
711 B
Markdown
34 lines
711 B
Markdown
---
|
|
description: Run initial setup for support-claude-mktplace
|
|
---
|
|
|
|
# Initial Setup
|
|
|
|
Run the installation script to set up the toolkit.
|
|
|
|
## What This Does
|
|
|
|
1. Creates Python virtual environments for MCP servers
|
|
2. Installs all dependencies
|
|
3. Creates configuration file templates
|
|
4. Validates existing configuration
|
|
5. Reports remaining manual steps
|
|
|
|
## Execution
|
|
|
|
```bash
|
|
cd ${PROJECT_ROOT}
|
|
./scripts/setup.sh
|
|
```
|
|
|
|
## After Running
|
|
|
|
Review the output for any manual steps required:
|
|
- Configure API credentials in `~/.config/claude/`
|
|
- Run `/labels-sync` to sync Gitea labels
|
|
- Verify Wiki.js directory structure
|
|
|
|
## Re-Running
|
|
|
|
This command is safe to run multiple times. It will skip already-completed steps.
|