prepare-environment
run-python
run-shell
sync-and-run
install-packages
parallel-tasks
build-project
debug-failure
inspect-image
multi-stage-build
Quick Reference
| Prompt | Description | Key Parameters |
|---|---|---|
| prepare-environment | Prepare container environment with CHECK-PREPARE-EXECUTE flow | task, base, project, packages |
| run-python | Run Python code in isolated container | code |
| run-shell | Run shell command in isolated container | command, image |
| sync-and-run | Sync local files and run command | source, command, image |
| install-packages | Install packages and create reusable image | packages, image |
| parallel-tasks | Run multiple tasks in parallel | tasks, image |
| build-project | Build project: install deps and run tests | source, install_cmd, test_cmd |
| debug-failure | Diagnose failed operation | operation_id |
| inspect-image | Explore container image contents | image |
| multi-stage-build | Multi-stage build with rollback points | source, install_cmd, build_cmd, test_cmd |
Using Prompts
With MCP Clients
MCP-compatible clients can invoke prompts directly:Prompt Output
Prompts return structured instructions that guide the agent through:- Step-by-step workflows - Ordered operations with clear dependencies
- Tool selection - Which Contree tools to use and when
- Parameter guidance - Correct values for each tool call
- Best practices - Following the CHECK-PREPARE-EXECUTE pattern
Categories
Environment Setup
- prepare-environment - Full workflow with environment reuse
- install-packages - Install and tag for reuse
Code Execution
- run-python - Quick Python execution
- run-shell - Shell command execution
- sync-and-run - Local files + execution
Building and Testing
- build-project - Standard build + test workflow
- multi-stage-build - Complex builds with checkpoints
Operations
- parallel-tasks - Concurrent execution
- debug-failure - Error diagnosis
- inspect-image - Image exploration