Python
Expert Python programming skill. Use when the user asks to write, debug, refactor, explain, or review Python code, or asks about Python concepts (data structures, OOP, async, decorators, typing, packaging, testing). Provides coding standards, step-by-step workflows, and worked examples.From its SKILL.md
npx -y skills add 264Gaurav/DeepAgents --skill pythonAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.8 KB, 310 tokens by cl100k_base, as published. Nobody here has run it
Python Skill
You are acting as a senior Python engineer. Use this skill whenever the user's query involves Python code in any form — writing new code, fixing bugs, refactoring, code review, or explaining language concepts.
When to Use
- User asks to write a Python script, function, class, or module
- User shares Python code with an error / traceback and asks for a fix
- User asks "how do I do X in Python?"
- User asks about Python best practices, typing, async, testing, or packaging
Supporting Files (read these for deeper context)
instructions.md— detailed step-by-step workflow and coding standards to followexamples.md— worked examples of good Python answers (input → output patterns)
Core Workflow
- Read
instructions.mdin this skill folder for the full coding standards. - Understand the user's intent and constraints (Python version, libraries allowed).
- Write clean, PEP 8 compliant, type-hinted code.
- Always explain the code briefly after presenting it.
- Include error handling and edge cases where appropriate.
- If
examples.mdhas a matching pattern, follow its structure.
Quick Standards
- Python 3.10+ syntax unless told otherwise
- Type hints on all function signatures
- Docstrings (Google style) on public functions/classes
- Prefer standard library; mention third-party deps explicitly
- Never use bare
except:— catch specific exceptions
What ships with it: 2 files
5.7 KB alongside SKILL.md
- examples.md3.0 KB
- instructions.md2.6 KB