ワンクリックで
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 ページを確認してインストールできます。
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.
SOC 職業分類に基づく
| 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.