From 673d3508f27e7e19b9d185227b89a3089789e68a Mon Sep 17 00:00:00 2001 From: toukanno Date: Mon, 23 Mar 2026 21:50:03 +0900 Subject: [PATCH] fix: add missing academic/sales dirs to lint, fix README scenario order, add Data Analytics Reporter - Add academic/ and sales/ to AGENT_DIRS in lint-agents.sh - Add academic/ to CI workflow paths trigger and git diff glob list - Alphabetize directory order in CI workflow for consistency - Swap Scenario 5 and Scenario 4 in README so numbering is sequential - Create specialized/specialized-data-analytics-reporter.md agent - Add Data Analytics Reporter to README Specialized Division table Closes #242, Closes #217, Closes #291 Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/lint-agents.yml | 8 +- README.md | 21 ++- scripts/lint-agents.sh | 2 + .../specialized-data-analytics-reporter.md | 175 ++++++++++++++++++ 4 files changed, 193 insertions(+), 13 deletions(-) create mode 100644 specialized/specialized-data-analytics-reporter.md diff --git a/.github/workflows/lint-agents.yml b/.github/workflows/lint-agents.yml index 81245ff84..bf78e832e 100644 --- a/.github/workflows/lint-agents.yml +++ b/.github/workflows/lint-agents.yml @@ -3,14 +3,15 @@ name: Lint Agent Files on: pull_request: paths: + - 'academic/**' - 'design/**' - 'engineering/**' - 'game-development/**' - 'marketing/**' - 'paid-media/**' - - 'sales/**' - 'product/**' - 'project-management/**' + - 'sales/**' - 'testing/**' - 'support/**' - 'spatial-computing/**' @@ -29,8 +30,9 @@ jobs: id: changed run: | FILES=$(git diff --name-only --diff-filter=ACMR origin/${{ github.base_ref }}...HEAD -- \ - 'design/**/*.md' 'engineering/**/*.md' 'game-development/**/*.md' 'marketing/**/*.md' 'paid-media/**/*.md' 'sales/**/*.md' 'product/**/*.md' \ - 'project-management/**/*.md' 'testing/**/*.md' 'support/**/*.md' \ + 'academic/**/*.md' 'design/**/*.md' 'engineering/**/*.md' 'game-development/**/*.md' \ + 'marketing/**/*.md' 'paid-media/**/*.md' 'product/**/*.md' \ + 'project-management/**/*.md' 'sales/**/*.md' 'testing/**/*.md' 'support/**/*.md' \ 'spatial-computing/**/*.md' 'specialized/**/*.md') { echo "files<