一键导入
ai-new-project
Stand up a new repository with standard quality gates, CI/CD pipeline, and configuration files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Stand up a new repository with standard quality gates, CI/CD pipeline, and configuration files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Initialize ai-shell for a new repo or workspace and choose the correct repo type and tool setup.
Monitor CI pipeline after push, diagnose failures, auto-fix and re-push. Use after submitting work, or asking 'check the build' or 'how's the pipeline'.
Find, analyze, and recommend GitHub issues to work on. Use when looking for issues, or asking 'what should I work on next'.
Create a feature branch from the correct base (dev or main), sync release bumps, and set up remote tracking. Use when starting work on an issue or saying 'start working on'.
Promote staging (dev) to production (main) by creating an automerge PR. Use when dev/staging is ready for release, or saying 'release to production'.
Comprehensive repository health check with remote-first git hygiene, branch cleanup, and code quality analysis. Use for repo maintenance, or saying 'clean up the repo'.
| name | ai-new-project |
| description | Stand up a new repository with standard quality gates, CI/CD pipeline, and configuration files. |
| argument-hint | [repo-name] |
Create a new standardized repository: $ARGUMENTS
Tool-first project bootstrap. Use ai-shell for scaffolding and ai-tools for deterministic workflow and standards behavior.
Collect:
$ARGUMENTS when provided)library or service (use workspace only when intentionally creating a coordinator repo)private or public)Use gh to create and clone the repo.
For service repos, create and push a development branch (dev/develop/staging) based on team convention.
Create the baseline project skeleton for the selected ecosystem, then run package manager initialization commands.
Do not manually encode the full standards policy in this skill. Keep local scaffolding minimal and delegate standards rules to uv run ai-tools standardize.
Run ai-shell initialization with the selected repo type and target tools:
ai-shell init --library
ai-shell init --service
ai-shell init --workspace
uv run ai-tools standardizeRun:
ai-tools standardize detect --json
ai-tools standardize audit --json
ai-tools standardize fix --write --json
ai-tools standardize verify --json
If the user asks for audit-only mode, skip fix and stop after audit.
For normal repos, confirm:
uv run ai-tools repo status --json worksuv run ai-tools repo branch prepare --json is the branch-prep entrypointuv run ai-tools repo submit --json is the submit entrypointFor workspace repos, confirm:
uv run ai-tools workspace status --json worksuv run ai-tools workspace ...Commit the scaffold with a conventional commit and push to remote.
For service repos, ensure branch strategy is explicit (dev -> main) before starting feature work.
gh not authenticated: ask user to run gh auth login.ai-tools missing commands: report exact missing subcommand and continue with the closest available audit/status command.