uv-globalProvision and reuse a global uv environment for ad hoc Python scripts.
Install via ClawdBot CLI:
clawdbot install guoqiao/uv-globalCreate and reuse a global uv environment at ~/.uv-global so you can install Python dependencies for quick, ad hoc scripts without polluting the system interpreter.
Lightning-fast setup that keeps one shared virtual environment ready for temporary tasks.
Use this skill when the user needs Python packages (data processing, scraping, etc.) that are not preinstalled and a full project-specific environment would be overkill. Skip this if the user explicitly wants system Python or a project-local venv.
uv available. If missing, you need either brew (macOS/Linux) or curl to install it.
bash ${baseDir}/install.sh
The script will:
uv via brew (macOS/Linux) or the official curl installer if uv is absent~/.uv-global~/.uv-global/.venv~/.uv-global/.venv/bin[Optional]prepend the venv bin to your PATH so python defaults to the global env and shims are available:
export PATH=~/.uv-global/.venv/bin:$PATH
For any quick Python script that needs extra dependencies:
# install required packages into the global env
uv --project ~/.uv-global add <pkg0> <pkg1> ...
# write your code
touch script.py
# run your script using the global env
uv --project ~/.uv-global run script.py
Tips:
--project ~/.uv-global flag ensures they run with the global env.uv --project ~/.uv-global pip list.Generated Mar 1, 2026
Data scientists can quickly test new Python libraries for data analysis or visualization without setting up project environments. They install packages like pandas or matplotlib into the global UV environment to run exploratory scripts on sample datasets.
Developers can install scraping libraries like BeautifulSoup or Scrapy into the global environment to run one-off data extraction scripts. This avoids polluting system Python while maintaining quick access to scraping tools for various websites.
DevOps engineers use the global UV environment to run infrastructure automation scripts that require specific Python packages. They can quickly install boto3 for AWS operations or paramiko for SSH tasks without managing multiple project environments.
Researchers and students install scientific computing packages like numpy or scipy into the global environment to test algorithms and run computational experiments. This provides a clean Python environment separate from system packages for reproducible results.
Software developers install HTTP client libraries like requests or aiohttp into the global environment to test API endpoints and write integration scripts. This allows quick validation of third-party services without creating dedicated project structures.
Package UV Global as part of a premium Python development toolkit with advanced features like dependency conflict resolution or environment snapshotting. Offer basic functionality for free while charging for enterprise features and support.
Integrate UV Global into a larger platform that includes code snippet management, dependency analysis, and script sharing. Monetize through team subscriptions that provide collaboration features and centralized environment management.
Offer professional services to customize UV Global for specific organizational needs, such as integrating with existing CI/CD pipelines or creating organization-specific package repositories. Provide training and ongoing support contracts.
💬 Integration Tip
Add the global environment's bin directory to your PATH to make Python and installed packages available system-wide, enabling direct command execution without specifying the project path each time.
Advanced filesystem operations - listing, searching, batch processing, and directory analysis for Clawdbot
Perform advanced filesystem tasks including listing, recursive searching by name or content, batch copying/moving/deleting files, and analyzing directory siz...
Essential SSH commands for secure remote access, key management, tunneling, and file transfers.
Extract text from PDF files for LLM processing
The directory for AI agent services. Discover tools, platforms, and infrastructure built for agents.
Advanced filesystem operations - listing, searching, batch processing, and directory analysis for Clawdbot