cf4d1b595c
feat: add model:haiku to validation agents
...
- viz-platform/component-check.md - simple prop validation
- contract-validator/agent-check.md - quick verification
Fixes #304
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-28 21:52:02 -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
9698e8724d
feat(plugins): implement Sprint 4 commands (#241-#258)
...
Sprint 4 - Plugin Commands implementation adding 18 new user-facing
commands across 8 plugins as part of V5.2.0 Plugin Enhancements.
**projman:**
- #241 : /sprint-diagram - Mermaid visualization of sprint issues
**pr-review:**
- #242 : Confidence threshold config (PR_REVIEW_CONFIDENCE_THRESHOLD)
- #243 : /pr-diff - Formatted diff with inline review comments
**data-platform:**
- #244 : /data-quality - DataFrame quality checks (nulls, duplicates, outliers)
- #245 : /lineage-viz - dbt lineage as Mermaid diagrams
- #246 : /dbt-test - Formatted dbt test runner
**viz-platform:**
- #247 : /chart-export - Export charts to PNG/SVG/PDF via kaleido
- #248 : /accessibility-check - Color blind validation (WCAG contrast)
- #249 : /breakpoints - Responsive layout configuration
**contract-validator:**
- #250 : /dependency-graph - Plugin dependency visualization
**doc-guardian:**
- #251 : /changelog-gen - Generate changelog from conventional commits
- #252 : /doc-coverage - Documentation coverage metrics
- #253 : /stale-docs - Flag outdated documentation
**claude-config-maintainer:**
- #254 : /config-diff - Track CLAUDE.md changes over time
- #255 : /config-lint - 31 lint rules for CLAUDE.md best practices
**cmdb-assistant:**
- #256 : /cmdb-topology - Infrastructure topology diagrams
- #257 : /change-audit - NetBox audit trail queries
- #258 : /ip-conflicts - Detect IP conflicts and overlaps
Closes #241 , #242 , #243 , #244 , #245 , #246 , #247 , #248 , #249 ,
#250 , #251 , #252 , #253 , #254 , #255 , #256 , #257 , #258
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-28 12:02:26 -05:00
e7050e2ad8
fix(mcp): use wrapper scripts instead of venv symlinks
...
Replace direct python path in .mcp.json with run.sh wrapper scripts
that automatically locate the venv in cache or local directory.
Problem: .venv symlinks are gitignored, causing them to be wiped on
every git operation. The SessionStart hook should recreate them but
this was unreliable, leading to repeated MCP server failures.
Solution: run.sh scripts that:
- First check ~/.cache/claude-mcp-venvs/leo-claude-mktplace/{server}/.venv
- Fallback to local .venv if exists
- Exit with helpful error if neither found
This eliminates dependency on symlinks entirely - the scripts are
tracked in git and will always be present after clone/pull/update.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-27 14:36:05 -05:00
20458add3f
feat(viz-platform): complete Sprint 1 - plugin structure and tests
...
Sprint 1 - viz-platform Plugin completed (13/13 issues):
- Commands: 7 files (initial-setup, chart, dashboard, theme, theme-new, theme-css, component)
- Agents: 3 files (theme-setup, layout-builder, component-check)
- Documentation: README.md, claude-md-integration.md
- Tests: 94 tests passing (68-99% coverage)
- CHANGELOG updated with completion status
Closes : #178 , #179 , #180 , #181 , #182
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-26 13:53:03 -05:00
45b899b093
feat(viz-platform): create plugin structure ( #177 )
...
- Add plugins/viz-platform/ directory structure
- Create .claude-plugin/plugin.json with metadata
- Create .mcp.json pointing to viz-platform MCP server
- Create hooks/hooks.json with SessionStart hook
- Create symlink to mcp-servers/viz-platform
- Add plugin to marketplace.json
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-26 12:00:54 -05:00