Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计未展示

pr-lifecycle公关生命周期

Agent Skill

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

总安装

751

周安装

31

GitHub Stars

公开资料未说明

下载量

246
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add bitsoex/bitso-java --skill "pr-lifecycle"

简介

发现并安装 AI 代理的技能。pr-lifecycle 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适用于理解或模拟软件发布流程中的公关环节。
  • 使用 npx 安装,来自 bitso-java 项目内部技能。
  • 技能边界不清,可能与区块链业务强相关。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 缺乏独立文档,需深入源码才能理解用途。

SKILL.md

PR Lifecycle Management

Comprehensive workflows for managing pull requests using GitHub CLI (gh), including CI checks, CodeRabbit reviews, stacked PRs, and branch protection.

Core Principles

  1. Never Work on Main - All work must happen on feature/fix/chore branches
  2. Auto-Assignment - Always assign PRs to the current user after creation
  3. Prevent Terminal Buffering - Use echo wrappers for gh commands
  4. Conventional Commits - Follow conventional commit format for all commits

Skill Contents

Sections

Available Resources

references/ - Detailed documentation


Workflow Overview

PhaseDescriptionReference
Branch SetupCreate feature branches, never commit to mainreferences/branch-protection.md
PR CreationCreate draft PRs with proper formattingreferences/pr-creation.md
CI & ReviewsMonitor CI, respond to CodeRabbitreferences/coderabbit-integration.md
CommitsUse conventional commit formatreferences/commit-formats.md

Quick Reference

Branch Naming Convention

{type}/{JIRA-KEY}-{description}
  • feat/ - New features
  • fix/ - Bug fixes
  • chore/ - Maintenance
  • docs/ - Documentation
  • refactor/ - Code restructuring

Prevent Terminal Buffering

# Always use echo wrapper for gh commands
echo "Checking..." ; gh pr checks 123 --repo owner/repo ; echo "Done"

Create and Assign PR

CURRENT_USER=$(gh api user --jq '.login')

PR_URL=$(gh pr create --draft \
    --title "[JIRA-KEY] fix(security): description" \
    --body "## Summary..." \
    --repo owner/repo 2>&1)

PR_NUMBER=$(echo "$PR_URL" | grep -oE '[0-9]+$')
gh pr edit $PR_NUMBER --repo owner/repo --add-assignee "$CURRENT_USER"

Stacked PRs

For dependent changes, use stacked PRs with proper visualization:

PR Title Format

[JIRA-KEY] type(scope): description (PR N/M)

Stack Visualization (in PR Description)

## PR Stack

| # | PR | Title | Status |
|---|-----|-------|--------|
| 1 | #78 | PNPM migration | Merged |
| 2 | **#79** | Shell to JS | This PR |
| 3 | #80 | Skills content | Depends on #79 |

Merge Flow (Not Rebase)

# After fixing issues in PR #79
git checkout feat/pr-80-branch
git merge feat/pr-79-branch --no-edit
git push origin feat/pr-80-branch
# Repeat for subsequent PRs in stack

See .claude/skills/stacked-prs for complete stacked PR workflows.

CodeRabbit Integration

Key Requirements

  1. All CI checks must pass before marking ready
  2. Address all CodeRabbit comments including nitpicks
  3. CodeRabbit approves automatically after addressing feedback

Co-Author for CodeRabbit Fixes

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

See .claude/skills/coderabbit-workflow for detailed patterns.

References

ReferenceContent
references/branch-protection.mdBranch naming, never commit to main
references/pr-creation.mdPR creation with auto-assignment
references/coderabbit-integration.mdCodeRabbit status checks and thread replies
references/commit-formats.mdCommit message templates with attribution
references/troubleshooting.mdCommon issues and solutions

Best Practices

  1. Auto-assign PRs to current user using gh api user --jq '.login'
  2. Include Jira key in branch names, commits, and PR titles
  3. Always use echo wrapper for gh commands to prevent buffering
  4. Always specify --repo owner/repo to avoid directory context issues
  5. Use GraphQL API for review threads, comments, and replies
  6. Work on other tasks while CI runs - Don't block on CodeRabbit reviews

Skill Dependencies

SkillPurpose
coderabbit-workflowThread replies, comment export, local CLI reviews
jira-workflowTicket creation and Jira key integration
stacked-prsStacked PR management and merge workflows

Related

  • .claude/skills/coderabbit-workflow - Detailed CodeRabbit workflow patterns
  • .claude/skills/jira-workflow - Jira ticket workflow
  • .claude/skills/stacked-prs - Stacked PR management

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

27.53%
按下载量换算68

OpenCode

19.7%
按下载量换算48

Antigravity

16.98%
按下载量换算42

windsurf

13.06%
按下载量换算32

Codex

8%
按下载量换算20

Gemini CLI

3.09%
按下载量换算8

安全审计

暂无安全审计结果可展示。

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add bitsoex/bitso-java --skill "pr-lifecycle" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills