소스 정보
- 저장소
- guitarrapc/githubactions-lab
- 최근 소스 활동
- 2026년 5월 29일 13:26
- 감지된 SKILL.md 언어
- 영어
- 스타
- 56
- 포크
- 5
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/guitarrapc/githubactions-lab --skill seiton명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | seiton |
| description | Lint and fix GitHub Actions workflow files and action metadata files using seiton CLI. |
Seiton is a linter and auto-fixer for GitHub Actions workflow files (.github/workflows/*.yml) and action metadata files (action.yml).
# Lint all workflows in the current repository
seiton
# Preview fixes without applying
seiton --fix --dry-run
# Apply auto-fixes
seiton --fix
# Pin actions and images via network
seiton --fix --enable-pin-network --enable-image-network
| Command | Description |
|---|---|
seiton | Lint workflows (default) |
seiton check | Explicit lint (same as default) |
seiton --fix | Apply auto-fixes in place |
seiton --fix --dry-run | Preview fixes as unified diff |
seiton --fix --check | Exit non-zero if fixable issues exist |
seiton init | Generate starter config at .github/seiton.yaml |
seiton install | Install agent skill files and CI workflow templates |
seiton rules | List all lint rules and their status |
seiton validate-config | Validate the config file |
seiton version | Show version info |
| Flag | Description |
|---|---|
--config PATH | Explicit config file path |
--format text, json, sarif | Output format |
--min-severity error, warning, info | Filter by severity |
--ignore PATTERN | Suppress diagnostics matching pattern |
--oneline | One diagnostic per line |
--verbose | Show progress and timing info |
--include-actions | Include .github/actions/ in discovery |
--enable-pin-network | Resolve action SHAs via network (fix mode) |
--enable-image-network | Resolve image digests via network (fix mode) |
Default rich text output shows:
error[rule-id]: message
--> file.yml:12:5
|
12 | source line
| ^^^^^^^^^^^
|
= help: suggestion
| Code | Meaning |
|---|---|
0 | No issues found |
1 | Lint issues found |
2 | Invalid CLI options |
3 | Fatal error (config error, I/O failure) |
seiton to identify issuesseiton --fix --dry-run to preview available fixesseiton --fix to apply fixesseiton --fix --enable-pin-network --enable-image-networkConfig is auto-discovered from .github/seiton.yaml (or .github/seiton.yml, seiton.yaml, seiton.yml).
Generate a starter config:
seiton init
seiton validate-config to check configurationDid you mean hint--min-severity error to focus on errors only--format sarif for GitHub Code Scanning uploadreferences/rules.md — All rule IDs, severities, fix support, and categoriesreferences/fix-mode.md — Auto-fix commands, flags, and configurationreferences/configuration.md — Full seiton.yaml schema and common patterns