MA

managing-devops-pipeline

Automates interaction with BlueKing pipelines, including checking history, status, and triggering builds.

Install

mkdir -p .claude/skills/managing-devops-pipeline && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/3018" && unzip -o skill.zip -d .claude/skills/managing-devops-pipeline && rm skill.zip

Installs to .claude/skills/managing-devops-pipeline

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

通过 MCP 管理 BK-CI 流水线构建时使用,例如查询构建历史、获取启动参数、查看构建状态和在确认后触发构建。当用户要操作现有流水线而不是修改代码实现时优先使用。
83 charsno explicit “when” trigger
Intermediate

Key capabilities

  • Query pipeline build history
  • Retrieve build start parameters
  • View current build status
  • Parse project and pipeline IDs from URLs
  • Trigger new builds after user confirmation

How it works

The skill focuses on safe operations of existing BK-CI pipeline builds by requiring specific identifiers and user confirmation for actions that initiate builds.

Inputs & outputs

You give it
User request for pipeline information or build initiation
You get back
Pipeline build history, start parameters, build status, or a triggered build

When to use managing-devops-pipeline

  • Check the status of a recent CI/CD build
  • Retrieve input parameters for a specific pipeline
  • Trigger a new build after reviewing parameters
  • List recent build history for a project

About this skill

蓝盾流水线管理

适用场景

  • 查询流水线构建历史
  • 获取启动参数并准备触发构建
  • 查看构建状态与最近执行结果
  • 根据现有流水线链接解析 projectIdpipelineId

不适用场景

  • 修改流水线定义、模板或插件逻辑
  • 讨论流水线架构实现
  • 未经用户确认直接发起有副作用的构建操作

快速指导

  1. 这个 skill 关注的是“如何安全地操作现有流水线构建”,不是流水线设计指南。
  2. 使用前先确认三个标识:
    • projectId:项目英文名
    • pipelineId:以 p- 开头的流水线 ID
    • buildId:以 b- 开头的构建 ID
  3. 触发构建的最短链路是:先拿启动参数,再向用户展示完整入参并获得确认,最后才真正启动。
  4. 查询类操作通常直接读取即可;启动类操作必须明确区分“查看参数”和“执行触发”。
  5. 具体工具调用与示例 payload 不放在主文件,按需进入对应 reference/
  6. 如果问题已经转向流水线模型、模板或执行链路,切到对应模块 skill。

高信号规则

  • 所有有副作用的构建启动操作,都必须先获得用户明确确认
  • 主 skill 只负责告诉模型“什么时候查、什么时候问、什么时候才能启动”
  • projectIdpipelineIdbuildId 是最基础的操作上下文,缺一不可
  • 通过 URL 解析标识时,应先确认链接确实是流水线详情页

关键陷阱

  • 把“获取启动参数”误当成“已经允许启动构建”
  • 没展示完整入参就直接触发构建
  • 把示例 payload 和记忆性细节塞进主文件,导致上下文冗余

延伸阅读

  • 获取构建历史:reference/build-list.md
  • 获取启动参数:reference/build-startinfo.md
  • 查看构建状态:reference/build-status.md
  • 启动构建:reference/build-start.md
  • 如果你在改流水线定义:再看 process-module-architecture

When not to use it

  • Modifying pipeline definitions or templates
  • Discussing pipeline architecture
  • Initiating builds without user confirmation

Limitations

  • Requires projectId, pipelineId, and buildId for most operations
  • Does not modify pipeline definitions, templates, or plugin logic
  • Does not support direct initiation of builds without user confirmation

How it compares

This skill provides a structured workflow for interacting with existing BK-CI pipelines, unlike manual command-line execution or direct API calls.

Compared to similar skills

managing-devops-pipeline side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
managing-devops-pipeline (this skill)23moNo flagsIntermediate
bazel-build-optimization142moNo flagsAdvanced
bash-defensive-patterns32moNo flagsIntermediate
cicd-automation-workflow-automate34moNo flagsIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

More by TencentBlueKing

View all by TencentBlueKing

project-module-architecture

TencentBlueKing

Project 项目管理模块架构指南,涵盖项目 CRUD、成员管理、项目配置、标签管理、项目迁移。当用户开发项目管理功能、处理项目成员、配置项目属性或实现项目相关逻辑时使用。

612

artifactory-module-architecture

TencentBlueKing

Artifactory 制品库模块架构指南,涵盖制品上传下载、存储后端适配、制品元数据、清理策略、权限控制。当用户开发制品库功能、处理制品存储、配置清理策略或实现制品管理时使用。

419

microservice-infrastructure

TencentBlueKing

微服务基础设施指南,涵盖条件配置、事件驱动架构、服务间通信、国际化与日志等微服务架构的核心基础设施。当用户实现服务间调用、配置多环境、实现异步通信、处理国际化或规范日志输出时使用。

411

frontend-vue-development

TencentBlueKing

前端 Vue 开发规范,涵盖 Vue 2/3 组件开发、Vuex 状态管理、路由配置、组件通信、样式规范、国际化。当用户进行前端开发、编写 Vue 组件、处理状态管理或实现页面交互时使用。

38

unit-testing

TencentBlueKing

单元测试编写指南,涵盖 JUnit5/MockK 使用、测试命名规范、Mock 技巧、测试覆盖率要求、TDD 实践。当用户编写单元测试、Mock 依赖、提高测试覆盖率或进行测试驱动开发时使用。

319

worker-module-architecture

TencentBlueKing

Worker 构建执行器模块架构指南,涵盖插件执行引擎、任务分发、日志上报、制品上传、Worker 生命周期。当用户开发 Worker 功能、实现插件执行、处理任务分发或优化执行器性能时使用。

37

Search skills

Search the agent skills registry