소스 정보
- 저장소
- guitarrapc/dotfiles-win
- 최근 소스 활동
- 2026년 7월 28일 18:24
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/guitarrapc/dotfiles-win --skill seiton명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | seiton |
| description | Lint and fix GitHub Actions workflow files and action metadata files using seiton CLI. |
Seiton lints and auto-fixes GitHub Actions workflow files (.github/workflows/*.yml) and action metadata (action.yml).
seiton init
seiton validate-config
seiton --min-severity error
seiton --fix --dry-run
seiton --fix
seiton
run -> review -> config tune -> re-run until only intended findings remain.More findings than before is normal. Start with errors, then warnings, then opt-in and online rules.
See references/adoption-workflow.md for phased rollout details.
When diagnostics are reported, use this order:
--fix when possible.rules.<rule-id>.enabledrules.<rule-id>.severityexclusions only for scoped exceptions (specific files/jobs).Do not use exclusions to avoid legitimate fixes.
Use exclusions for generated files, intentional demo fixtures, or temporary legacy constraints.
For gh-aw files, keep this split clear:
discovery.skip-agentic-workflows: true matches only files with # gh-aw-metadata: in the first 10 lines.agentics-maintenance.yml) need explicit exclusions.discovery:
skip-agentic-workflows: true
exclusions:
- file: ".github/workflows/agentics-maintenance.yml"
- file: ".github/workflows/copilot-*.yml"
file: is repository-relative glob. Omitting rules (or using rules: ["*"]) suppresses all rules for matching files.
Read each diagnostic = help: line; it often gives the exact config key or suppression pattern.
Online rules are opt-in. Enable them in .github/seiton.yaml via rules.<rule-id>.enabled: true (not by exclusions).
rules:
known-vulnerable-actions:
enabled: true
impostor-commit:
enabled: true
ref-confusion:
enabled: true
stale-action-refs:
enabled: true
These rules require GITHUB_TOKEN or SEITON_GITHUB_TOKEN.
Prefer .github/seiton.yaml for repeated or broad suppressions. Use inline directives only for one-off local cases.
steps:
# seiton: disable-next-line unpinned-uses
- uses: actions/checkout@v6
# seiton: disable-step unredacted-secrets
- run: |
echo "${SECRET_VALUE}"
Config is auto-discovered from <cwd>/.github/seiton.yaml (or .yml, plus seiton.yaml/.yml under cwd).
Use --config/-c or SEITON_CONFIG for custom paths.
seiton validate-config.--min-severity error.1 by default; use --min-severity error in CI if warnings should not fail the job.references/adoption-workflow.md.references/fix-mode.md and references/configuration.md.references/rules.md — rule IDs, defaults, severity, opt-in/online notesreferences/fix-mode.md — fix commands, network flags, output formatsreferences/configuration.md — full seiton.yaml schema and examplesreferences/inline-suppression.md — inline directive syntax and placement pitfallsreferences/adoption-workflow.md — first-adoption rollout and common high-count rules