python-standards Skill
Python coding standards for Amplifier including type hints, async patterns, error handling, and formatting. Use when writing Python code for Amplifier modules. Published by microsoft in amplifier-module-tool-skills.
What is python-standards Skill?
Python coding standards for Amplifier including type hints, async patterns, error handling, and formatting. Use when writing Python code for Amplifier modules. Published by microsoft in amplifier-module-tool-skills. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Data analysis
- Writing
- Data analysis use cases
- Writing use cases
Technical details
- Install or run with Copy skill directory
When to use python-standards Skill
- Use it for data analysis.
- Use it for writing.
Built with
Editorial notes
Source
- Creator: microsoft
- Repository: microsoft/amplifier-module-tool-skills
- Skill file: tests/fixtures/skills/python-standards/SKILL.md
What it does
Python coding standards for Amplifier including type hints, async patterns, error handling, and formatting. Use when writing Python code for Amplifier modules.
Skill instructions
Python Coding Standards Type Hints ALL functions must have complete type hints: python from typing import Any async def processdata(items: list[str], config: dict[str, Any]) - dict[str, Any]: """Process data items with configuration.""" results = {} for item in items: results[item] = await transform(item, config) return results Include type hints for self: python class MyClass: def init(self: "MyClass", name: str) - None: self.name = name async def process(self: "MyClass") - str: return f"Processing {self.name}" Async Patterns All I/O operations must be async: python Good async def readfile(path: Path) - str: content = path.readtext() For now, sync is OK return content Better (when using async libraries) async def readfile(path: Path) - str: async with aiofiles.open(path) as f: return await f.read() Use asyncio.gather for parallel operations: python async def processfiles(files: list[Path]) - list[dict]: tasks = [processfile(f) for f in files] return await asyncio.gather(tasks) Error H
Explore related resources
Frequently asked questions
What is python-standards?
python-standards is a open-source AI agent skill with Copy skill directory. Python coding standards for Amplifier including type hints, async patterns, error handling, and formatting. Use when writing Python code for Amplifier modules.
Who is python-standards best for?
python-standards is best for reusing agent instructions, scripts, and references, data analysis workflows, writing workflows.
How do I install python-standards?
Install or run python-standards using Copy skill directory. Check python-standards for the latest setup command.
Is python-standards actively maintained?
python-standards may need a closer maintenance check before production use.
Auto-fetched from GitHub.