Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始めるaudit-ci
スター3
フォーク1
更新日2026年5月30日 01:17
Does CI work?
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SKILL.md
readonlyメニュー
Does CI work?
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Application programming interface.
Did it work?
Is everything okay?
Is it running?
Does this meet standards?
Does it work well?
| name | audit-ci |
| description | Does CI work? |
| license | MIT |
| metadata | {"author":"vant","version":"1.0"} |
Does CI work?
# Common CI files
ls .github/workflows/
ls .gitlab-ci.yml
ls Jenkinsfile
ls .circleci/config.yml
| File | CI |
|---|---|
| .github/workflows/*.yml | GitHub |
| .gitlab-ci.yml | GitLab |
| Jenkinsfile | Jenkins |
| .circleci/config.yml | Circle |
# Check recent runs
gh run list
| Status | Meaning |
|---|---|
| ✓ success | Working |
| ✗ failure | Broken |
| ○ pending | Running |
jobs:
build:
steps:
- run: npm test
- run: npm build
| Check | Issue |
|---|---|
| Tests run | No tests |
| Build runs | No build |
| Deploy runs | No deploy |
- uses: actions/cache@v3
with:
path: node_modules
| Check | Issue | Fix |
|---|---|---|
| No cache | Slow builds | Add cache |
| Cache all | Inefficient | Cache key |
## CI Audit
### Pipeline
- [PRESENT/MISSING] File: [file]
- [PASS/FAIL] Last run: [status]
### Steps
- [YES/NO] Test
- [YES/NO] Build
- [YES/NO] Deploy
### Timing
- Test: [s]s
- Build: [s]s
- Total: [s]s
### Issues
- [list]
Role: CI Auditor
Input: Repository
Output: CI works?
Keep CI green.