npx skills add smithery/vaayne --skill python-script
yurifrl/cly · Archived
python-script
Creates standalone Python scripts using uv with PEP 723 inline script metadata.
Installation
npx skills add yurifrl/cly --skill python-script
Stronger alternatives
This repository is archived — consider an actively maintained alternative.
Build terminal UIs with Bubbletea, Bubbles, Lipgloss, and Huh. Use when creating TUI applicatio…
80 installsBuild modular CLI applications with Cobra framework. Use when structuring CLI commands, impleme…
15 installsGo language consultant providing guidance on best practices, testing with testify, concurrency …
13 installsCreate new demo or utility modules following CLY project patterns. Use when adding TUI demonstr…
12 installsSimilar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Deploy Python (Flask/Django/FastAPI) code to Azure App Service Linux.
171.2K installsGenerate a complete MCP server project in Python with tools, resources, and proper configuration
10.3K installsGenerate production-ready Python code using Dataverse SDK with error handling, optimization, an…
9.8K installsGenerate production code for Dataverse SDK using advanced patterns, error handling, and optimiz…
9.2K installsGenerate complete solutions for specific Dataverse SDK use cases with architecture recommendati…
8.8K installsAlso in this package
Other skills from yurifrl/cly · top by installs.
npx skills add yurifrl/cly
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md772 B -
docs
SUMMARY.md100 B
History
- First seen on skills.sh
- First recorded snapshot · 1 installs
SKILL.md
Python Script with uv
Template
#!/usr/bin/env -S uv run --quiet --script
# /// script
# requires-python = ">=3.11"
# dependencies = ["dep1", "dep2"]
# ///
"""Brief description."""
import argparse
def main():
parser = argparse.ArgumentParser(description="Description")
# args...
args = parser.parse_args()
# implementation...
if __name__ == "__main__":
main()
Rules
- Shebang:
#!/usr/bin/env -S uv run --quiet --script - PEP 723 block with
requires-pythonanddependencies - Only list external dependencies (not stdlib)
- Use
argparsefor CLI - Always use
if name == "main": main()