This repo previously contained shared reusable workflows and a Node.js AI helper (ai-helper.js) used by per-direct-report repos via GitHub Actions' uses: cross-repo workflow feature.
With the migration to GitHub Agentic Workflows (gh-aw), the architecture changed fundamentally:
- Before: Template repo had thin
.ymlcaller workflows → invoked reusable.ymlworkflows in manager-inator → those ranai-helper.jsvia Node.js → called OpenAI GPT-4.1 via GitHub Models API - After: Each direct-report repo has self-contained
.mdworkflow files → gh-aw compiles them into GitHub Actions → Copilot engine (Claude Opus 4.6) executes the AI prompts directly → safe-outputs creates PRs/issues
This repo is retained as:
- Historical reference — The old reusable workflow architecture and AI helper logic are preserved in git history
- Future shared resources — If shared prompt templates, configuration, or tooling is needed across direct-report repos, this repo can host them
Each direct-report repo (created from performance-checkins template) is fully self-contained:
.github/workflows/*.md— 16 gh-aw agentic workflow files with embedded AI prompts.github/workflows/*.lock.yml— Compiled workflow files (auto-generated bygh aw compile)- No external dependencies on this repo
March 4, 2026
- performance-checkins — Template repo for creating new direct-report repos
- direct-report-jane-doe — Example instance with sample data and working workflows