원클릭으로
gh-actions
Use when interacting with GitHub Actions CI/CD automation. Covers workflow status, triggering, debugging, and configuration.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when interacting with GitHub Actions CI/CD automation. Covers workflow status, triggering, debugging, and configuration.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Enhance session checkpoints with git context and diff summaries. Use after completing significant work to enrich checkpoint.md files with repository state, recent commits, and code change summaries. Triggers include "enhance checkpoint", "update checkpoint with git", "add git context to checkpoint", or when finishing a multi-file change session.
Use for model training, hyperparameter tuning, and Modal GPU training.
Use when invoking training, evaluation, and dataset preparation via CLI. Provides all standard commands for this project.
Multi-perspective code analysis using three AI personas (RYAN, FLASH, SOCRATES) for comprehensive decision-making. Use when complex code decisions need analysis from multiple viewpoints, or when avoiding single-perspective blind spots is critical.
Use for authentication management, token validation, and credential troubleshooting.
Use for secrets management, credentials handling, and security best practices.
| name | gh-actions |
| description | Use when interacting with GitHub Actions CI/CD automation. Covers workflow status, triggering, debugging, and configuration. |
This skill covers interacting with GitHub Actions for this repository.
.github/workflows/train.yml and .github/workflows/ci.yml
| Job | Description |
|---|---|
lint | Runs ruff, black --check, flake8 |
test | Runs pytest tests/ after lint passes |
type-check | Runs mypy for type checking |
model-import-check | Verifies model and dataset modules |
push to mainpull_request targeting main# View latest workflow runs
gh run list --repo owner/tiny-cats-model
# View a specific run
gh run view <run-id>
# Watch a run in progress
gh run watch <run-id>
# View run logs
gh run view <run-id> --log
# Re-run failed jobs
gh run rerun <run-id> --failed
# Trigger workflow_dispatch
gh workflow run train.yml
# Trigger with inputs
gh workflow run train.yml -f epochs=20
# Add Modal token secrets
gh secret set MODAL_TOKEN_ID --body "your_token_id"
gh secret set MODAL_TOKEN_SECRET --body "your_token_secret"
# List secrets
gh secret list
Or via GitHub UI: Settings → Secrets and variables → Actions
| Issue | Fix |
|---|---|
| Lint fails | Run ruff check . --fix and black . locally |
| Tests fail | Run pytest tests/ -v locally |
| Import error | Check dependencies in requirements.txt |
| Timeout | Reduce epochs or use gpu-t4 in modal.yml |
When CI fails after push:
gh run listgh run view <run-id>@skill code-quality@skill testing-workflow@skill code-quality@skill gh-actionsSee plans/ADR-006-ci-fix-workflow.md for full workflow details.