build

Solid

Builds project with auto-detected toolchain (npm, poetry, cargo, go, flutter, Docker). Triggers: build, compile, bundle, produce artifacts.

AI & Automation 155 stars 19 forks Updated 2 days ago MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
73
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Build Project $ARGUMENTS Build the current project. ## Project context - Project config: !`cat package.json 2>/dev/null || cat pyproject.toml 2>/dev/null || echo "unknown"` ## Auto-Detection Run the bundled script to detect build system: ```bash python3 ${CLAUDE_SKILL_DIR}/scripts/detect-build.py [dev|prod|docker] ``` ## Usage ``` /build [target] ``` ## What This Command Does 1. **Detects** project type 2. **Runs** appropriate build command 3. **Reports** build status ## Build Commands by Project Type | Project Type | Build Command | |--------------|---------------| | Node.js | `npm run build` or `pnpm build` | | Python | `poetry build` or `pip install -e .` | | Flutter | `flutter build` | | Go | `go build ./...` | | Rust | `cargo build --release` | | Docker | `docker compose build` | ## Output Format ```markdown ## Build Report ### Status: Success / Failed ### Build Details - **Project**: [name] - **Type**: [type] - **Command**: [command used] - **Duration**: [time] ### Artifacts - [artifact 1] - [artifact 2] ### Warnings - [warning if any] ### Errors - [error if any] ``` ## Targets | Target | Description | |--------|-------------| | `dev` | Development build | | `prod` | Production build | | `docker` | Docker image build | | `all` | Build all targets | ## MANDATORY: Documentation Update After build configuration changes, update documentation: ### When to Update - Build config changes -> Update build docs - New dependencies -> Update requirements d...

Details

Author
softspark
Repository
softspark/ai-toolkit
Created
2 months ago
Last Updated
2 days ago
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category