用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/rossoctl/examples --skill orchestrate-precommit命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Add comprehensive CI workflows to a target repo - lint, test, build, security scanning, dependabot, scorecard, action pinning
Brainstorm and create phased enhancement plan for a target repo - PR sizing, phase selection, task breakdown
Review all orchestration PRs before merge - per-PR checks, cross-PR consistency, and coordinated approval
基于 SOC 职业分类
正在显示 SKILL.md
| name | orchestrate:precommit |
| description | Add pre-commit hooks, linting, CLAUDE.md, and foundational .claude/ setup to a target repo |
flowchart TD
START(["/orchestrate:precommit"]) --> DETECT["Detect language"]:::orch
DETECT --> PRECOMMIT["Generate .pre-commit-config.yaml"]:::orch
PRECOMMIT --> LINT["Generate lint config"]:::orch
LINT --> MAKEFILE["Add Makefile targets"]:::orch
MAKEFILE --> CLAUDE_MD["Create CLAUDE.md"]:::orch
CLAUDE_MD --> SETTINGS["Create .claude/settings.json"]:::orch
SETTINGS --> BRANCH["Create branch"]:::orch
BRANCH --> SIZE{Under 700 lines?}
SIZE -->|Yes| PR["Commit + open PR"]:::orch
SIZE -->|No| SPLIT["Split into sub-PRs"]:::orch
SPLIT --> PR
PR --> DONE([Phase complete])
classDef orch fill:#FF9800,stroke:#333,color:white
Follow this diagram as the workflow.
Establish the code quality baseline for a target repo. This is Phase 2 and produces PR #1 — the foundation that validates all subsequent PRs.
orchestrate:plan identifies precommit as a needed phase/tmp/rossoctl/orchestrate/<target>/plan.md.repos/<target>/Use the scan report or check directly:
ls .repos/<target>/go.mod .repos/<target>/pyproject.toml .repos/<target>/package.json .repos/<target>/requirements.yml 2>/dev/null
Create .pre-commit-config.yaml with language-appropriate hooks.
ruff — lint + formattrailing-whitespace, end-of-file-fixer, check-yamlcheck-added-large-filesgolangci-lintgofmt, govettrailing-whitespace, end-of-file-fixereslint, prettiertrailing-whitespace, end-of-file-fixeransible-lint, yamllinttrailing-whitespace, end-of-file-fixerpyproject.toml)[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
.golangci.yml)linters:
enable:
- errcheck
- govet
- staticcheck
- unused
run:
timeout: 5m
.eslintrc.json){
"extends": ["eslint:recommended"],
"env": { "node": true, "es2022": true }
}
If no Makefile exists, create one. If it exists, add targets:
.PHONY: lint fmt
lint:
pre-commit run --all-files
fmt:
# language-specific formatter command
Template for the target repo:
# <Repo Name>
## Overview
<brief description from README or scan>
## Repository Structure
<key directories and their purpose>
## Key Commands
| Task | Command |
|------|---------|
| Lint | `make lint` |
| Format | `make fmt` |
| Test | <detected test command> |
| Build | <detected build command> |
## Code Style
- <language> with <linter>
- Pre-commit hooks: `pre-commit install`
- Sign-off required: `git commit -s`
{
"permissions": {
"allow": [
"Bash(git status:*)",
"Bash(git log:*)",
"Bash(git diff:*)",
"Bash(git branch:*)",
"Bash(ls:*)",
"Bash(cat:*)",
"Bash(find:*)",
"Bash(make lint:*)",
"Bash(make fmt:*)",
"Bash(pre-commit run:*)"
]
}
}
Create branch in the target repo:
git -C .repos/<target> checkout -b orchestrate/precommit
git -C .repos/<target> diff --stat | tail -1
Target ~600-700 lines. Split if over 700.
git -C .repos/<target> add -A
git -C .repos/<target> commit -s -m "feat: add pre-commit hooks, linting, and Claude Code setup"
git -C .repos/<target> push -u origin orchestrate/precommit
gh pr create --repo org/repo --title "Add pre-commit hooks and code quality baseline" --body "Phase 2 of repo orchestration. Adds pre-commit hooks, linting config, CLAUDE.md, and .claude/ setup."
Update /tmp/rossoctl/orchestrate/<target>/phase-status.md:
completeorchestrate — Parent routerorchestrate:scan — Provides tech stack detectionorchestrate:plan — Defines precommit phase tasksorchestrate:tests — Next phase: test infrastructure