agentd 0.7.2__tar.gz → 0.7.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. {agentd-0.7.2 → agentd-0.7.3}/PKG-INFO +1 -1
  2. {agentd-0.7.2 → agentd-0.7.3}/agentd/ptc.py +6 -0
  3. {agentd-0.7.2 → agentd-0.7.3}/pyproject.toml +1 -1
  4. {agentd-0.7.2 → agentd-0.7.3}/.gitignore +0 -0
  5. {agentd-0.7.2 → agentd-0.7.3}/.python-version +0 -0
  6. {agentd-0.7.2 → agentd-0.7.3}/LICENSE +0 -0
  7. {agentd-0.7.2 → agentd-0.7.3}/README.md +0 -0
  8. {agentd-0.7.2 → agentd-0.7.3}/agentd/__init__.py +0 -0
  9. {agentd-0.7.2 → agentd-0.7.3}/agentd/app.py +0 -0
  10. {agentd-0.7.2 → agentd-0.7.3}/agentd/conversation_logger.py +0 -0
  11. {agentd-0.7.2 → agentd-0.7.3}/agentd/mcp_bridge.py +0 -0
  12. {agentd-0.7.2 → agentd-0.7.3}/agentd/microsandbox_cli_executor.py +0 -0
  13. {agentd-0.7.2 → agentd-0.7.3}/agentd/microsandbox_executor.py +0 -0
  14. {agentd-0.7.2 → agentd-0.7.3}/agentd/model/__init__.py +0 -0
  15. {agentd-0.7.2 → agentd-0.7.3}/agentd/model/config.py +0 -0
  16. {agentd-0.7.2 → agentd-0.7.3}/agentd/patch.py +0 -0
  17. {agentd-0.7.2 → agentd-0.7.3}/agentd/sandbox_runtime_executor.py +0 -0
  18. {agentd-0.7.2 → agentd-0.7.3}/agentd/tool_decorator.py +0 -0
  19. {agentd-0.7.2 → agentd-0.7.3}/config/facts.yaml +0 -0
  20. {agentd-0.7.2 → agentd-0.7.3}/config/filesystem.yaml +0 -0
  21. {agentd-0.7.2 → agentd-0.7.3}/config/ycombinator-config.yaml +0 -0
  22. {agentd-0.7.2 → agentd-0.7.3}/examples/code_interpreter.py +0 -0
  23. {agentd-0.7.2 → agentd-0.7.3}/examples/file_retrieval_complete.py +0 -0
  24. {agentd-0.7.2 → agentd-0.7.3}/examples/ptc_microsandbox.py +0 -0
  25. {agentd-0.7.2 → agentd-0.7.3}/examples/ptc_sandbox_runtime.py +0 -0
  26. {agentd-0.7.2 → agentd-0.7.3}/examples/ptc_streaming.py +0 -0
  27. {agentd-0.7.2 → agentd-0.7.3}/examples/ptc_with_mcp.py +0 -0
  28. {agentd-0.7.2 → agentd-0.7.3}/examples/ptc_with_tools.py +0 -0
  29. {agentd-0.7.2 → agentd-0.7.3}/examples/sample_document.txt +0 -0
  30. {agentd-0.7.2 → agentd-0.7.3}/logs/25026eee3cec.jsonl +0 -0
  31. {agentd-0.7.2 → agentd-0.7.3}/logs/496342c73ea3.jsonl +0 -0
  32. {agentd-0.7.2 → agentd-0.7.3}/scripts/install-microsandbox.sh +0 -0
  33. {agentd-0.7.2 → agentd-0.7.3}/test/__init__.py +0 -0
  34. {agentd-0.7.2 → agentd-0.7.3}/test/test_compare_streaming_events.py +0 -0
  35. {agentd-0.7.2 → agentd-0.7.3}/test/test_manual_tool_execution.py +0 -0
  36. {agentd-0.7.2 → agentd-0.7.3}/test/test_mcp_bridge.py +0 -0
  37. {agentd-0.7.2 → agentd-0.7.3}/test/test_mixed_tools.py +0 -0
  38. {agentd-0.7.2 → agentd-0.7.3}/test/test_patch.py +0 -0
  39. {agentd-0.7.2 → agentd-0.7.3}/test/test_ptc.py +0 -0
  40. {agentd-0.7.2 → agentd-0.7.3}/test/test_responses.py +0 -0
  41. {agentd-0.7.2 → agentd-0.7.3}/test/test_responses_stream.py +0 -0
  42. {agentd-0.7.2 → agentd-0.7.3}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentd
3
- Version: 0.7.2
3
+ Version: 0.7.3
4
4
  Summary: agent daemon
5
5
  License-File: LICENSE
6
6
  Requires-Python: >=3.10
@@ -1413,6 +1413,12 @@ async def setup_skills_directory(
1413
1413
 
1414
1414
  # 5c) Set skills dir in env so executors can find the CLI
1415
1415
  os.environ['PTC_SKILLS_DIR'] = str(skills_dir)
1416
+ # Also prepend to PATH so all executors (including SandboxRuntimeExecutor
1417
+ # which inherits os.environ without custom env) can find the `skills` CLI
1418
+ skills_dir_str = str(skills_dir)
1419
+ current_path = os.environ.get('PATH', '')
1420
+ if skills_dir_str not in current_path.split(os.pathsep):
1421
+ os.environ['PATH'] = f"{skills_dir_str}{os.pathsep}{current_path}"
1416
1422
 
1417
1423
  # 6) Generate tool manifest for system prompt injection
1418
1424
  tool_manifest = generate_tool_manifest(all_tools, skills_dir)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "agentd"
3
- version = "0.7.2"
3
+ version = "0.7.3"
4
4
  description = "agent daemon"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes