一键导入
dep-audit
Audit Dependabot alerts and open PRs across allcodex-aio, allknower, and allcodex-portal. Reports severity breakdown and recommends merge order.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Audit Dependabot alerts and open PRs across allcodex-aio, allknower, and allcodex-portal. Reports severity breakdown and recommends merge order.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Poll GitHub Actions CI status for allcodex-aio, allknower, and allcodex-portal until all jobs complete or fail. Shows failed job logs.
Use when verifying the full monorepo typechecks and unit tests pass before committing or merging to dev or main. Runs all three services sequentially from the parent repo root.
Use when bumping one or all submodule SHAs in the allcodex-aio parent repo after work is merged to a submodule's dev branch. Invoke with a submodule name or "all".
| name | dep-audit |
| description | Audit Dependabot alerts and open PRs across allcodex-aio, allknower, and allcodex-portal. Reports severity breakdown and recommends merge order. |
Check all 3 repos for Dependabot alerts and open dependency PRs.
Check Dependabot alerts for each repo:
gh api repos/ThunderRonin/allknower/dependabot/alerts --jq '[.[] | select(.state=="open")] | group_by(.security_advisory.severity) | map({severity: .[0].security_advisory.severity, count: length, packages: [.[].dependency.package.name] | unique})'
gh api repos/ThunderRonin/allcodex-portal/dependabot/alerts --jq '[.[] | select(.state=="open")] | group_by(.security_advisory.severity) | map({severity: .[0].security_advisory.severity, count: length, packages: [.[].dependency.package.name] | unique})'
gh api repos/ThunderRonin/allcodex-core/dependabot/alerts --jq '[.[] | select(.state=="open")] | group_by(.security_advisory.severity) | map({severity: .[0].security_advisory.severity, count: length, packages: [.[].dependency.package.name] | unique})'
List open Dependabot PRs:
gh pr list --repo ThunderRonin/<repo> --author "app/dependabot" --state open --json number,title,mergeable
For each open PR, check CI status and mergeability
Recommend merge order:
Summary table:
| Repo | High | Medium | Low | Open PRs | Action |
Then per-repo details with specific merge commands.
main by default — retarget to dev with gh pr edit --base dev before merging