Description
Thebuild-project prompt provides instructions for a standard build workflow: sync files, install dependencies, and run tests.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
source | string | Yes | - | Local directory path to sync |
install_cmd | string | No | pip install -e . | Dependency installation command |
test_cmd | string | No | pytest | Test execution command |
Generated Instructions
When invoked with:Example Usage
Standard Python Project
With Custom Commands
Poetry Project
Implementation Notes
The agent should:-
Sync files with
rsync: - Check for Python image, import if needed
-
Install dependencies with
run: -
Run tests with
run: - Report test results (exit code, stdout, stderr)
See Also
- multi-stage-build - Complex builds with checkpoints
- sync-and-run - Simple file sync and execution
- install-packages - Just install packages