python-feature-lifecycle
Installation
SKILL.md
Python Feature Lifecycle
Two lifecycle levels
Agent Framework uses lifecycle at two different levels:
- Package lifecycle — the maturity of the package as a whole
- Feature lifecycle — the maturity of a specific API or feature inside that package
These are related, but they are not the same thing.
- The package stage is the default for everything in the package.
- Feature-stage decorators are only for exceptions when a feature is behind the package's default stage.
- Do not decorate every class or function just because the package is experimental or release candidate.
Important default
If a package is still in beta / experimental preview, all public APIs in that package are experimental by default.
Related skills