diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index a02d9c2..3970ae6 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -6,7 +6,7 @@ }, "metadata": { "description": "Project management plugins with Gitea and NetBox integrations", - "version": "3.0.0" + "version": "3.0.1" }, "plugins": [ { diff --git a/CHANGELOG.md b/CHANGELOG.md index 582802a..9206ff0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,30 @@ All notable changes to the Leo Claude Marketplace will be documented in this fil The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [3.0.1] - 2026-01-21 + +### Added +- `/project-init` command for quick project setup when system is already configured +- `/project-sync` command to sync .env with git remote after repository move/rename +- SessionStart hooks for automatic mismatch detection between git remote and .env +- Interactive setup wizard (`/initial-setup`) redesigned to use Claude tools instead of bash script + +### Changed +- `GITEA_ORG` moved from system-level to project-level configuration (different projects may belong to different organizations) +- Environment variables renamed to match MCP server expectations: + - `GITEA_URL` → `GITEA_API_URL` (must include `/api/v1`) + - `GITEA_TOKEN` → `GITEA_API_TOKEN` + - `NETBOX_URL` → `NETBOX_API_URL` (must include `/api`) + - `NETBOX_TOKEN` → `NETBOX_API_TOKEN` +- Setup commands now validate repository via Gitea API before saving configuration +- README.md simplified to show only wizard setup path (manual setup moved to CONFIGURATION.md) + +### Fixed +- API URL paths in curl commands (removed redundant `/api/v1` since it's now in the URL variable) +- Documentation now correctly references environment variable names + +--- + ## [3.0.0] - 2026-01-20 ### Added diff --git a/CLAUDE.md b/CLAUDE.md index f5338c3..30779ea 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -5,7 +5,7 @@ This file provides guidance to Claude Code when working with code in this reposi ## Project Overview **Repository:** leo-claude-mktplace -**Version:** 3.0.0 +**Version:** 3.0.1 **Status:** Production Ready A plugin marketplace for Claude Code containing: diff --git a/README.md b/README.md index c8cb860..3ac2e34 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Leo Claude Marketplace - v3.0.0 +# Leo Claude Marketplace - v3.0.1 A collection of Claude Code plugins for project management, infrastructure automation, and development workflows.