fix: audit and repair all plugins, agents, and commands
- Fix 12 command files: correct CLI arg syntax, script paths, and usage docs - Fix 3 agents with broken script/reference paths (cs-content-creator, cs-demand-gen-specialist, cs-financial-analyst) - Add complete YAML frontmatter to 5 agents (cs-growth-strategist, cs-engineering-lead, cs-senior-engineer, cs-financial-analyst, cs-quality-regulatory) - Fix cs-ceo-advisor related agent path - Update marketplace.json metadata counts (224 tools, 341 refs, 14 agents, 12 commands) Verified: all 19 scripts pass --help, all 14 agent paths resolve, mkdocs builds clean. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -10,21 +10,21 @@ Generate Keep a Changelog entries from git history and validate commit message f
|
||||
## Usage
|
||||
|
||||
```
|
||||
/changelog generate [--from <tag>] [--to HEAD] Generate changelog entries
|
||||
/changelog lint [--range <from>..<to>] Lint commit messages
|
||||
/changelog generate [--from-tag <tag>] [--to-tag <tag>] Generate changelog entries
|
||||
/changelog lint [--from-ref <ref>] [--to-ref <ref>] Lint commit messages
|
||||
```
|
||||
|
||||
## Examples
|
||||
|
||||
```
|
||||
/changelog generate --from v2.0.0
|
||||
/changelog lint --range main..dev
|
||||
/changelog generate --from v2.0.0 --to v2.1.0 --format markdown
|
||||
/changelog generate --from-tag v2.0.0
|
||||
/changelog lint --from-ref main --to-ref dev
|
||||
/changelog generate --from-tag v2.0.0 --to-tag v2.1.0 --format markdown
|
||||
```
|
||||
|
||||
## Scripts
|
||||
- `engineering/changelog-generator/scripts/generate_changelog.py` — Parse commits, render changelog
|
||||
- `engineering/changelog-generator/scripts/commit_linter.py` — Validate conventional commit format
|
||||
- `engineering/changelog-generator/scripts/generate_changelog.py` — Parse commits, render changelog (`--from-tag`, `--to-tag`, `--from-ref`, `--to-ref`, `--format markdown|json`)
|
||||
- `engineering/changelog-generator/scripts/commit_linter.py` — Validate conventional commit format (`--from-ref`, `--to-ref`, `--strict`, `--format text|json`)
|
||||
|
||||
## Skill Reference
|
||||
→ `engineering/changelog-generator/SKILL.md`
|
||||
|
||||
@@ -13,7 +13,7 @@ Generate cascaded OKR frameworks from company-level strategy down to team-level
|
||||
/okr generate <strategy> Generate OKR cascade
|
||||
```
|
||||
|
||||
Supported strategies: `growth`, `retention`, `revenue`, `innovation`
|
||||
Supported strategies: `growth`, `retention`, `revenue`, `innovation`, `operational`
|
||||
|
||||
## Input Format
|
||||
|
||||
@@ -26,11 +26,12 @@ Pass a strategy keyword directly. The generator produces company, department, an
|
||||
/okr generate retention
|
||||
/okr generate revenue
|
||||
/okr generate innovation
|
||||
/okr generate growth --format json --output okrs.json
|
||||
/okr generate operational
|
||||
/okr generate growth --json
|
||||
```
|
||||
|
||||
## Scripts
|
||||
- `product-team/product-strategist/scripts/okr_cascade_generator.py` — OKR cascade generator
|
||||
- `product-team/product-strategist/scripts/okr_cascade_generator.py` — OKR cascade generator (`<strategy> [--teams "A,B,C"] [--contribution 0.3] [--json]`)
|
||||
|
||||
## Skill Reference
|
||||
> `product-team/product-strategist/SKILL.md`
|
||||
|
||||
@@ -11,7 +11,7 @@ Generate structured user personas with demographics, goals, pain points, and beh
|
||||
|
||||
```
|
||||
/persona generate Generate persona (interactive)
|
||||
/persona generate --output json Generate persona as JSON
|
||||
/persona generate json Generate persona as JSON
|
||||
```
|
||||
|
||||
## Input Format
|
||||
@@ -29,12 +29,12 @@ Interactive mode prompts for product context. Alternatively, provide context inl
|
||||
|
||||
```
|
||||
/persona generate
|
||||
/persona generate --output json
|
||||
/persona generate --output json > persona-eng-manager.json
|
||||
/persona generate json
|
||||
/persona generate json > persona-eng-manager.json
|
||||
```
|
||||
|
||||
## Scripts
|
||||
- `product-team/ux-researcher-designer/scripts/persona_generator.py` — Persona generator
|
||||
- `product-team/ux-researcher-designer/scripts/persona_generator.py` — Persona generator (positional `json` arg for JSON output)
|
||||
|
||||
## Skill Reference
|
||||
> `product-team/ux-researcher-designer/SKILL.md`
|
||||
|
||||
@@ -10,21 +10,21 @@ Detect project stack and generate CI/CD pipeline configurations for GitHub Actio
|
||||
## Usage
|
||||
|
||||
```
|
||||
/pipeline detect [<project-dir>] Detect stack, tools, and services
|
||||
/pipeline generate [--platform github|gitlab] Generate pipeline YAML
|
||||
/pipeline detect [--repo <project-dir>] Detect stack, tools, and services
|
||||
/pipeline generate --platform github|gitlab [--repo <project-dir>] Generate pipeline YAML
|
||||
```
|
||||
|
||||
## Examples
|
||||
|
||||
```
|
||||
/pipeline detect ./my-project
|
||||
/pipeline generate --platform github
|
||||
/pipeline generate --platform gitlab --stages build,test,deploy
|
||||
/pipeline detect --repo ./my-project
|
||||
/pipeline generate --platform github --repo .
|
||||
/pipeline generate --platform gitlab --repo .
|
||||
```
|
||||
|
||||
## Scripts
|
||||
- `engineering/ci-cd-pipeline-builder/scripts/stack_detector.py` — Detect stack and tooling
|
||||
- `engineering/ci-cd-pipeline-builder/scripts/pipeline_generator.py` — Generate pipeline YAML
|
||||
- `engineering/ci-cd-pipeline-builder/scripts/stack_detector.py` — Detect stack and tooling (`--repo <path>`, `--format text|json`)
|
||||
- `engineering/ci-cd-pipeline-builder/scripts/pipeline_generator.py` — Generate pipeline YAML (`--platform github|gitlab`, `--repo <path>`, `--input <stack.json>`, `--output <file>`)
|
||||
|
||||
## Skill Reference
|
||||
→ `engineering/ci-cd-pipeline-builder/SKILL.md`
|
||||
|
||||
@@ -32,12 +32,12 @@ Generate portfolio health dashboards and risk matrices for project oversight.
|
||||
```
|
||||
/project-health dashboard portfolio-q2.json
|
||||
/project-health risk risk-register.json
|
||||
/project-health dashboard portfolio-q2.json --format json --output dashboard.json
|
||||
/project-health dashboard portfolio-q2.json --format json
|
||||
```
|
||||
|
||||
## Scripts
|
||||
- `project-management/senior-pm/scripts/project_health_dashboard.py` — Health dashboard
|
||||
- `project-management/senior-pm/scripts/risk_matrix_analyzer.py` — Risk matrix analyzer
|
||||
- `project-management/senior-pm/scripts/project_health_dashboard.py` — Health dashboard (`<data_file> [--format text|json]`)
|
||||
- `project-management/senior-pm/scripts/risk_matrix_analyzer.py` — Risk matrix analyzer (`<data_file> [--format text|json]`)
|
||||
|
||||
## Skill Reference
|
||||
> `project-management/senior-pm/SKILL.md`
|
||||
|
||||
@@ -32,11 +32,11 @@ Analyze retrospective data for recurring themes, sentiment trends, and action it
|
||||
|
||||
```
|
||||
/retro analyze sprint-24-retro.json
|
||||
/retro analyze sprint-24-retro.json --format json --output retro-report.json
|
||||
/retro analyze sprint-24-retro.json --format json
|
||||
```
|
||||
|
||||
## Scripts
|
||||
- `project-management/scrum-master/scripts/retrospective_analyzer.py` — Retrospective analyzer
|
||||
- `project-management/scrum-master/scripts/retrospective_analyzer.py` — Retrospective analyzer (`<data_file> [--format text|json]`)
|
||||
|
||||
## Skill Reference
|
||||
> `project-management/scrum-master/SKILL.md`
|
||||
|
||||
@@ -29,11 +29,11 @@ Mobile app,20000,3,0.5,13
|
||||
```
|
||||
/rice prioritize features.csv
|
||||
/rice prioritize features.csv --capacity 20
|
||||
/rice prioritize features.csv --format json --output prioritized.json
|
||||
/rice prioritize features.csv --output json
|
||||
```
|
||||
|
||||
## Scripts
|
||||
- `product-team/product-manager-toolkit/scripts/rice_prioritizer.py` — RICE prioritizer
|
||||
- `product-team/product-manager-toolkit/scripts/rice_prioritizer.py` — RICE prioritizer (`<input.csv> [--capacity N] [--output text|json|csv]`)
|
||||
|
||||
## Skill Reference
|
||||
> `product-team/product-manager-toolkit/SKILL.md`
|
||||
|
||||
@@ -32,12 +32,12 @@ Score sprint health across delivery, quality, and team metrics with velocity tre
|
||||
```
|
||||
/sprint-health analyze sprint-24.json
|
||||
/sprint-health velocity last-6-sprints.json
|
||||
/sprint-health analyze sprint-24.json --format json --output report.json
|
||||
/sprint-health analyze sprint-24.json --format json
|
||||
```
|
||||
|
||||
## Scripts
|
||||
- `project-management/scrum-master/scripts/sprint_health_scorer.py` — Sprint health scorer
|
||||
- `project-management/scrum-master/scripts/velocity_analyzer.py` — Velocity analyzer
|
||||
- `project-management/scrum-master/scripts/sprint_health_scorer.py` — Sprint health scorer (`<data_file> [--format text|json]`)
|
||||
- `project-management/scrum-master/scripts/velocity_analyzer.py` — Velocity analyzer (`<data_file> [--format text|json]`)
|
||||
|
||||
## Skill Reference
|
||||
> `project-management/scrum-master/SKILL.md`
|
||||
|
||||
@@ -24,9 +24,13 @@ Generate tests, analyze coverage, and validate test quality using the TDD Guide
|
||||
```
|
||||
|
||||
## Scripts
|
||||
- `engineering-team/tdd-guide/scripts/test_generator.py` — Generate test cases
|
||||
- `engineering-team/tdd-guide/scripts/coverage_analyzer.py` — Coverage analysis
|
||||
- `engineering-team/tdd-guide/scripts/test_quality_checker.py` — Quality validation
|
||||
- `engineering-team/tdd-guide/scripts/test_generator.py` — Test case generation (library module)
|
||||
- `engineering-team/tdd-guide/scripts/coverage_analyzer.py` — Coverage analysis (library module)
|
||||
- `engineering-team/tdd-guide/scripts/tdd_workflow.py` — TDD workflow orchestration (library module)
|
||||
- `engineering-team/tdd-guide/scripts/fixture_generator.py` — Test fixture generation (library module)
|
||||
- `engineering-team/tdd-guide/scripts/metrics_calculator.py` — TDD metrics calculation (library module)
|
||||
|
||||
> **Note:** These scripts are library modules without CLI entry points. Import them in Python or use via the SKILL.md workflow guidance.
|
||||
|
||||
## Skill Reference
|
||||
→ `engineering-team/tdd-guide/SKILL.md`
|
||||
|
||||
@@ -11,24 +11,22 @@ Scan codebases for technical debt, score severity, and generate prioritized reme
|
||||
|
||||
```
|
||||
/tech-debt scan <project-dir> Scan for debt indicators
|
||||
/tech-debt score <project-dir> Calculate debt score (0-100)
|
||||
/tech-debt report <project-dir> Full report with remediation plan
|
||||
/tech-debt prioritize <inventory.json> Prioritize debt backlog
|
||||
/tech-debt report <project-dir> Full dashboard with trends
|
||||
```
|
||||
|
||||
## Examples
|
||||
|
||||
```
|
||||
/tech-debt scan ./src
|
||||
/tech-debt score . --format json
|
||||
/tech-debt report . --output debt-report.md
|
||||
/tech-debt scan . --format json
|
||||
/tech-debt report . --format json --output debt-report.json
|
||||
```
|
||||
|
||||
## Scripts
|
||||
- `engineering/tech-debt-tracker/scripts/debt_scanner.py` — Detect debt patterns
|
||||
- `engineering/tech-debt-tracker/scripts/debt_scorer.py` — Calculate severity scores
|
||||
- `engineering/tech-debt-tracker/scripts/remediation_planner.py` — Generate fix plans
|
||||
- `engineering/tech-debt-tracker/scripts/trend_tracker.py` — Track debt over time
|
||||
- `engineering/tech-debt-tracker/scripts/cost_estimator.py` — Estimate remediation cost
|
||||
- `engineering/tech-debt-tracker/scripts/debt_scanner.py` — Scan for debt patterns (`debt_scanner.py <directory> [--format json] [--output file]`)
|
||||
- `engineering/tech-debt-tracker/scripts/debt_prioritizer.py` — Prioritize debt backlog (`debt_prioritizer.py <inventory.json> [--framework cost_of_delay|wsjf|rice] [--format json]`)
|
||||
- `engineering/tech-debt-tracker/scripts/debt_dashboard.py` — Generate debt dashboard (`debt_dashboard.py [files...] [--input-dir dir] [--period weekly|monthly|quarterly] [--format json]`)
|
||||
|
||||
## Skill Reference
|
||||
→ `engineering/tech-debt-tracker/SKILL.md`
|
||||
|
||||
@@ -32,13 +32,12 @@ Interactive mode prompts for feature context. For sprint planning, provide capac
|
||||
|
||||
```
|
||||
/user-story generate
|
||||
/user-story generate --output json
|
||||
/user-story sprint 34
|
||||
/user-story sprint 21 --format json --output sprint-plan.json
|
||||
/user-story sprint 21
|
||||
```
|
||||
|
||||
## Scripts
|
||||
- `product-team/agile-product-owner/scripts/user_story_generator.py` — User story generator
|
||||
- `product-team/agile-product-owner/scripts/user_story_generator.py` — User story generator (positional args: `sprint <capacity>`)
|
||||
|
||||
## Skill Reference
|
||||
> `product-team/agile-product-owner/SKILL.md`
|
||||
|
||||
Reference in New Issue
Block a user