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.
- {agentd-0.7.2 → agentd-0.7.3}/PKG-INFO +1 -1
- {agentd-0.7.2 → agentd-0.7.3}/agentd/ptc.py +6 -0
- {agentd-0.7.2 → agentd-0.7.3}/pyproject.toml +1 -1
- {agentd-0.7.2 → agentd-0.7.3}/.gitignore +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/.python-version +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/LICENSE +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/README.md +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/agentd/__init__.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/agentd/app.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/agentd/conversation_logger.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/agentd/mcp_bridge.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/agentd/microsandbox_cli_executor.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/agentd/microsandbox_executor.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/agentd/model/__init__.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/agentd/model/config.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/agentd/patch.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/agentd/sandbox_runtime_executor.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/agentd/tool_decorator.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/config/facts.yaml +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/config/filesystem.yaml +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/config/ycombinator-config.yaml +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/examples/code_interpreter.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/examples/file_retrieval_complete.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/examples/ptc_microsandbox.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/examples/ptc_sandbox_runtime.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/examples/ptc_streaming.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/examples/ptc_with_mcp.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/examples/ptc_with_tools.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/examples/sample_document.txt +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/logs/25026eee3cec.jsonl +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/logs/496342c73ea3.jsonl +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/scripts/install-microsandbox.sh +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/test/__init__.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/test/test_compare_streaming_events.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/test/test_manual_tool_execution.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/test/test_mcp_bridge.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/test/test_mixed_tools.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/test/test_patch.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/test/test_ptc.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/test/test_responses.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/test/test_responses_stream.py +0 -0
- {agentd-0.7.2 → agentd-0.7.3}/uv.lock +0 -0
|
@@ -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)
|
|
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
|
|
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
|