7c8a20c804
refactor: extract skills from commands across 8 plugins
...
Refactored commands to extract reusable skills following the
Commands → Skills separation pattern. Each command is now <50 lines
and references skill files for detailed knowledge.
Plugins refactored:
- claude-config-maintainer: 5 commands → 7 skills
- code-sentinel: 3 commands → 2 skills
- contract-validator: 5 commands → 6 skills
- data-platform: 10 commands → 6 skills
- doc-guardian: 5 commands → 6 skills (replaced nested dir)
- git-flow: 8 commands → 7 skills
Skills contain: workflows, validation rules, conventions,
reference data, tool documentation
Commands now contain: YAML frontmatter, agent assignment,
skills list, brief workflow steps, parameters
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-30 17:32:24 -05:00
2e65b60725
refactor(projman): extract skills and consolidate commands
...
Major refactoring of projman plugin architecture:
Skills Extraction (17 new files):
- Extracted reusable knowledge from commands and agents into skills/
- branch-security, dependency-management, git-workflow, input-detection
- issue-conventions, lessons-learned, mcp-tools-reference, planning-workflow
- progress-tracking, repo-validation, review-checklist, runaway-detection
- setup-workflows, sprint-approval, task-sizing, test-standards, wiki-conventions
Command Consolidation (17 → 12 commands):
- /setup: consolidates initial-setup, project-init, project-sync (--full/--quick/--sync)
- /debug: consolidates debug-report, debug-review (report/review modes)
- /test: consolidates test-check, test-gen (run/gen modes)
- /sprint-status: absorbs sprint-diagram via --diagram flag
Architecture Cleanup:
- Remove plugin-level mcp-servers/ symlinks (6 plugins)
- Remove plugin README.md files (12 files, ~2000 lines)
- Update all documentation to reflect new command structure
- Fix documentation drift in CONFIGURATION.md, COMMANDS-CHEATSHEET.md
Commands are now thin dispatchers (~20-50 lines) that reference skills.
Agents reference skills for domain knowledge instead of inline content.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-30 15:02:16 -05:00
63327ecf65
perf(hooks): improve hook efficiency with early exits and cooldowns
...
Sprint 8 - Hook Efficiency Quick Wins (v5.5.0)
- Remove viz-platform SessionStart hook (zero value, just echoed "loaded")
- Add early git check to git-flow branch-check.sh (skip JSON parsing for non-git commands)
- Add early git check to git-flow commit-msg-check.sh (skip Python spawn for non-commit commands)
- Add 60-second cooldown to project-hygiene cleanup.sh (reduce find operations)
Closes #321 , #322 , #323 , #324
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-30 13:19:03 -05:00
0acd42ea65
fix(git-flow): use array format for hooks.json
...
Changed from nested object format to array format to fix
"PreToolUse:Bash hook error" with no message.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-28 21:24:52 -05:00
b5d36865ee
feat(plugins): add Visual Output headers to all other plugin commands
...
Add single-line visual headers to 66 command files across 10 plugins:
- clarity-assist (2 commands): 💬
- claude-config-maintainer (5 commands): ⚙️
- cmdb-assistant (11 commands): 🖥️
- code-sentinel (3 commands): 🔒
- contract-validator (5 commands): ✅
- data-platform (10 commands): 📊
- doc-guardian (5 commands): 📝
- git-flow (8 commands): 🔀
- pr-review (7 commands): 🔍
- viz-platform (10 commands): 🎨
Each command now displays a consistent header at execution start:
┌────────────────────────────────────────────────────────────────┐
│ [icon] PLUGIN-NAME · Command Description │
└────────────────────────────────────────────────────────────────┘
Addresses #275 (other plugin commands visual output)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-28 17:24:49 -05:00
79ee93ea88
feat(plugins): add visual output requirements to all plugin agents
...
Add single-line box headers to 19 agents across all non-projman plugins:
- clarity-assist (1): Clarity Coach
- claude-config-maintainer (1): Maintainer
- code-sentinel (2): Security Reviewer, Refactor Advisor
- doc-guardian (1): Doc Analyzer
- git-flow (1): Git Assistant
- pr-review (5): Coordinator, Security, Maintainability, Performance, Test
- data-platform (2): Data Analysis, Data Ingestion
- viz-platform (3): Component Check, Layout Builder, Theme Setup
- contract-validator (2): Agent Check, Full Validation
- cmdb-assistant (1): CMDB Assistant
Uses single-line box format (not double-line like projman).
Part of #275
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-28 17:15:05 -05:00
baad41da98
feat(plugins): implement Sprint 5 documentation and fixes (#266-#269)
...
Release v5.2.0
Documentation:
- Add git-flow branching strategy guide (docs/BRANCHING-STRATEGY.md)
- Add clarity-assist ND support documentation (docs/ND-SUPPORT.md)
- Update DEBUGGING-CHECKLIST.md with Gitea auto-close behavior and MCP restart notes
- Update plugin READMEs to reference new documentation
Bug Fix:
- Add milestone parameter to update_issue MCP tool (gitea_client.py, server.py, tools/issues.py)
Version Updates:
- Marketplace version: 5.1.0 → 5.2.0
- README title: v5.1.0 → v5.2.0
- CHANGELOG: [Unreleased] → [5.2.0] - 2026-01-28
Closes #266 , Closes #267 , Closes #268 , Closes #269
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-28 14:26:42 -05:00
1b36ca77ab
feat(git-flow): add commit message enforcement hook ( #225 )
...
Implements PreToolUse/Bash hook to validate conventional commit format:
- Validates type(scope): description format
- Supports all 10 types: feat, fix, docs, style, refactor, perf, test, chore, build, ci
- Optional scope support
- Helpful error messages with examples
- Non-commit commands pass through
- Uses Python for reliable JSON parsing
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-27 17:44:59 -05:00
35cf20e02d
fix: protected branch detection and non-blocking hooks
...
- Add protected branch detection to /commit command (Step 1)
- Warn users before committing to protected branches
- Offer to create feature branch automatically
- Rewrite doc-guardian hook to be truly non-blocking
- Enforce strict [plugin-name] prefix in all hook outputs
- Add forbidden words list to prevent accidental blocking
Fixes #109 , #110
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-23 11:08:00 -05:00
508832dae1
feat: add plugin name prefixes to hooks and improve git-flow sync
...
- Add [plugin-name] prefix to all hook messages for better identification
- Make doc-guardian hook notification-only (non-blocking)
- Add stale branch detection to /commit-sync with git fetch --prune
- Enhance /branch-cleanup to handle stale branches separately
Closes improvements for hook UX and git workflow
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-22 16:13:17 -05:00
565540d0ba
fix: remove agents field from git-flow plugin.json
...
Claude Code doesn't support the agents field in plugin manifests.
Commands-only manifest should work.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-20 21:47:36 -05:00
5c9dd8d6e0
fix: simplify plugin.json schema for commands/agents/skills
...
Use directory paths instead of object arrays for:
- git-flow
- clarity-assist
- pr-review
Claude Code expects ["./commands/"] format, not detailed object arrays.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-20 21:11:46 -05:00
a2502c708b
chore: rename marketplace to Leo Claude Marketplace
...
Update all references from old names to new marketplace identity:
- support-claude-mktplace → leo-claude-mktplace (URLs)
- lm-claude-plugins → leo-claude-mktplace (repo name)
- Claude Code Marketplace → Leo Claude Marketplace (display name)
Files updated:
- Core docs (CLAUDE.md, README.md, CHANGELOG.md)
- Documentation (CANONICAL-PATHS, CONFIGURATION, UPDATING, COMMANDS-CHEATSHEET)
- Marketplace manifest and all 9 plugin.json files
- Plugin READMEs and MCP server READMEs
- Setup script and label taxonomy reference
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-20 20:17:27 -05:00
e5ca804692
feat: v3.0.0 architecture overhaul
...
- 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 >
2026-01-20 16:56:53 -05:00