mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-06 05:35:46 +02:00
c63e624f7f
Removes 14K+ lines of committed generated Codex skill files from git. .agents/ is now gitignored and generated at setup time via `bun run gen:skill-docs --host codex`. Updates CI workflow to validate generation instead of checking committed file freshness. Co-authored-by: cskwork <cskwork@users.noreply.github.com> Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
507 B
YAML
15 lines
507 B
YAML
name: Skill Docs Freshness
|
|
on: [push, pull_request]
|
|
jobs:
|
|
check-freshness:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: oven-sh/setup-bun@v2
|
|
- run: bun install
|
|
- name: Check Claude host freshness
|
|
run: bun run gen:skill-docs
|
|
- run: git diff --exit-code || (echo "Generated SKILL.md files are stale. Run: bun run gen:skill-docs" && exit 1)
|
|
- name: Check Codex host generation succeeds
|
|
run: bun run gen:skill-docs --host codex
|