LICENSE
README.md
pyproject.toml
teragent/__init__.py
teragent/agent_loop.py
teragent/event_bus.py
teragent/py.typed
teragent.egg-info/PKG-INFO
teragent.egg-info/SOURCES.txt
teragent.egg-info/dependency_links.txt
teragent.egg-info/requires.txt
teragent.egg-info/top_level.txt
teragent/benchmark/__init__.py
teragent/benchmark/benchmark.py
teragent/config/__init__.py
teragent/config/agent_config.py
teragent/config/agent_loop_config.py
teragent/config/api_key_security.py
teragent/config/circuit_breaker_config.py
teragent/config/context_management_config.py
teragent/config/coordination_config.py
teragent/config/driver_config.py
teragent/config/execution_pipeline_config.py
teragent/config/file_safety_config.py
teragent/config/hooks_config.py
teragent/config/loader.py
teragent/config/mcp_config.py
teragent/config/model_fallback_config.py
teragent/config/orchestration_config.py
teragent/config/permission_config.py
teragent/config/recovery_config.py
teragent/config/session_config.py
teragent/config/streaming_config.py
teragent/config/teragent_config.py
teragent/config/tools_config.py
teragent/context/__init__.py
teragent/context/auto_compact.py
teragent/context/code_indexer.py
teragent/context/context_window.py
teragent/context/dependency_reporter.py
teragent/context/memory.py
teragent/context/microcompactor.py
teragent/context/profiles.py
teragent/context/reference_graph.py
teragent/context/retention_tracker.py
teragent/context/vector_indexer.py
teragent/coordination/__init__.py
teragent/core/__init__.py
teragent/core/adapter.py
teragent/core/adapter.pyi
teragent/core/compiler.py
teragent/core/compiler.pyi
teragent/core/provider.py
teragent/core/provider.pyi
teragent/core/rate_limiter.py
teragent/core/rate_limiter.pyi
teragent/core/tap.py
teragent/core/tap.pyi
teragent/core/types.py
teragent/core/adapters/__init__.py
teragent/core/adapters/anthropic_native.py
teragent/core/adapters/glm_native.py
teragent/core/adapters/minimax_native.py
teragent/core/adapters/mock.py
teragent/core/adapters/openai_compatible.py
teragent/core/compilers/__init__.py
teragent/core/compilers/anthropic.py
teragent/core/compilers/deepseek.py
teragent/core/compilers/deepseek_v4.py
teragent/core/compilers/default.py
teragent/core/compilers/glm.py
teragent/core/compilers/glm_5.py
teragent/core/compilers/glm_52.py
teragent/core/compilers/glm_5v_turbo.py
teragent/core/compilers/minimax_m3.py
teragent/core/prompts/__init__.py
teragent/core/prompts/chat.py
teragent/core/prompts/design.py
teragent/core/prompts/execute.py
teragent/core/prompts/plan.py
teragent/core/prompts/review.py
teragent/core/prompts/sub_agent.py
teragent/hooks/__init__.py
teragent/hooks/manager.py
teragent/hooks/builtin/__init__.py
teragent/hooks/builtin/audit_hook.py
teragent/hooks/builtin/dangerous_command_hook.py
teragent/intent/__init__.py
teragent/intent/classifier.py
teragent/intent/confirmation.py
teragent/long_horizon/__init__.py
teragent/long_horizon/checkpoint.py
teragent/long_horizon/progress.py
teragent/long_horizon/self_evaluation.py
teragent/long_horizon/strategy_switch.py
teragent/long_horizon/task_manager.py
teragent/long_horizon/types.py
teragent/orchestration/__init__.py
teragent/orchestration/agent.py
teragent/orchestration/agent_hooks.py
teragent/orchestration/approval.py
teragent/orchestration/cancellation.py
teragent/orchestration/checkpoint.py
teragent/orchestration/guardrail.py
teragent/orchestration/handoff.py
teragent/orchestration/orchestrator.py
teragent/orchestration/run_context.py
teragent/orchestration/rwlock.py
teragent/orchestration/shared_state.py
teragent/orchestration/patterns/__init__.py
teragent/orchestration/patterns/base.py
teragent/orchestration/patterns/conditional.py
teragent/orchestration/patterns/loop.py
teragent/orchestration/patterns/parallel.py
teragent/orchestration/patterns/sequential.py
teragent/orchestration/patterns/swarm.py
teragent/pipeline/__init__.py
teragent/pipeline/checklist.py
teragent/pipeline/extractor.py
teragent/pipeline/prompt_builder.py
teragent/pipeline/retry.py
teragent/pipeline/subagent_worker.py
teragent/pipeline/tracing.py
teragent/reliability/__init__.py
teragent/reliability/budget.py
teragent/reliability/circuit_breaker.py
teragent/reliability/recovery.py
teragent/router/__init__.py
teragent/router/model_router.py
teragent/security/__init__.py
teragent/security/ai_permission_classifier.py
teragent/security/audit.py
teragent/security/file_state.py
teragent/security/file_writer.py
teragent/security/firecracker_sandbox.py
teragent/security/permission.py
teragent/security/sandbox.py
teragent/session/__init__.py
teragent/session/persistence.py
teragent/streaming/__init__.py
teragent/streaming/stream_events.py
teragent/streaming/streaming_executor.py
teragent/tools/__init__.py
teragent/tools/agent_tool.py
teragent/tools/auth.py
teragent/tools/base.py
teragent/tools/decorator.py
teragent/tools/desktop.py
teragent/tools/mcp_toolset.py
teragent/tools/openapi_toolset.py
teragent/tools/orchestrator.py
teragent/tools/orchestrator_tool.py
teragent/tools/registry.py
teragent/tools/result_cache.py
teragent/tools/schema_gen.py
teragent/tools/toolpack.py
teragent/tools/builtin/__init__.py
teragent/tools/builtin/analysis.py
teragent/tools/builtin/code.py
teragent/tools/builtin/file.py
teragent/tools/builtin/web.py
teragent/tools/hub/__init__.py
teragent/tools/hub/client.py
teragent/utils/__init__.py
teragent/utils/exceptions.py
teragent/utils/text.py
teragent/utils/token_counter.py
teragent/utils/tracing.py
tests/test_ai_permission_classifier.py
tests/test_anthropic_adapter.py
tests/test_audit.py
tests/test_auto_compact.py
tests/test_budget.py
tests/test_bug_fixes.py
tests/test_builtin_hooks.py
tests/test_checklist.py
tests/test_circuit_breaker.py
tests/test_code_indexer.py
tests/test_compilers.py
tests/test_config_loader.py
tests/test_confirmation.py
tests/test_context_window.py
tests/test_core_types.py
tests/test_desktop_tool.py
tests/test_event_bus.py
tests/test_extractor.py
tests/test_file_state.py
tests/test_file_writer.py
tests/test_firecracker_sandbox.py
tests/test_glm52_thinking.py
tests/test_glm_native.py
tests/test_hooks_manager.py
tests/test_intent_classifier.py
tests/test_live_api.py
tests/test_long_horizon.py
tests/test_microcompactor.py
tests/test_minimax_native.py
tests/test_minimax_native_v2.py
tests/test_openai_adapter.py
tests/test_orchestrator.py
tests/test_p8_3_mixed_mode.py
tests/test_p8_3_performance.py
tests/test_permission.py
tests/test_phase2.py
tests/test_phase3.py
tests/test_pipeline.py
tests/test_pipeline_retry.py
tests/test_pipeline_tracing.py
tests/test_prompt_builder.py
tests/test_provider.py
tests/test_recovery.py
tests/test_registry.py
tests/test_retention_tracker.py
tests/test_sandbox.py
tests/test_session_persistence.py
tests/test_subagent_worker.py
tests/test_token_counter.py
tests/test_tools_base.py
tests/test_utils_tracing.py
tests/test_v4_cache_profile.py
tests/test_validation.py