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

configure-release-please请配置发布

Agent Skill

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

总安装

1,322

周安装

54

GitHub Stars

28

下载量

428
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill configure-release-please

简介

用于配置和管理基于 release-please 的自动化发布流程。

  • 适合需要标准化版本号、变更日志(CHANGELOG)和发布节奏的项目。
  • 支持与 GitHub Actions 集成,实现从代码提交到发布的自动化。
  • 安装前需确认是否包含系统命令执行权限,避免误触发生产环境操作。
  • configure-release-please 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/configure:release-please

Check and configure release-please against project standards.

When to Use This Skill

Use this skill when...Use another approach when...
Setting up release-please for a new project from scratchManually editing CHANGELOG.md or version fields — use conventional commits instead
Auditing existing release-please configuration for complianceCreating a one-off release — use gh release create directly
Upgrading release-please-action to the latest versionDebugging a failed release PR — check GitHub Actions logs directly
Ensuring workflow uses correct token (MY_RELEASE_PLEASE_TOKEN)Managing npm/PyPI publishing — configure separate publish workflows
Adding a new package to a monorepo release-please configurationWriting conventional commit messages — use /git:commit skill

Context

  • Workflow file:!find.github/workflows -maxdepth 1 -name 'release-please*'
  • Config file:!find. -maxdepth 1 -name \'release-please-config.json\'
  • Manifest file:!find. -maxdepth 1 -name \'.release-please-manifest.json\'
  • Package files:!find. -maxdepth 1 \(-name 'package.json' -o -name 'pyproject.toml' -o -name 'Cargo.toml' -o -name 'go.mod' \)
  • Workflows dir:!find. -maxdepth 1 -type d -name \'.github/workflows\'

Skills referenced: release-please-standards, release-please-protection

Parameters

Parse from command arguments:

  • --check-only: Report status without offering fixes
  • --fix: Apply all fixes automatically

Execution

Execute this release-please configuration check:

Step 1: Fetch latest action version

Run this command to get the current release-please-action version dynamically:

curl -s https://api.github.com/repos/googleapis/release-please-action/releases/latest | jq -r '.tag_name'

References:

Step 2: Detect project type

Determine appropriate release-type from detected package files:

  • node: Has package.json (default for frontend/backend apps)
  • python: Has pyproject.toml without package.json
  • helm: Infrastructure with Helm charts
  • simple: Generic projects

Step 3: Analyze compliance

Workflow file checks:

  • Action version: googleapis/release-please-action@v4
  • Token: Uses MY_RELEASE_PLEASE_TOKEN secret (not GITHUB_TOKEN)
  • Trigger: Push to main branch
  • Permissions: contents: write, pull-requests: write

Config file checks:

  • Valid release-type for project
  • changelog-sections includes feat and fix
  • Appropriate plugins (e.g., node-workspace for Node projects)

Manifest file checks:

  • Valid JSON structure
  • Package paths match config

Step 4: Generate compliance report

Print a formatted compliance report showing file status and configuration check results. If --check-only is set, stop here.

For the report format, see REFERENCE.md.

Step 5: Apply configuration (if --fix or user confirms)

  1. Missing workflow: Create from standard template
  2. Missing config: Create with detected release-type
  3. Missing manifest: Create with initial version 0.0.0
  4. Outdated action: Update to v4
  5. Wrong token: Update to use MY_RELEASE_PLEASE_TOKEN

For standard templates, see REFERENCE.md.

Step 6: Update standards tracking

Update .project-standards.yaml:

components:
  release-please: "2025.1"

Agentic Optimizations

ContextCommand
Quick compliance check/configure:release-please --check-only
Auto-fix all issues/configure:release-please --fix
Check latest action version`curl -s https://api.github.com/repos/googleapis/release-please-action/releases/latest \jq -r '.tag_name'`
Verify config JSONjq. release-please-config.json
Verify manifest JSONjq..release-please-manifest.json
Check workflow existsfind.github/workflows -name 'release-please*'

Important Notes

  • Requires MY_RELEASE_PLEASE_TOKEN secret in repository settings
  • CHANGELOG.md is managed by release-please - never edit manually
  • Version fields in package.json/pyproject.toml are managed automatically
  • Works with conventional-pre-commit hook for commit validation

See Also

  • /configure:pre-commit - Ensure conventional commits hook
  • /configure:all - Run all compliance checks
  • release-please-protection skill - Protected file rules

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.14%
按下载量换算150

Claude

30.01%
按下载量换算128

Cursor

19.24%
按下载量换算82

Gemini CLI

9.95%
按下载量换算43

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills