fix: consolidate version display to main README.md only
Version standardization: - Move version to main README.md title: "Claude Code Marketplace - v2.2.0" - Remove version from plugins/projman/README.md title - Remove version from plugins/projman/CONFIGURATION.md title - Remove version from plugin listings in README.md - Remove "Key Features (v2.2.0)" -> "Key Features" - Remove Version section from plugins/projman/README.md - Remove version references from CLAUDE.md structure comments Added versioning rule to CLAUDE.md: - Version displayed ONLY in main README.md title - Do NOT add versions to plugin docs or config guides - Version history maintained in CHANGELOG.md only Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
27
CLAUDE.md
27
CLAUDE.md
@@ -38,24 +38,24 @@ support-claude-mktplace/
|
|||||||
├── .claude-plugin/
|
├── .claude-plugin/
|
||||||
│ └── marketplace.json # Marketplace manifest
|
│ └── marketplace.json # Marketplace manifest
|
||||||
├── plugins/
|
├── plugins/
|
||||||
│ ├── projman/ # Sprint management (v2.2.0)
|
│ ├── projman/ # Sprint management
|
||||||
│ │ ├── .claude-plugin/plugin.json
|
│ │ ├── .claude-plugin/plugin.json
|
||||||
│ │ ├── .mcp.json
|
│ │ ├── .mcp.json
|
||||||
│ │ ├── mcp-servers/gitea/ # Bundled MCP server
|
│ │ ├── mcp-servers/gitea/ # Bundled MCP server
|
||||||
│ │ ├── commands/ # 8 commands
|
│ │ ├── commands/ # 8 commands
|
||||||
│ │ │ ├── sprint-plan.md, sprint-start.md, sprint-status.md
|
│ │ │ ├── sprint-plan.md, sprint-start.md, sprint-status.md
|
||||||
│ │ │ ├── sprint-close.md, labels-sync.md, initial-setup.md
|
│ │ │ ├── sprint-close.md, labels-sync.md, initial-setup.md
|
||||||
│ │ │ ├── review.md, test-check.md # NEW in v2.2.0
|
│ │ │ └── review.md, test-check.md
|
||||||
│ │ ├── agents/ # 4 agents
|
│ │ ├── agents/ # 4 agents
|
||||||
│ │ │ ├── planner.md, orchestrator.md, executor.md
|
│ │ │ ├── planner.md, orchestrator.md, executor.md
|
||||||
│ │ │ └── code-reviewer.md # NEW in v2.2.0
|
│ │ │ └── code-reviewer.md
|
||||||
│ │ └── skills/label-taxonomy/
|
│ │ └── skills/label-taxonomy/
|
||||||
│ ├── claude-config-maintainer/
|
│ ├── claude-config-maintainer/
|
||||||
│ ├── cmdb-assistant/
|
│ ├── cmdb-assistant/
|
||||||
│ └── project-hygiene/
|
│ └── project-hygiene/
|
||||||
├── scripts/
|
├── scripts/
|
||||||
│ ├── setup.sh, post-update.sh
|
│ ├── setup.sh, post-update.sh
|
||||||
│ └── validate-marketplace.sh # NEW in v2.2.0
|
│ └── validate-marketplace.sh # Marketplace compliance validation
|
||||||
└── docs/
|
└── docs/
|
||||||
├── CANONICAL-PATHS.md # Single source of truth for paths
|
├── CANONICAL-PATHS.md # Single source of truth for paths
|
||||||
└── references/
|
└── references/
|
||||||
@@ -88,7 +88,7 @@ support-claude-mktplace/
|
|||||||
|
|
||||||
## Architecture
|
## Architecture
|
||||||
|
|
||||||
### Four-Agent Model (projman v2.2.0)
|
### Four-Agent Model
|
||||||
|
|
||||||
| Agent | Personality | Responsibilities |
|
| Agent | Personality | Responsibilities |
|
||||||
|-------|-------------|------------------|
|
|-------|-------------|------------------|
|
||||||
@@ -181,15 +181,16 @@ Stored in Gitea Wiki under `lessons-learned/sprints/`.
|
|||||||
| `plugins/projman/CONFIGURATION.md` | Projman setup guide |
|
| `plugins/projman/CONFIGURATION.md` | Projman setup guide |
|
||||||
| `plugins/projman/README.md` | Projman full documentation |
|
| `plugins/projman/README.md` | Projman full documentation |
|
||||||
|
|
||||||
## Version History
|
## Versioning Rule
|
||||||
|
|
||||||
| Version | Date | Highlights |
|
**The marketplace version is displayed ONLY in the main `README.md` title.**
|
||||||
|---------|------|------------|
|
|
||||||
| 2.2.0 | 2026-01-20 | `/review`, `/test-check` commands, code-reviewer agent, validation script, marketplace compliance |
|
- Format: `# Claude Code Marketplace - vX.Y.Z`
|
||||||
| 2.1.0 | Previous | Canonical paths, initial-setup command, documentation improvements |
|
- Do NOT add version numbers to individual plugin documentation titles
|
||||||
| 2.0.0 | Previous | Full Gitea integration, wiki, milestones, dependencies, parallel execution |
|
- Do NOT add version numbers to configuration guides
|
||||||
| 0.1.0 | Initial | Basic plugin structure |
|
- Version history is maintained in `CHANGELOG.md`
|
||||||
|
- When releasing a new version, update ONLY the main README.md title
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
**Last Updated:** 2026-01-20 | **Current Version:** 2.2.0
|
**Last Updated:** 2026-01-20
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
# Claude Code Marketplace
|
# Claude Code Marketplace - v2.2.0
|
||||||
|
|
||||||
A collection of Claude Code plugins for project management, infrastructure automation, and development workflows.
|
A collection of Claude Code plugins for project management, infrastructure automation, and development workflows.
|
||||||
|
|
||||||
## Plugins
|
## Plugins
|
||||||
|
|
||||||
### [projman](./plugins/projman/README.md) v2.2.0
|
### [projman](./plugins/projman/README.md)
|
||||||
**Sprint Planning and Project Management**
|
**Sprint Planning and Project Management**
|
||||||
|
|
||||||
AI-guided sprint planning with full Gitea integration. Transforms a proven 15-sprint workflow into a distributable plugin.
|
AI-guided sprint planning with full Gitea integration. Transforms a proven 15-sprint workflow into a distributable plugin.
|
||||||
@@ -212,7 +212,7 @@ support-claude-mktplace/
|
|||||||
└── validate-marketplace.sh # Marketplace compliance validation
|
└── validate-marketplace.sh # Marketplace compliance validation
|
||||||
```
|
```
|
||||||
|
|
||||||
## Key Features (v2.2.0)
|
## Key Features
|
||||||
|
|
||||||
### Parallel Execution
|
### Parallel Execution
|
||||||
Tasks are batched by dependency graph for optimal parallel execution:
|
Tasks are batched by dependency graph for optimal parallel execution:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# Configuration Guide - Projman Plugin v2.0.0
|
# Configuration Guide - Projman Plugin
|
||||||
|
|
||||||
Complete setup and configuration instructions for the Projman project management plugin.
|
Complete setup and configuration instructions for the Projman project management plugin.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# Projman v2.2.0 - Project Management for Claude Code
|
# Projman - Project Management for Claude Code
|
||||||
|
|
||||||
Sprint planning and project management plugin with full Gitea integration.
|
Sprint planning and project management plugin with full Gitea integration.
|
||||||
|
|
||||||
@@ -479,16 +479,6 @@ See [CONFIGURATION.md](./CONFIGURATION.md) for detailed configuration instructio
|
|||||||
|
|
||||||
MIT License - See repository root for details
|
MIT License - See repository root for details
|
||||||
|
|
||||||
## Version
|
|
||||||
|
|
||||||
**Current:** 2.2.0
|
|
||||||
|
|
||||||
**Changelog:**
|
|
||||||
- v2.2.0: Added `/review` and `/test-check` commands, code-reviewer agent, marketplace compliance updates
|
|
||||||
- v2.1.0: Documentation improvements, canonical paths, initial-setup command
|
|
||||||
- v2.0.0: Full Gitea integration with wiki, milestones, dependencies, parallel execution
|
|
||||||
- v1.0.0: Initial release with basic commands
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
**Status:** Production Ready
|
**Status:** Production Ready
|
||||||
|
|||||||
Reference in New Issue
Block a user