build
SolidBuilds 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
Quality Score: 93/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
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
AI & Automation Solid
build
build
40,440 Updated today
sickn33 AI & Automation Listed
build-and-test
Install dependencies, run type checking, lint, tests, and build the project. Use after making code changes to verify nothing is broken.
1 Updated today
morganmuli AI & Automation Listed
build
Configure build script and run it
0 Updated today
AnotherSava