8ea8a3de59
feat(agents): add permissionMode, disallowedTools, skills frontmatter to all 25 agents
...
- permissionMode: 1 bypassPermissions, 7 acceptEdits, 7 default, 10 plan
- disallowedTools: 12 agents blocked from Write/Edit/MultiEdit
- model: promote Planner + Code Reviewer to opus
- skills: auto-inject on Executor (7), Code Reviewer (4), Maintainer (2)
- docs: CLAUDE.md + CONFIGURATION.md updated with full agent matrix
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-03 11:05:12 -05:00
c0d62f4957
feat(agents): add model selection and standardize frontmatter
...
Add per-agent model selection using Claude Code's now-supported `model`
frontmatter field, and standardize all agent frontmatter across the
marketplace.
Changes:
- Add `model` field to all 25 agents (18 sonnet, 7 haiku)
- Fix viz-platform/data-platform agents using `agent:` instead of `name:`
- Remove non-standard `triggers:` field from domain agents
- Add missing frontmatter to 13 agents
- Document model selection in CLAUDE.md and CONFIGURATION.md
- Fix undocumented commands in README.md
Model assignments based on reasoning depth, tool complexity, and latency:
- sonnet: Planner, Orchestrator, Executor, Coordinator, Security Reviewers
- haiku: Maintainability Auditor, Test Validator, Git Assistant, etc.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-02 20:37:58 -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
89f0354ccc
feat: add data-platform plugin (v4.0.0)
...
Add new data-platform plugin for data engineering workflows with:
MCP Server (32 tools):
- pandas operations (14 tools): read_csv, read_parquet, read_json,
to_csv, to_parquet, describe, head, tail, filter, select, groupby,
join, list_data, drop_data
- PostgreSQL/PostGIS (10 tools): pg_connect, pg_query, pg_execute,
pg_tables, pg_columns, pg_schemas, st_tables, st_geometry_type,
st_srid, st_extent
- dbt integration (8 tools): dbt_parse, dbt_run, dbt_test, dbt_build,
dbt_compile, dbt_ls, dbt_docs_generate, dbt_lineage
Plugin Features:
- Arrow IPC data_ref system for DataFrame persistence across tool calls
- Pre-execution validation for dbt with `dbt parse`
- SessionStart hook for PostgreSQL connectivity check (non-blocking)
- Hybrid configuration (system ~/.config/claude/postgres.env + project .env)
- Memory management with 100k row limit and chunking support
Commands: /initial-setup, /ingest, /profile, /schema, /explain, /lineage, /run
Agents: data-ingestion, data-analysis
Test suite: 71 tests covering config, data store, pandas, postgres, dbt tools
Addresses data workflow issues from personal-portfolio project:
- Lost data after multiple interactions (solved by Arrow IPC data_ref)
- dbt 1.9+ syntax deprecation (solved by pre-execution validation)
- Ungraceful PostgreSQL error handling (solved by SessionStart hook)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-25 14:24:03 -05:00