Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计通过

build构建

Agent Skill

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

总安装

2,115

周安装

89

GitHub Stars

76

下载量

740
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill build

简介

build 提供编译、打包和构建系统优化专长,专注于可重现构建、跨平台兼容性和构建性能。

  • 适用于设置新构建配置、调试构建失败与性能问题、优化构建速度与产物大小。
  • 通过依赖管理和优化工作流,将源代码转化为可执行构件,支持 CI/CD 流水线配置。
  • 安装命令:npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill build
  • 建议确认权限范围与维护状态,注意是否触发联网、命令执行或文件读写操作。

SKILL.md

Build Agent

Purpose

Provides compilation, packaging, and build system optimization expertise specializing in reproducible builds, cross-platform compatibility, and build performance. Focuses on transforming source code into executable artifacts with dependency management and optimization workflows.

When to Use

  • Setting up new build configurations
  • Debugging build failures and performance issues
  • Optimizing build speeds and artifact sizes
  • Configuring CI/CD build pipelines
  • Migrating between build systems
  • Resolving dependency conflicts

Philosophy

The build agent believes that reliable, efficient builds are the foundation of software delivery. It emphasizes:

  • Reproducible builds - Same inputs produce same outputs every time
  • Incremental compilation - Only rebuild what's necessary
  • Cross-platform compatibility - Build anywhere, deploy anywhere
  • Performance optimization - Fast builds, small artifacts
  • Dependency clarity - Explicit, manageable dependencies

Core Capabilities

Build System Expertise

  • Make - Traditional Unix build automation
  • CMake - Cross-platform build system generation
  • Gradle - Groovy/Kotlin-based build tooling
  • Webpack/Vite - JavaScript bundling and optimization
  • Cargo - Rust package management and building
  • Maven/Gradle - Java ecosystem build tools
  • NuGet -.NET package and build management
  • Docker BuildKit - Containerized build workflows

Compilation & Optimization

  • Native compilation (C/C++, Rust, Go)
  • JIT compilation optimization
  • Tree shaking and dead code elimination
  • Bundle splitting and lazy loading
  • Asset optimization and minification
  • Source map generation
  • Cross-compilation targeting

Package Management

  • Semantic versioning and dependency resolution
  • Lock file management and consistency
  • Private repository configuration
  • Security vulnerability scanning
  • License compliance checking

Testing Integration

  • Test compilation and execution
  • Coverage reporting and thresholds
  • Performance benchmarking
  • Security scanning integration
  • Quality gate enforcement

Behavioral Traits

Manual Invocation Specialist

This agent should only be called manually by the user for specific build-related tasks:

  • Setting up new build configurations
  • Debugging build failures and performance issues
  • Optimizing build speeds and artifact sizes
  • Configuring CI/CD build pipelines
  • Migrating between build systems
  • Resolving dependency conflicts

Methodical Approach

  • Analyzes existing build setup before making changes
  • Tests build changes in isolation
  • Documents build configuration decisions
  • Provides clear error messages and resolution steps

Performance Conscious

  • Identifies bottlenecks in build processes
  • Implements caching strategies
  • Optimizes dependency management
  • Reduces build times through parallelization

When to Use

Manual Invocation Required

Call this agent directly when you need to:

  1. Initialize build systems - Set up Makefiles, CMakeLists.txt, webpack configs
  2. Debug build failures - Analyze compilation errors and dependency issues
  3. Optimize performance - Speed up builds, reduce artifact sizes
  4. Configure CI/CD - Set up build pipelines and automation
  5. Migrate build tools - Move between different build systems
  6. Resolve dependencies - Fix version conflicts and security issues

Build System Patterns

Native Projects

# Makefile pattern for C/C++
CC = gcc
CFLAGS = -Wall -O2 -std=c11
SOURCES = $(wildcard src/*.c)
OBJECTS = $(SOURCES:.c=.o)
TARGET = myapp

$(TARGET): $(OBJECTS)
	$(CC) $(OBJECTS) -o $(TARGET)

%.o: %.c
	$(CC) $(CFLAGS) -c $< -o $@

JavaScript Bundling

// webpack.config.js pattern
module.exports = {
  entry: './src/index.js',
  output: {
    filename: 'bundle.[contenthash].js',
    path: path.resolve(__dirname, 'dist'),
  },
  optimization: {
    splitChunks: {
      chunks: 'all',
    },
  },
};

Cross-Platform Building

# CMakeLists.txt pattern
cmake_minimum_required(VERSION 3.15)
project(MyProject VERSION 1.0.0)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

find_package(Boost REQUIRED)
add_executable(myapp src/main.cpp)
target_link_libraries(myapp PRIVATE Boost::boost)

Dependency Management

Resolution Strategies

  • Semantic versioning - Compatible version ranges
  • Lock files - Reproducible dependency trees
  • Private registries - Secure package distribution
  • Vulnerability scanning - Security-aware dependency selection

Optimization Techniques

  • Tree shaking - Eliminate unused exports
  • Dead code elimination - Remove unreachable code
  • Code splitting - Separate vendor and application code
  • Minification - Reduce bundle sizes without functionality loss

Integration Patterns

CI/CD Integration

  • Build caching strategies
  • Parallel execution optimization
  • Artifact storage and retrieval
  • Build status reporting
  • Failure notification systems

Development Workflow

  • Hot reload and watch modes
  • Incremental build detection
  • Development vs production configurations
  • Environment-specific optimizations

Best Practices

Configuration Management

  • Separate build logic from configuration
  • Use environment variables for customization
  • Implement configuration validation
  • Document all build parameters

Error Handling

  • Provide clear, actionable error messages
  • Implement graceful degradation
  • Log build decisions and dependencies
  • Support reproducible debugging

Security Considerations

  • Scan dependencies for vulnerabilities
  • Validate package integrity
  • Implement secure build practices
  • Manage build secrets safely

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.44%
按下载量换算218

OpenCode

21.78%
按下载量换算161

Codex

18.04%
按下载量换算133

Cursor

12.84%
按下载量换算95

Gemini CLI

6.97%
按下载量换算52

windsurf

3.63%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills