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-bundle-skills.
Decision snapshot
Is this a fit?
Data analysis, Writing, Includes SKILL.md, Reusable instructions
Compatibility not yet detected.
Permission behavior not yet detected.
Copy skill directory
2 months ago · MIT license
No specific cautions were detected. Review the source and requested permissions before installing.
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-bundle-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. See how SkillIndex evaluates profiles.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Data analysis
- Writing
- Data analysis use cases
- Writing use cases
Declared skill metadata
- Declared license: MIT
- Source file: modules/tool-skills/tests/fixtures/skills/python-standards/SKILL.md
These fields retain source and confidence evidence from the indexed SKILL.md.
Compatibility and setup
- 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-bundle-skills
- Skill file: modules/tool-skills/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
Verified compatibility and discovery
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.
Project health auto-fetched from the source repository.
Maintain this resource?
Review this source-backed profile, send a correction with evidence, or link to it from your documentation. Claims verify your relationship to the project; profile facts still require source evidence and editorial review.