forked from microsoft/amplifier-bundle-python-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundle.yaml
More file actions
31 lines (27 loc) · 1.11 KB
/
bundle.yaml
File metadata and controls
31 lines (27 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Amplifier Python Development Bundle
#
# The "Python Development Home" - comprehensive Python tooling for Amplifier.
#
# Provides:
# - Tool module: python_check() for agents
# - Hook module: Automatic checking on file write/edit
# - Agent: python-dev expert
# - Shared library: Core checking logic (ruff + pyright)
# - Composition: Includes lsp-python for code intelligence
#
# Usage:
# includes:
# - bundle: git+https://github.com/microsoft/amplifier-bundle-python-dev@main
bundle:
name: python-dev
version: 0.1.0
description: Comprehensive Python development tools with code quality, LSP, and expert agent
# Behavior bundle pattern - provides capabilities to be composed into other bundles
# NOTE: This bundle is included BY foundation, so it must NOT include foundation (circular dep)
includes:
# LSP-Python provides Python-specific code intelligence
- bundle: git+https://github.com/microsoft/amplifier-bundle-lsp-python@main
# Our Python development behavior (tool + hook + agent)
- bundle: python-dev:behaviors/python-dev
# Default behavior when using this bundle
default_behavior: python-dev-behavior