Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

create-pr创建公关

Agent Skill

create-pr 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

921

周安装

38

GitHub Stars

64

下载量

301
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:create-pr(创建公关)
来源仓库:https://github.com/factory-ai/factory-plugins
仓库路径:skills/create-pr
安装命令:
npx skills add https://github.com/factory-ai/factory-plugins --skill create-pr
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/factory-ai/factory-plugins --skill create-pr

简介

create-pr 自动生成符合 Conventional Commits 规范的 Pull Request 模板。

  • 包含本地验证、构建测试与 Jira ticket 关联等标准化流程保障代码质量。
  • 语言无关设计,需根据项目实际情况替换示例中的 lint/test/build 命令。
  • 推送前必须确认远程分支存在且无未提交变更,防止意外覆盖他人工作。
  • create-pr 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Create Pull Request

Create a PR with proper conventions: local verification, Conventional Commits title, a templated body, and an optional linked ticket. This skill is language- and framework-agnostic — substitute your project's actual build, lint, test, and format commands where examples are shown.

Prerequisites

Before starting, verify:

  1. Current branch has commits not on the base branch (git log origin/<base-branch>..HEAD --oneline)
  2. Branch is pushed to remote (git push -u origin HEAD if not)
  3. No uncommitted changes that should be included (git status)

Workflow

1. Understand the Changes

Run in parallel:

git log origin/<base-branch>..HEAD --oneline
git diff origin/<base-branch>..HEAD --stat

Determine:

  • What changed: Which modules, packages, services, or directories were modified
  • Change type: feat, fix, docs, refactor, test, chore, perf, ci, build, revert
  • Scope: Primary module/package/service affected (use directory name or monorepo / repo for cross-cutting changes)
  • Is this a code change?: If the PR modifies source code (not only docs, markdown, or config-only changes), run the local verification checklist in step 2 before creating the PR.

2. Local Verification (for code changes)

Skip this step if the PR only touches documentation, markdown files, or other non-code files. For any change that touches source files, run your project's verification commands locally before creating the PR.

