一键导入
init
Use when the user asks to initialize a repo, create AGENTS.md, generate contributor guidelines, or set up agent-oriented documentation for a codebase.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when the user asks to initialize a repo, create AGENTS.md, generate contributor guidelines, or set up agent-oriented documentation for a codebase.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Cross review code using a subagent with a specified model. Use when the user asks to review code changes AND specifies a model to use (e.g., 'review with opus', 'use sonnet to review', 'review changes with gemini'). The key differentiator from the regular code-review skill is that the user explicitly specifies which model should perform the review. The root agent reconstructs what changed from its own conversation history — no git commands are used.
Design distinctive, production-grade frontend interfaces — mockups as HTML pages or working application pages. Use when the user asks to design a web page, landing page, UI mockup, dashboard, application page, or any visual HTML interface. Supports single designs, multiple variant generation, and integration with existing project frameworks.
Browser automation with Playwright. Use when the user asks to test a website, take screenshots, check responsive design, test login flows, fill forms, check broken links, or automate any browser task.
Comprehensive code review using parallel specialized subagents. If a PR URL is provided, fetches PR details and can post comments. If no PR is provided, reviews the diff between the current branch and its base branch plus any uncommitted changes. CRITICAL: this skill is costly, don't use it unless user explicitly requested to use it.
Review code changes for correctness, security, performance, and code quality. Use when the user asks to review a diff, review code changes, review commits, or perform a code review. Input can be: (1) a text diff pasted directly, (2) one or more git commit hashes to extract the diff from, or (3) a git range like abc123..def456. The user may also provide task description or requirements that motivated the change.
This skill should be used when the user asks to "install a skill", "import a skill", "add this skill", "try this skill from GitHub", or mentions installing, importing, or adding any AI coding skill/prompt from an external source. Gates external skill installs with a security assessment and installs across all supported CLIs.
| name | init |
| description | Use when the user asks to initialize a repo, create AGENTS.md, generate contributor guidelines, or set up agent-oriented documentation for a codebase. |
| disable-model-invocation | true |
| metadata | {"version":"1.3.0"} |
Analyze a codebase and generate a concise, accurate AGENTS.md contributor guide.
Target: the current working directory, unless user provided another folder as input.
Collect facts about the repository. Only record what is actually found — never invent information.
These probes are independent — run them in parallel (e.g., dispatch subagents) when the tooling supports it.
Map the repo structure (3 levels deep, excluding .git, node_modules, dist, build, pycache, .venv and other autogenerated folders). This is analysis input — the output AGENTS.md should describe non-obvious architecture, not list directories. Focus on the "big picture" that requires reading multiple files to understand.
Extract actual command definitions from the project's build system: package.json scripts, Makefile targets, pyproject.toml scripts, Cargo.toml bins/workspace members, go.mod module path, docker-compose.yml services, etc.
Check for and record key settings of:
.cursorrules, .cursor/rules/, .github/copilot-instructions.mdIf agent rules files exist, read and extract the important parts — focus on conventions that matter for code generation, not verbatim content.
Review the last 20 commits to identify commit message conventions and patterns. If this fails (not a git repo or shallow clone), note the limitation and skip.
README.md exists, read it for context about the repo's purpose and setup.AGENTS.md already exists, read it — you'll be improving it rather than starting fresh.CLAUDE.md exists, read it for additional context.# Repository Guidelines## Project Structure & Module Organization Architecture that requires reading multiple files to understand. Omit anything obvious from opening a single file.
## Build, Test, and Development Commands Actual commands from the build system. Include how to run a single test.
## Coding Style & Naming Conventions Enforced rules from linter/formatter configs. Include tool names.
## Testing Guidelines Test framework, how to run tests, coverage requirements if any.
## Commit & Pull Request Guidelines Commit conventions derived from actual git history. Note any PR templates.
Add other sections only if facts strongly support them (e.g., Architecture Overview, Agent Instructions).
Do not include generic development practices such as:
Do not invent sections like "Common Development Tasks" or "Tips for Development" unless the repo's own documentation expressly contains them. Do not list every file — only document what is non-obvious.
Before finalizing, verify:
npm test over "run the test suite"