AgentStack
SKILL verified MIT Self-run

Build

skill-aretedriver-ai-skills-build · by AreteDriver

Build and install the project in development mode. Handles venv creation and editable installs. Invoke with /build.

No reviews yet
0 installs
8 views
0.0% view→install

Install

$ agentstack add skill-aretedriver-ai-skills-build

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Build? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Build Skill

Build and install the project for development.

Usage

/build           # Install in dev mode
/build --clean   # Clean and reinstall
/build --prod    # Build distribution

Process

  1. Setup virtual environment

```bash # Create venv if not exists [ -d .venv ] || python3 -m venv .venv

# Activate source .venv/bin/activate ```

  1. Install dependencies

```bash # Upgrade pip pip install --upgrade pip

# Install in editable mode with dev deps pip install -e ".[dev]" # Or without dev deps pip install -e . ```

  1. Verify installation

```bash # Check package is installed pip show

# Run quick test python -c "import ; print(.__version__)" ```

Quick Commands

# Full setup from scratch
python3 -m venv .venv && source .venv/bin/activate && pip install -e ".[dev]"

# Just reinstall
pip install -e . --force-reinstall

# Build distribution
pip install build && python -m build

# Check what would be installed
pip install -e . --dry-run

Build Distribution

# Build wheel and sdist
pip install build
python -m build

# Output in dist/
ls dist/
# package-1.0.0-py3-none-any.whl
# package-1.0.0.tar.gz

# Test install from wheel
pip install dist/*.whl

Troubleshooting

  • No pyproject.toml: Create one or use setup.py
  • Missing deps: Check [project.dependencies] in pyproject.toml
  • Import errors after install: Try pip install -e . --force-reinstall
  • Conflicting versions: pip install --upgrade-strategy eager -e .

Output

Installing: my-package (editable)
Successfully installed my-package-1.0.0 dep1-2.0 dep2-3.0

Installed entry points:
  my-cli = my_package.cli:main

Ready for development!

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.