Agent Skills
› lylo/pagecord
› ci
ci
GitHub用于在本地运行完整的 CI 流水线,包括安全扫描、代码规范检查、依赖审计及单元测试,帮助用户在推送前验证分支状态和代码质量。
Trigger Scenarios
用户要求运行本地 CI
推送前验证分支
检查代码质量
Install
npx skills add lylo/pagecord --skill ci -g -y
SKILL.md
Frontmatter
{
"name": "ci",
"description": "Run the local CI sequence for this repo. Use when the user asks to run CI, verify a branch before push, or check code quality with the full local pipeline.",
"allowed-tools": "Bash"
}
CI
Run the local checks in this order and stop on first failure unless the user asks otherwise:
bundle exec brakeman --quiet --no-pager --ensure-latestbundle exec rubocopbin/importmap auditbin/rails testbin/rails test:system
Report a short status summary with one line per step. If a step fails, include the failing command and the key error.
Version History
- 386b8a3 Current 2026-08-20 13:56