Discover the commands by reading the repo root (e.g. Makefile, package.json, pyproject.toml, Cargo.toml, go.mod, build.gradle, mix.exs, Gemfile, composer.json, justfile, Taskfile.yml, README.md, or the CI workflow config). Use filter/target flags where available (e.g. turbo --filter, nx --projects, pnpm --filter, bazel //path/..., cargo -p <crate>, pytest <path>, go test./<pkg>/...) to run only the affected portions — it is faster than running the whole repo.

Common verification categories to run when applicable:

Typecheck / Compile

Run the project's static type check or compile step if it has one.

Examples across ecosystems (use whatever the repo defines):

  • TypeScript: npm run typecheck, pnpm -r typecheck, tsc --noEmit
  • Python (typed): mypy., pyright, ty check
  • Rust: cargo check
  • Go: go build./..., go vet./...
  • Java/Kotlin: ./gradlew compileJava, ./mvnw compile

Lint / Format

Run the project's linter and formatter. Prefer an autofix target if one exists.

Examples:

  • JS/TS: npm run fix, npm run lint, eslint., prettier --check.
  • Python: ruff check --fix., ruff format., black., flake8
  • Rust: cargo clippy --all-targets, cargo fmt --check
  • Go: golangci-lint run, gofmt -l.
  • Shell: shellcheck, shfmt -d.

Tests

Run the unit/integration tests for affected packages.

Examples:

  • JS/TS: npm run test -- --filter=<workspace>, pnpm -r test, vitest run <path>, jest <path>
  • Python: pytest <path>, tox -e <env>, python -m unittest
  • Rust: cargo test -p <crate>
  • Go: go test./<pkg>/...
  • Java/Kotlin: ./gradlew test, ./mvnw test
  • Ruby: bundle exec rspec <path>, rake test

Additional checks (run when relevant)

  • Unused exports / dead code: Run your project's dead-code check if it has one (e.g. knip, ts-prune, vulture for Python, deadcode / unused for Go, cargo udeps for Rust).
  • Dependency hygiene: Run your project's dependency check if it has one (e.g. depcheck, pip check, cargo audit, bundle audit).
  • Lockfile in sync: If you modified any dependency manifest (package.json, requirements.txt, pyproject.toml, Cargo.toml, go.mod, Gemfile, etc.), run the install command (npm install, pnpm install, uv sync, poetry lock --no-update, cargo update -w, go mod tidy, bundle install) and commit any lockfile changes. CI commonly fails if the lockfile is out of date.
  • Generated code / codegen: If the repo has an OpenAPI spec, protobuf, GraphQL schema, SQL migrations, or any other generated artifacts, regenerate and commit any changes.
  • Style / asset linters: Run stylesheet linters (stylelint, etc.) or asset linters if you changed those files.
  • Security scans: Run any security/secret scanners configured in the repo (trivy, semgrep, gitleaks, etc.).

3. Link to a Ticket (optional)

If your org uses an issue tracker, ask the user whether to:

  • Create a new ticket: Use the appropriate tool (Linear, Jira, GitHub Issues, etc.)
  • Link an existing ticket: Ask for the identifier (e.g. TEAM-1234, JIRA-567, #42)
  • Skip: Only if user explicitly says no ticket is needed

Most CI systems can be configured to require the ticket identifier in the PR body. Follow your org's convention.

4. Format PR Title

Follow Conventional Commits: type(scope): description

  • type: feat, fix, docs, refactor, test, chore, perf, ci, build, revert
  • scope: Name of the affected module/package/service/directory, or monorepo / repo for cross-cutting changes. Multiple scopes can be comma-separated: fix(a, b, c):...

Examples:

  • feat(web): add dark mode toggle
  • fix(cli, daemon): load shell env at entrypoint
  • fix(api): handle nil response from upstream
  • chore(repo): bump dependencies

5. Generate PR Body

Fill in all sections from your PR template. A typical template has four sections:

## Description

<concise summary of what changed and why>

## Related Issue

Closes TEAM-XXXX
<!-- or: Part of TEAM-XXXX -->

## Potential Risk & Impact

<list risks, performance implications, technical debt>
<!-- Use "N/A" only if truly no risk -->

## How Has This Been Tested?

<describe testing performed: unit tests, manual testing, typecheck, lint>

6. Create the PR

gh pr create \
  --base <base-branch> \
  --head <branch-name> \
  --title "<type>(<scope>): <description>" \
  --body "<generated body>"

If the body is long, write it to a temp file and use --body-file:

gh pr create --base <base-branch> --head <branch> --title "..." --body-file /tmp/pr-body.md

7. Report Result

Return the PR URL to the user.

CI Checks Reference (template)

These are typical check categories that run on every PR. Map them to your repo's actual commands when adapting this skill.

Always-run checks

CategoryWhat it doesHow to find the local command
Typecheck / compileVerifies the project compiles or passes static typesCheck package.json, Makefile, pyproject.toml, Cargo.toml, go.mod, CI config
LintEnforces code style / correctness rulesCheck for lint, check, or equivalent scripts in the repo root
FormatEnforces consistent formattingCheck for format, fmt, prettier, black, gofmt, rustfmt, etc.
TestsRuns unit and integration testsCheck for test script / target
Dead code / unused exportsFlags unused codeCheck for knip, ts-prune, vulture, cargo udeps, etc.
Dependency checkFlags unused / vulnerable dependenciesCheck for depcheck, audit, cargo audit, etc.
Lockfile in syncFails if lockfile is stale relative to the manifestRun your package manager's install command and commit the lockfile
PR ConventionsValidates branch name, semantic title, ticket presenceFollow the formatting rules above

Conditional checks (run only when affected files change)

  • API / schema validation: Triggered by API or schema changes. Regenerate locally.
  • Platform-specific builds: Triggered when desktop/mobile/embedded targets are affected.
  • E2E tests: Triggered when the consumer app or top-level binary is affected.

Typical PR conventions CI enforces

  • Branch name: Max length, allowed characters (e.g. [A-Za-z0-9/-]).
  • Title: Conventional Commits format with a valid scope.
  • Ticket reference: PR body must contain a ticket identifier (often skipped for chore: and revert: types).

Common Mistakes to Avoid

  • Wrong base branch: Use the branch your org takes PRs into (e.g. dev, main, develop, trunk).
  • Missing scope: PR title CI check often requires a valid scope.
  • Missing ticket reference: Description must reference your ticket ID for CI to pass (except chore:/revert:).
  • Forgetting to push: Branch must be on remote before gh pr create.
  • Lockfile drift: Always run the install command and commit lockfile changes after dependency changes.
  • Skipping local checks on code PRs: Typecheck/compile, lint, and tests should be run locally before sending out code changes to catch issues early and avoid CI round-trips.
  • Uncommitted generated artifacts: After API/schema changes, regenerate and commit.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.95%
按下载量换算111

Claude

29.82%
按下载量换算90

Cursor

20.03%
按下载量换算60

Gemini CLI

9.56%
按下载量换算29

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/factory-ai/factory-plugins --skill create-pr 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills