Add prerequisite install script for Python deps (self-contained skill)
Best use case
Add prerequisite install script for Python deps (self-contained skill) is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Teams using Add prerequisite install script for Python deps (self-contained skill) should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/0100/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How Add prerequisite install script for Python deps (self-contained skill) Compares
| Feature / Agent | Add prerequisite install script for Python deps (self-contained skill) | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
This skill provides specific capabilities for your AI agent. See the About section for full details.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Context The skill is script-heavy and evolving fast. When Python dependencies are missing, agents currently discover failures late (mid-command) and then waste tokens installing packages ad-hoc. This also reduces reproducibility across machines. # Goal Provide a one-shot, stdlib-only bootstrap script that: - creates a local venv, - installs the self-contained skill package (editable), - optionally installs heavier indexing/embedding dependencies. # Non-Goals - Do not implement a server runtime. - Do not require users to maintain a separate `requirements.txt`. - Do not install anything globally; keep installs within a repo-local venv. # Approach - Add `skills/kano-agent-backlog-skill/scripts/dev/install_prereqs.py` (stdlib-only). - Default behavior: create `.venv/` and install `skills/kano-agent-backlog-skill` with `[dev]` extras. - Optional flag: `--with-embeddings` to install embedding/FAISS deps (best-effort). - Document the entrypoint in repo `README.md` and `AGENTS.md`. # Alternatives - Let scripts fail and ask the agent to install missing deps (current; wastes tokens). - Commit a frozen lockfile and require exact sync (too heavy for pre-alpha demo). # Acceptance Criteria - A single command exists that creates a venv and installs required deps for the skill scripts. - The command is documented in `README.md` and `AGENTS.md`. - The script uses only stdlib so it can run before any dependencies are installed. # Risks / Dependencies - Some embedding deps are platform-dependent; keep them optional and best-effort. # Worklog 2026-01-10 02:05 [agent=codex] Planned: add a one-shot script to create venv and install required Python deps so agents don't waste tokens installing ad-hoc. 2026-01-10 02:11 [agent=codex] Ready: bootstrap script and docs are specified with acceptance criteria. 2026-01-10 02:11 [agent=codex] Done: added stdlib-only install script and documented usage in README.md and AGENTS.md.
Related Skills
adb-magisk-installer
Complete Magisk system installation - from initial app setup to full system integration
Acorn Installation
Install and set up the Acorn theorem prover CLI. Use when the environment doesn't have Acorn installed or when the user needs to set up Acorn for the first time.
absinthe-subscriptions
Use when implementing real-time GraphQL subscriptions with Absinthe. Covers Phoenix channels, PubSub, and subscription patterns.
a11y-self-check
Proactively validates Claude Code's own generated HTML/JSX/TSX output for accessibility before presenting to users. Use this skill automatically when generating UI code to ensure WCAG 2.1 AA compliance.
Python JSON
UTF-8 JSON file I/O utilities to avoid Windows encoding issues (CP-1252 vs UTF-8)
Build Script-Execution Skill
Create a skill that orchestrates the write-execute-analyze loop to autonomously process data. Learn to implement error recovery, iterate toward robust solutions, and test your skill across diverse input scenarios. This is where specification-driven development meets real problem-solving.
Backend Python Expert
专注于 Python 后端开发,涵盖 FastAPI、异步编程和性能优化。
wolf-scripts-agents
Agent coordination, orchestration, and multi-agent workflow management scripts
whisper-transcribe
Transcribes audio and video files to text using OpenAI's Whisper CLI, enhanced with contextual grounding from local markdown files for improved accuracy.
grail-miner
This skill assists in setting up, managing, and optimizing Grail miners on Bittensor Subnet 81, handling tasks like environment configuration, R2 storage, model checkpoint management, and performance tuning.
thor-skills
An entry point and router for AI agents to manage various THOR-related cybersecurity tasks, including running scans, analyzing logs, troubleshooting, and maintenance.
chrome-debug
This skill empowers AI agents to debug web applications and inspect browser behavior using the Chrome DevTools Protocol (CDP), offering both collaborative (headful) and automated (headless) modes.