ワンクリックで
orchestrateprecommit
// Add pre-commit hooks, linting, CLAUDE.md, and foundational .claude/ setup to a target repo
// Add pre-commit hooks, linting, CLAUDE.md, and foundational .claude/ setup to a target repo
| 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/kagenti/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/kagenti/orchestrate/<target>/phase-status.md:
completeorchestrate — Parent routerorchestrate:scan — Provides tech stack detectionorchestrate:plan — Defines precommit phase tasksorchestrate:tests — Next phase: test infrastructureUse this skill when you need to create clear, concise summaries of information. This includes summarizing long documents, articles, meeting notes, technical documentation, research papers, or any text that needs to be condensed while preserving key information. The skill provides techniques for extractive and abstractive summarization, bullet-point formatting, and executive summaries.
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
Scan and assess a target repository - tech stack, CI maturity, security posture, test coverage, supply chain health
Add security governance to a target repo - CODEOWNERS, SECURITY.md, CONTRIBUTING.md, LICENSE, .gitignore audit