LICENSE
README.md
pyproject.toml
tests/test_agent_abstractions.py
tests/test_agent_base.py
tests/test_agent_behavior.py
tests/test_agent_fork_isolation.py
tests/test_agent_middleware.py
tests/test_agent_modality_routing.py
tests/test_agent_registry.py
tests/test_agent_runtime.py
tests/test_agent_tool.py
tests/test_agent_tool_loop.py
tests/test_aggregate_agent.py
tests/test_audio_runner.py
tests/test_cli_interface.py
tests/test_code_search_tools.py
tests/test_concurrent_middleware.py
tests/test_config_validation.py
tests/test_context_algorithm_tools.py
tests/test_context_compaction_middleware.py
tests/test_context_compaction_tools.py
tests/test_context_dataclasses.py
tests/test_context_management.py
tests/test_context_primitives_binding.py
tests/test_context_primitives_builtins.py
tests/test_context_primitives_registry.py
tests/test_context_window_templates.py
tests/test_continual_trace.py
tests/test_create_handoff_tool.py
tests/test_custom_exception_constructors.py
tests/test_custom_function_tools.py
tests/test_deterministic_compaction_middleware.py
tests/test_durable_sessions.py
tests/test_embedding_runner.py
tests/test_error_correction_algorithm.py
tests/test_evals.py
tests/test_filesystem_tools.py
tests/test_fork_tool.py
tests/test_handoff_agent.py
tests/test_image_video_runners.py
tests/test_inner_context_window_algorithms.py
tests/test_mcp_attachment.py
tests/test_mcp_bridge.py
tests/test_mcp_discovery_tools.py
tests/test_mcp_studio_server.py
tests/test_memory_tools.py
tests/test_middleware_builtins.py
tests/test_model_registry.py
tests/test_multi_provider_agentic_grader.py
tests/test_new_middleware_builtins.py
tests/test_openrouter_provider.py
tests/test_patch_tool.py
tests/test_pipelines.py
tests/test_problem_space_search_algorithm.py
tests/test_prompts_interface.py
tests/test_provider_tool_schema_translation.py
tests/test_reflexion_algorithm.py
tests/test_security_executor.py
tests/test_security_middleware.py
tests/test_semantic_tracing.py
tests/test_skills_interface.py
tests/test_sources_base.py
tests/test_sources_document.py
tests/test_sources_llms_txt.py
tests/test_streaming_text_runner.py
tests/test_text_model_runner.py
tests/test_tool_core.py
tests/test_tool_mixin.py
tests/test_tool_registry_custom_inputs.py
tests/test_tools_catalog.py
tests/test_trace_facade.py
tests/test_trace_replacement_compaction.py
tests/test_tracing.py
tests/test_trajectory_checkpoint_algorithm.py
vidbyte/__init__.py
vidbyte/client.py
vidbyte/agents/__init__.py
vidbyte/agents/aggregation.py
vidbyte/agents/base.py
vidbyte/agents/client.py
vidbyte/agents/context_algorithms.py
vidbyte/agents/continual_trace.py
vidbyte/agents/contract.py
vidbyte/agents/fork.py
vidbyte/agents/handoff.py
vidbyte/agents/mixins.py
vidbyte/agents/runtime.py
vidbyte/agents/types.py
vidbyte/agents/algorithms/__init__.py
vidbyte/agents/algorithms/multi_provider_agentic_grader.py
vidbyte/agents/algorithms/reflexion.py
vidbyte/agents/contracts/__init__.py
vidbyte/agents/contracts/floors.py
vidbyte/agents/runtimes/__init__.py
vidbyte/agents/runtimes/configs.py
vidbyte/agents/runtimes/linear.py
vidbyte/agents/runtimes/search.py
vidbyte/agents/runtimes/actor/__init__.py
vidbyte/agents/runtimes/actor/actor.py
vidbyte/agents/runtimes/actor/broker.py
vidbyte/agents/runtimes/actor/inbox.py
vidbyte/agents/runtimes/actor/message.py
vidbyte/agents/settings/__init__.py
vidbyte/agents/settings/loop.py
vidbyte/agents/settings/tool.py
vidbyte/agents/settings/tool_error.py
vidbyte/cli/__init__.py
vidbyte/cli/__main__.py
vidbyte/cli/skills.py
vidbyte/context/__init__.py
vidbyte/context/compaction.py
vidbyte/context/handoffs.py
vidbyte/context/manager.py
vidbyte/context/presets.py
vidbyte/context/runtime.py
vidbyte/context/window.py
vidbyte/context/algorithms/__init__.py
vidbyte/context/algorithms/error_correction.py
vidbyte/context/algorithms/multi_provider_agentic_grader.py
vidbyte/context/algorithms/problem_space_search.py
vidbyte/context/algorithms/reflexion.py
vidbyte/context/algorithms/tool_results.py
vidbyte/context/algorithms/trajectory_checkpoints.py
vidbyte/context/handoff/__init__.py
vidbyte/context/handoff/base.py
vidbyte/context/handoff/engineering.py
vidbyte/context/handoff/minimal.py
vidbyte/context/handoff/research.py
vidbyte/context/primitives/__init__.py
vidbyte/context/primitives/base.py
vidbyte/context/primitives/checkpoints.py
vidbyte/context/primitives/documents.py
vidbyte/context/primitives/reasoning.py
vidbyte/context/primitives/records.py
vidbyte/context/primitives/tasks.py
vidbyte/context/templates/__init__.py
vidbyte/context/templates/recorder.py
vidbyte/evals/__init__.py
vidbyte/evals/base.py
vidbyte/evals/client.py
vidbyte/evals/registry.py
vidbyte/evals/runner.py
vidbyte/evals/suite.py
vidbyte/evals/types.py
vidbyte/evals/behavior/__init__.py
vidbyte/evals/behavior/behavior.py
vidbyte/evals/behavior/efficiency.py
vidbyte/evals/behavior/handoff.py
vidbyte/evals/behavior/output.py
vidbyte/evals/behavior/probe.py
vidbyte/evals/behavior/stop.py
vidbyte/evals/behavior/tool.py
vidbyte/evals/behavior/tool_arguments.py
vidbyte/evals/graders/__init__.py
vidbyte/evals/graders/choice_match.py
vidbyte/evals/graders/composite.py
vidbyte/evals/graders/contains.py
vidbyte/evals/graders/contains_all.py
vidbyte/evals/graders/exact_match.py
vidbyte/evals/graders/forbidden_content.py
vidbyte/evals/graders/json_match.py
vidbyte/evals/graders/json_schema.py
vidbyte/evals/graders/length.py
vidbyte/evals/graders/llm_judge.py
vidbyte/evals/graders/numeric_match.py
vidbyte/evals/graders/predicate.py
vidbyte/evals/graders/regex_match.py
vidbyte/evals/graders/rubric.py
vidbyte/evals/templates/__init__.py
vidbyte/evals/templates/base.py
vidbyte/evals/templates/builtins.py
vidbyte/evals/templates/registry.py
vidbyte/harnesses/__init__.py
vidbyte/harnesses/client.py
vidbyte/lib/__init__.py
vidbyte/lib/token_usage.py
vidbyte/lib/agents/__init__.py
vidbyte/lib/agents/modality_detector.py
vidbyte/lib/config/__init__.py
vidbyte/lib/config/base.py
vidbyte/lib/config/constants.py
vidbyte/lib/config/mcp_presets.py
vidbyte/lib/config/models.py
vidbyte/lib/config/sources.py
vidbyte/lib/constants/__init__.py
vidbyte/lib/constants/runners.py
vidbyte/lib/dataclasses/__init__.py
vidbyte/lib/dataclasses/agents.py
vidbyte/lib/dataclasses/code_search.py
vidbyte/lib/dataclasses/context.py
vidbyte/lib/dataclasses/context_items.py
vidbyte/lib/dataclasses/filesystem.py
vidbyte/lib/dataclasses/mcp.py
vidbyte/lib/dataclasses/middleware.py
vidbyte/lib/dataclasses/model_configs.py
vidbyte/lib/dataclasses/multi_agent.py
vidbyte/lib/dataclasses/runner.py
vidbyte/lib/dataclasses/sandbox.py
vidbyte/lib/dataclasses/security.py
vidbyte/lib/dataclasses/sessions.py
vidbyte/lib/dataclasses/sources.py
vidbyte/lib/dataclasses/strategies.py
vidbyte/lib/dataclasses/tools.py
vidbyte/lib/dataclasses/trace.py
vidbyte/lib/enums/__init__.py
vidbyte/lib/enums/agent_runtime.py
vidbyte/lib/enums/context.py
vidbyte/lib/enums/model_modality.py
vidbyte/lib/enums/model_provider.py
vidbyte/lib/enums/platform.py
vidbyte/lib/enums/prompts.py
vidbyte/lib/enums/skills.py
vidbyte/lib/enums/sources.py
vidbyte/lib/errors/__init__.py
vidbyte/lib/errors/base.py
vidbyte/lib/http/__init__.py
vidbyte/lib/http/parser.py
vidbyte/lib/http/transport.py
vidbyte/lib/models/__init__.py
vidbyte/lib/providers/__init__.py
vidbyte/lib/providers/base.py
vidbyte/lib/providers/mongodb.py
vidbyte/lib/providers/postgres.py
vidbyte/lib/providers/sqlite.py
vidbyte/lib/providers/supabase.py
vidbyte/lib/registries/__init__.py
vidbyte/lib/registries/actors.py
vidbyte/lib/registries/agents.py
vidbyte/lib/registries/models.py
vidbyte/lib/registries/prompts.py
vidbyte/lib/registries/runtimes.py
vidbyte/lib/registries/tools.py
vidbyte/lib/runners/__init__.py
vidbyte/lib/runners/audio.py
vidbyte/lib/runners/base.py
vidbyte/lib/runners/embedding.py
vidbyte/lib/runners/image.py
vidbyte/lib/runners/router.py
vidbyte/lib/runners/streaming_text.py
vidbyte/lib/runners/text.py
vidbyte/lib/runners/types.py
vidbyte/lib/runners/utility.py
vidbyte/lib/runners/video.py
vidbyte/lib/templates/__init__.py
vidbyte/lib/templates/base.py
vidbyte/lib/templates/error_correction.py
vidbyte/lib/templates/problem_space_search.py
vidbyte/lib/templates/reflexion.py
vidbyte/lib/templates/trajectory_checkpoints.py
vidbyte/lib/tools/__init__.py
vidbyte/lib/tools/formatter.py
vidbyte/lib/tools/filesystem/__init__.py
vidbyte/lib/tools/filesystem/permissions.py
vidbyte/lib/tools/filesystem/backends/__init__.py
vidbyte/lib/tools/filesystem/backends/base.py
vidbyte/lib/tools/filesystem/backends/local.py
vidbyte/lib/tracing/__init__.py
vidbyte/lib/tracing/base.py
vidbyte/mcp_server/__init__.py
vidbyte/mcp_server/__main__.py
vidbyte/mcp_server/handlers.py
vidbyte/mcp_server/schema.py
vidbyte/mcp_server/server/__init__.py
vidbyte/mcp_server/server/core.py
vidbyte/mcp_server/server/handlers/__init__.py
vidbyte/mcp_server/server/handlers/initialize.py
vidbyte/mcp_server/server/handlers/prompts_get.py
vidbyte/mcp_server/server/handlers/prompts_list.py
vidbyte/mcp_server/server/handlers/tools_call.py
vidbyte/mcp_server/server/handlers/tools_list.py
vidbyte/middleware/__init__.py
vidbyte/middleware/base.py
vidbyte/middleware/continual_trace.py
vidbyte/middleware/pipeline.py
vidbyte/middleware/builtins/__init__.py
vidbyte/middleware/builtins/audit.py
vidbyte/middleware/builtins/canary_tripwire.py
vidbyte/middleware/builtins/circuit_breaker.py
vidbyte/middleware/builtins/confused_deputy.py
vidbyte/middleware/builtins/context_compaction.py
vidbyte/middleware/builtins/cost_budget.py
vidbyte/middleware/builtins/exponential_backoff_retry.py
vidbyte/middleware/builtins/honeypot_tool.py
vidbyte/middleware/builtins/loop_detection.py
vidbyte/middleware/builtins/rate_limit.py
vidbyte/middleware/builtins/retry.py
vidbyte/middleware/builtins/runtime_limits.py
vidbyte/middleware/builtins/token_budget.py
vidbyte/middleware/builtins/tool_error_policy.py
vidbyte/middleware/builtins/tool_policy.py
vidbyte/middleware/compaction/__init__.py
vidbyte/middleware/compaction/base.py
vidbyte/middleware/compaction/context_compaction.py
vidbyte/middleware/compaction/engine.py
vidbyte/middleware/compaction/strategies.py
vidbyte/middleware/compaction/trace_render.py
vidbyte/paradigms/__init__.py
vidbyte/paradigms/base.py
vidbyte/paradigms/client.py
vidbyte/paradigms/context_minimal_fanout/README.md
vidbyte/paradigms/context_minimal_fanout/__init__.py
vidbyte/paradigms/context_minimal_fanout/client.py
vidbyte/paradigms/context_minimal_fanout/paradigm.py
vidbyte/paradigms/context_minimal_fanout/types.py
vidbyte/paradigms/context_minimal_fanout/prompts/__init__.py
vidbyte/paradigms/context_minimal_fanout/prompts/adversarial_prompt.md
vidbyte/paradigms/context_minimal_fanout/prompts/context_prompt.md
vidbyte/paradigms/context_minimal_fanout/prompts/implementation_prompt.md
vidbyte/paradigms/context_minimal_fanout/prompts/split_prompt.md
vidbyte/paradigms/context_minimal_fanout/skills/skills.json
vidbyte/paradigms/context_minimal_fanout/skills/decompose-design-fanout/SKILL.md
vidbyte/paradigms/context_minimal_fanout/skills/decompose-design-then-implement/SKILL.md
vidbyte/paradigms/context_minimal_fanout/skills/decompose-fanout/SKILL.md
vidbyte/paradigms/context_minimal_fanout/skills/decompose-then-implement/SKILL.md
vidbyte/paradigms/context_minimal_fanout/skills/references/harness-commands.md
vidbyte/pipelines/__init__.py
vidbyte/pipelines/base.py
vidbyte/pipelines/conditional.py
vidbyte/pipelines/map_reduce.py
vidbyte/pipelines/parallel.py
vidbyte/pipelines/sequential.py
vidbyte/pipelines/types.py
vidbyte/prompts/__init__.py
vidbyte/prompts/agentic_loop.py
vidbyte/prompts/catalog.py
vidbyte/prompts/prompts/__init__.py
vidbyte/prompts/prompts/agentic_loop.json
vidbyte/prompts/prompts/context_engineering.json
vidbyte/prompts/prompts/error_correction.json
vidbyte/prompts/prompts/error_correction_auditor.md
vidbyte/prompts/prompts/evals.json
vidbyte/prompts/prompts/expert_prompting.json
vidbyte/prompts/prompts/problem_space_search.json
vidbyte/prompts/prompts/problem_space_search_explorer.md
vidbyte/prompts/prompts/prompt_engineering.json
vidbyte/prompts/prompts/trajectory_checkpoints.json
vidbyte/prompts/prompts/trajectory_checkpoints_agentic_summarizer.md
vidbyte/prompts/prompts/actor_runtime/actor_runtime.json
vidbyte/prompts/prompts/actor_runtime/coder.md
vidbyte/prompts/prompts/actor_runtime/critic.md
vidbyte/prompts/prompts/actor_runtime/decomposer.md
vidbyte/prompts/prompts/actor_runtime/explorer.md
vidbyte/prompts/prompts/actor_runtime/final_answer.md
vidbyte/prompts/prompts/actor_runtime/formatter.md
vidbyte/prompts/prompts/actor_runtime/generator.md
vidbyte/prompts/prompts/actor_runtime/hypothesis_generator.md
vidbyte/prompts/prompts/actor_runtime/planner.md
vidbyte/prompts/prompts/actor_runtime/reasoner.md
vidbyte/prompts/prompts/actor_runtime/refiner.md
vidbyte/prompts/prompts/actor_runtime/reviewer.md
vidbyte/prompts/prompts/actor_runtime/safety.md
vidbyte/prompts/prompts/actor_runtime/summarization.md
vidbyte/prompts/prompts/actor_runtime/tradeoff.md
vidbyte/prompts/prompts/agentic_engineering/agentic_engineering.json
vidbyte/prompts/prompts/agentic_engineering/error_messages.md
vidbyte/prompts/prompts/agentic_engineering/feature_test_packs.md
vidbyte/prompts/prompts/agentic_engineering/file_headers.md
vidbyte/prompts/prompts/agentic_engineering/folder_readme.md
vidbyte/prompts/prompts/agentic_engineering/function_design.md
vidbyte/prompts/prompts/agentic_engineering/intent_based_commenting.md
vidbyte/prompts/prompts/agentic_engineering/system_prompt.md
vidbyte/prompts/prompts/continual_trace/continual_trace.json
vidbyte/prompts/prompts/continual_trace/system_prompt.md
vidbyte/prompts/prompts/goals/goal_prompt.md
vidbyte/prompts/prompts/goals/goals.json
vidbyte/prompts/prompts/handoff/handoff.json
vidbyte/prompts/prompts/handoff/handoff.md
vidbyte/prompts/prompts/mimic_behavior/mimic_behavior.json
vidbyte/prompts/prompts/mimic_behavior/mimic_prompt.md
vidbyte/prompts/prompts/multi_provider_agentic_grader/agent_system_prompt.md
vidbyte/prompts/prompts/multi_provider_agentic_grader/grader_prompt.md
vidbyte/prompts/prompts/multi_provider_agentic_grader/grader_system_prompt.md
vidbyte/prompts/prompts/multi_provider_agentic_grader/multi_provider_agentic_grader.json
vidbyte/prompts/prompts/multi_provider_aggregator/multi_provider_aggregator.json
vidbyte/prompts/prompts/multi_provider_aggregator/synthesis_prompt.md
vidbyte/prompts/prompts/multi_provider_aggregator/synthesis_system_prompt.md
vidbyte/prompts/prompts/reflexion/agent_system_prompt.md
vidbyte/prompts/prompts/reflexion/reflect_prompt.md
vidbyte/prompts/prompts/reflexion/reflect_system_prompt.md
vidbyte/prompts/prompts/reflexion/reflexion.json
vidbyte/prompts/prompts/templates/intent_based.md
vidbyte/prompts/prompts/templates/master.md
vidbyte/prompts/prompts/templates/persona.md
vidbyte/prompts/prompts/templates/specification.md
vidbyte/prompts/prompts/templates/templates.json
vidbyte/providers/__init__.py
vidbyte/providers/anthropic.py
vidbyte/providers/base.py
vidbyte/providers/client.py
vidbyte/providers/compatible.py
vidbyte/providers/elevenlabs.py
vidbyte/providers/gemini.py
vidbyte/providers/openai.py
vidbyte/providers/openrouter.py
vidbyte/providers/output_schema.py
vidbyte/providers/playai.py
vidbyte/providers/xai.py
vidbyte/providers/tracing/__init__.py
vidbyte/providers/tracing/langfuse.py
vidbyte/providers/tracing/langsmith.py
vidbyte/providers/tracing/phoenix.py
vidbyte/sessions/__init__.py
vidbyte/sessions/client.py
vidbyte/sessions/contracts.py
vidbyte/sessions/errors.py
vidbyte/sessions/portable.py
vidbyte/sessions/scope.py
vidbyte/sessions/serialization.py
vidbyte/sessions/session.py
vidbyte/sessions/store.py
vidbyte/sessions/trace_capture.py
vidbyte/sessions/usage.py
vidbyte/sessions/stores/__init__.py
vidbyte/sessions/stores/file.py
vidbyte/sessions/stores/memory.py
vidbyte/shared/__init__.py
vidbyte/skills/__init__.py
vidbyte/skills/catalog.py
vidbyte/sources/__init__.py
vidbyte/sources/_fetch.py
vidbyte/sources/_markdown.py
vidbyte/sources/base.py
vidbyte/sources/document.py
vidbyte/sources/security.py
vidbyte/sources/cache/__init__.py
vidbyte/sources/cache/base.py
vidbyte/sources/cache/file.py
vidbyte/sources/cache/memory.py
vidbyte/sources/cache/null.py
vidbyte/sources/fetches/__init__.py
vidbyte/sources/fetches/base.py
vidbyte/sources/fetches/chained.py
vidbyte/sources/fetches/file.py
vidbyte/sources/fetches/hash.py
vidbyte/sources/fetches/http.py
vidbyte/sources/fetches/memory.py
vidbyte/sources/llms_txt/__init__.py
vidbyte/sources/llms_txt/loader.py
vidbyte/sources/llms_txt/parser.py
vidbyte/sources/llms_txt/types.py
vidbyte/sources/loaders/__init__.py
vidbyte/sources/loaders/document.py
vidbyte/sources/loaders/llms_txt.py
vidbyte/sources/regex/__init__.py
vidbyte/sources/regex/regex.py
vidbyte/tools/__init__.py
vidbyte/tools/_internal.py
vidbyte/tools/adapters.py
vidbyte/tools/agent_tool.py
vidbyte/tools/base.py
vidbyte/tools/catalog.py
vidbyte/tools/client.py
vidbyte/tools/continual_trace.py
vidbyte/tools/decorators.py
vidbyte/tools/dynamic_actor.py
vidbyte/tools/executor.py
vidbyte/tools/function_tool.py
vidbyte/tools/mixins.py
vidbyte/tools/types.py
vidbyte/tools/builtins/__init__.py
vidbyte/tools/builtins/calculator.py
vidbyte/tools/builtins/code_execution.py
vidbyte/tools/builtins/document_retrieval.py
vidbyte/tools/builtins/reflexion.py
vidbyte/tools/builtins/run_prompts_sequentially.py
vidbyte/tools/builtins/trajectory_checkpoint.py
vidbyte/tools/builtins/code_search/__init__.py
vidbyte/tools/builtins/code_search/base.py
vidbyte/tools/builtins/code_search/glob.py
vidbyte/tools/builtins/code_search/grep.py
vidbyte/tools/builtins/code_search/semantic.py
vidbyte/tools/builtins/context/__init__.py
vidbyte/tools/builtins/context/compaction.py
vidbyte/tools/builtins/context/types.py
vidbyte/tools/builtins/context_primitives/__init__.py
vidbyte/tools/builtins/context_primitives/create.py
vidbyte/tools/builtins/context_primitives/edit.py
vidbyte/tools/builtins/context_primitives/factory.py
vidbyte/tools/builtins/context_primitives/list_tool.py
vidbyte/tools/builtins/context_primitives/move.py
vidbyte/tools/builtins/context_primitives/recite.py
vidbyte/tools/builtins/context_primitives/registry.py
vidbyte/tools/builtins/context_primitives/remove.py
vidbyte/tools/builtins/context_primitives/stats.py
vidbyte/tools/builtins/context_primitives/upsert.py
vidbyte/tools/builtins/editing/__init__.py
vidbyte/tools/builtins/editing/patch.py
vidbyte/tools/builtins/fork/__init__.py
vidbyte/tools/builtins/fork/fork.py
vidbyte/tools/builtins/handoff/__init__.py
vidbyte/tools/builtins/handoff/create.py
vidbyte/tools/builtins/mcp/__init__.py
vidbyte/tools/builtins/mcp/attach_tool.py
vidbyte/tools/builtins/mcp/search.py
vidbyte/tools/builtins/memory/__init__.py
vidbyte/tools/builtins/memory/base.py
vidbyte/tools/builtins/memory/cognee.py
vidbyte/tools/builtins/memory/letta.py
vidbyte/tools/builtins/memory/mem0.py
vidbyte/tools/builtins/memory/supermemory.py
vidbyte/tools/builtins/memory/zep.py
vidbyte/tools/builtins/output_schema/__init__.py
vidbyte/tools/builtins/output_schema/append.py
vidbyte/tools/builtins/output_schema/builder.py
vidbyte/tools/builtins/output_schema/declare.py
vidbyte/tools/builtins/output_schema/extend.py
vidbyte/tools/builtins/providers/__init__.py
vidbyte/tools/builtins/providers/_base.py
vidbyte/tools/builtins/providers/_descriptions.py
vidbyte/tools/builtins/providers/mongodb.py
vidbyte/tools/builtins/providers/rows.py
vidbyte/tools/builtins/sessions/__init__.py
vidbyte/tools/builtins/sessions/_base.py
vidbyte/tools/builtins/sessions/batch_fork.py
vidbyte/tools/builtins/sessions/checkpoint.py
vidbyte/tools/builtins/sessions/descriptions.py
vidbyte/tools/builtins/sessions/fork.py
vidbyte/tools/builtins/sessions/resume_append.py
vidbyte/tools/builtins/sessions/resume_output.py
vidbyte/tools/builtins/sessions/resume_replace.py
vidbyte/tools/builtins/sessions/rewind.py
vidbyte/tools/builtins/sessions/session.py
vidbyte/tools/filesystem/__init__.py
vidbyte/tools/filesystem/_base_tool.py
vidbyte/tools/filesystem/append_text.py
vidbyte/tools/filesystem/base.py
vidbyte/tools/filesystem/checksum.py
vidbyte/tools/filesystem/copy.py
vidbyte/tools/filesystem/delete.py
vidbyte/tools/filesystem/diff.py
vidbyte/tools/filesystem/exists.py
vidbyte/tools/filesystem/find.py
vidbyte/tools/filesystem/list_dir.py
vidbyte/tools/filesystem/make_dir.py
vidbyte/tools/filesystem/move.py
vidbyte/tools/filesystem/read_binary.py
vidbyte/tools/filesystem/read_lines.py
vidbyte/tools/filesystem/read_text.py
vidbyte/tools/filesystem/replace_text.py
vidbyte/tools/filesystem/stat.py
vidbyte/tools/filesystem/touch.py
vidbyte/tools/filesystem/tree.py
vidbyte/tools/filesystem/write_text.py
vidbyte/tools/filesystem/zip_tools.py
vidbyte/tools/mcp/__init__.py
vidbyte/tools/mcp/attach.py
vidbyte/tools/mcp/bridge.py
vidbyte/tools/mcp/client.py
vidbyte/tools/mcp/presets.py
vidbyte/tools/mcp/transport.py
vidbyte/tools/mcp/types.py
vidbyte/tools/security/__init__.py
vidbyte/tools/security/permissions.py
vidbyte/tools/security/sandbox.py
vidbyte/tools/toolsets/__init__.py
vidbyte/tools/toolsets/paradigm_minimal.py
vidbyte/trace/__init__.py
vidbyte/trace/base.py
vidbyte/trace/controller.py
vidbyte/trace/debug.py
vidbyte/trace/profiles.py
vidbyte/trace/registry.py
vidbyte/trace/schema.py
vidbyte/trace/session.py
vidbyte/trace/components/__init__.py
vidbyte/trace/components/agents.py
vidbyte/trace/components/algorithms.py
vidbyte/trace/components/context.py
vidbyte/trace/components/middleware.py
vidbyte/trace/components/parsers.py
vidbyte/trace/components/runtimes.py
vidbyte/trace/components/tools.py
vidbyte/trace/continual/__init__.py
vidbyte/trace/continual/agent.py
vidbyte/trace/continual/base.py
vidbyte/trace/continual/middleware.py
vidbyte/trace/continual/prebuilt.py
vidbyte/trace/continual/tools.py
vidbyte/trace/providers/__init__.py
vidbyte/trace/providers/base.py
vidbyte/trace/providers/generic.py
vidbyte/trace/providers/langsmith.py
vidbyte_sdk.egg-info/PKG-INFO
vidbyte_sdk.egg-info/SOURCES.txt
vidbyte_sdk.egg-info/dependency_links.txt
vidbyte_sdk.egg-info/entry_points.txt
vidbyte_sdk.egg-info/requires.txt
vidbyte_sdk.egg-info/top_level.txt