From 6dc37268810212f6abb76ba447f96bf18c74fc4b Mon Sep 17 00:00:00 2001 From: Samantha Coyle Date: Mon, 1 Jun 2026 08:56:19 -0500 Subject: [PATCH 1/2] chore: push random changes ive had Signed-off-by: Samantha Coyle --- .gitignore | 6 ++++++ ext/dapr-ext-strands/AGENTS.md | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5dadf6d5b..9c5befa4f 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ dist/ downloads/ eggs/ .eggs/ +**/**/*.egg-info/ lib/ lib64/ parts/ @@ -26,6 +27,11 @@ share/python-wheels/ .installed.cfg *.egg MANIFEST +**/**/__pycache__/ +**/**/.mypy_cache/ +**/**/.pytest_cache/ +**/**/.ruff_cache/ +**/**/.venv/ # PyInstaller # Usually these files are written by a python script from a template diff --git a/ext/dapr-ext-strands/AGENTS.md b/ext/dapr-ext-strands/AGENTS.md index dc3d37ad8..505f88ab8 100644 --- a/ext/dapr-ext-strands/AGENTS.md +++ b/ext/dapr-ext-strands/AGENTS.md @@ -6,7 +6,7 @@ The Strands extension provides distributed session management for [Strands Agent ``` ext/dapr-ext-strands/ -├── pyproject.toml # Deps: dapr, strands-agents, strands-agents-tools, python-ulid, msgpack-python +├── pyproject.toml # Deps: dapr, strands-agents, python-ulid, msgpack-python ├── setup.py ├── tests/ │ └── test_session_manager.py # Unit tests with mocked DaprClient @@ -80,7 +80,6 @@ manager = DaprSessionManager.from_address( - `dapr >= 1.17.0.dev` - `strands-agents` — Strands agents framework -- `strands-agents-tools` — Strands agent tools - `python-ulid >= 3.0.0` - `msgpack-python >= 0.4.5` From 53dd01cf7102d5c0cbd9aa2caf29f714d7943885 Mon Sep 17 00:00:00 2001 From: Sam Date: Mon, 1 Jun 2026 09:12:28 -0500 Subject: [PATCH 2/2] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Sam --- ext/dapr-ext-strands/AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/dapr-ext-strands/AGENTS.md b/ext/dapr-ext-strands/AGENTS.md index 505f88ab8..59799d3f4 100644 --- a/ext/dapr-ext-strands/AGENTS.md +++ b/ext/dapr-ext-strands/AGENTS.md @@ -7,8 +7,8 @@ The Strands extension provides distributed session management for [Strands Agent ``` ext/dapr-ext-strands/ ├── pyproject.toml # Deps: dapr, strands-agents, python-ulid, msgpack-python -├── setup.py ├── tests/ + │ └── test_session_manager.py # Unit tests with mocked DaprClient └── dapr/ext/strands/ ├── __init__.py # Exports: DaprSessionManager