mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-02 11:45:20 +02:00
d48c2171a6
- README: add Factory Droid section with install instructions and restart note (Factory requires restart to rescan skills) - CI: add Factory skill doc freshness verification to skill-docs.yml Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
34 lines
1.2 KiB
YAML
34 lines
1.2 KiB
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
|
|
- name: Verify Claude skill docs are fresh
|
|
run: |
|
|
git diff --exit-code || {
|
|
echo "Generated SKILL.md files are stale. Run: bun run gen:skill-docs"
|
|
exit 1
|
|
}
|
|
- name: Check Codex host freshness
|
|
run: bun run gen:skill-docs --host codex
|
|
- name: Verify Codex skill docs are fresh
|
|
run: |
|
|
git diff --exit-code -- .agents/ || {
|
|
echo "Generated Codex SKILL.md files are stale. Run: bun run gen:skill-docs --host codex"
|
|
exit 1
|
|
}
|
|
- name: Generate Factory skill docs
|
|
run: bun run gen:skill-docs --host factory
|
|
- name: Verify Factory skill docs are fresh
|
|
run: |
|
|
git diff --exit-code -- .factory/ || {
|
|
echo "Generated Factory SKILL.md files are stale. Run: bun run gen:skill-docs --host factory"
|
|
exit 1
|
|
}
|