python-development Skill
Coding standards, conventions, and patterns for developing Python code in the Agent Framework repository. Use this when writing or modifying Python source files in the python/ directory. Published by microsoft in agent-framework.
What is python-development Skill?
Coding standards, conventions, and patterns for developing Python code in the Agent Framework repository. Use this when writing or modifying Python source files in the python/ directory. Published by microsoft in agent-framework. 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
- Writing
- Writing use cases
Technical details
- Install or run with Copy skill directory
When to use python-development Skill
- Use it for writing.
Built with
Editorial notes
Source
- Creator: microsoft
- Repository: microsoft/agent-framework
- Skill file: python/.github/skills/python-development/SKILL.md
What it does
Coding standards, conventions, and patterns for developing Python code in the Agent Framework repository. Use this when writing or modifying Python source files in the python/ directory.
Skill instructions
Python Development Standards File Header Every .py file must start with: python Copyright (c) Microsoft. All rights reserved. Type Annotations - Always specify return types and parameter types - Use Type | None instead of Optional[Type] - Use from future import annotations to enable postponed evaluation - Use suffix T for TypeVar names: ChatResponseT = TypeVar("ChatResponseT", bound=ChatResponse) - Use Mapping instead of MutableMapping for read-only input parameters - Prefer type: ignore[...] over unnecessary casts, or isinstance checks, when these are internally called and executed methods But make sure the ignore is specific for both mypy and pyright so that we don't miss other mistakes - Internal private helpers may be used across agentframework modules when intentional; use a targeted pyright: ignore[reportPrivateUsage] instead of making the helper public just to satisfy pyright. - Do not add trivial pass-through or one-line helper functions solely to appease typing. Prefer targete
Explore related resources
Frequently asked questions
What is python-development?
python-development is a open-source AI agent skill with Copy skill directory. Coding standards, conventions, and patterns for developing Python code in the Agent Framework repository. Use this when writing or modifying Python source files in the python/ directory.
Who is python-development best for?
python-development is best for reusing agent instructions, scripts, and references, writing workflows.
How do I install python-development?
Install or run python-development using Copy skill directory. Check python-development for the latest setup command.
Is python-development actively maintained?
python-development may need a closer maintenance check before production use.
Auto-fetched from GitHub.