CLAUDE.md
LICENSE
MANIFEST.in
README.md
pyproject.toml
helen/__init__.py
helen/py.typed
helen/agent/README.md
helen/agent/chat_session_actor.helen
helen/agent/chat_tui.helen
helen/agent/chat_tui_web.py
helen/agent/commands.helen
helen/agent/context.helen
helen/agent/context_manager.helen
helen/agent/json_utils.helen
helen/agent/memory_utils.helen
helen/agent/output.helen
helen/agent/session_stats.helen
helen/agent/start-web.sh
helen/agent/system_reminders.helen
helen/agent/task_manager.helen
helen/agent/ui_bridge.helen
helen/agent/ui_event_queue.helen
helen/agent/utils.helen
helen/agent/contracts/contracts.helen
helen/agent/ui/__init__.py
helen/agent/ui/event_consumer.py
helen/agent/ui/hint_queue.py
helen/agent/ui/input_handler.py
helen/agent/ui/renderer.py
helen/agent/ui/status_emitter.py
helen/agent/ui/stream_emitter.py
helen/agent/ui/theme.py
helen/agent/ui/components/__init__.py
helen/agent/ui/components/agent_panel.py
helen/agent/ui/components/progress.py
helen/agent/ui/components/status_bar.py
helen/agent/ui/components/streaming_text.py
helen/agent/ui/components/tool_call.py
helen/agent/webui/start-backend.sh
helen/agent/webui/start-frontend.sh
helen/agent/webui/stop-all.sh
helen/agent/webui/backend/requirements.txt
helen/agent/webui/backend/app/__init__.py
helen/agent/webui/backend/app/config.py
helen/agent/webui/backend/app/database.py
helen/agent/webui/backend/app/main.py
helen/agent/webui/backend/app/models/__init__.py
helen/agent/webui/backend/app/models/message.py
helen/agent/webui/backend/app/models/session.py
helen/agent/webui/backend/app/routers/__init__.py
helen/agent/webui/backend/app/routers/agents.py
helen/agent/webui/backend/app/routers/chat.py
helen/agent/webui/backend/app/services/__init__.py
helen/agent/webui/backend/app/services/channel_actor_manager.py
helen/agent/webui/backend/app/services/directory_manager.py
helen/agent/webui/backend/app/services/helen_bridge.py
helen/agent/webui/backend/app/services/hint_injector.py
helen/agent/webui/backend/app/services/session_index.py
helen/agent/webui/backend/app/services/stream_manager.py
helen/agent/webui/backend/app/websocket/__init__.py
helen/agent/webui/backend/app/websocket/manager.py
helen/agent/webui/frontend/package.json
helen/agent/webui/frontend/tsconfig.json
helen/agent/webui/frontend/tsconfig.node.json
helen/cli/__init__.py
helen/cli/__main__.py
helen/cli/agent_launcher.py
helen/cli/docgen.py
helen/cli/formatter.py
helen/cli/repl.py
helen/core/__init__.py
helen/core/ast.py
helen/core/errors.py
helen/core/lexer.py
helen/core/parser.py
helen/core/source.py
helen/core/tokens.py
helen/ffi/__init__.py
helen/ffi/contracts.py
helen/ffi/python_module.py
helen/ffi/python_object.py
helen/ffi/python_runtime.py
helen/ffi/type_converter.py
helen/interpreter/__init__.py
helen/interpreter/agent_context.py
helen/interpreter/closure.py
helen/interpreter/environment.py
helen/interpreter/exception_mixin.py
helen/interpreter/exceptions.py
helen/interpreter/import_mixin.py
helen/interpreter/interpreter.py
helen/interpreter/llm_mixin.py
helen/interpreter/pattern_mixin.py
helen/interpreter/readonly_view.py
helen/interpreter/shared_store.py
helen/interpreter/streaming_mixin.py
helen/lsp/server.py
helen/python_bridge/__init__.py
helen/python_bridge/agent_wrapper.py
helen/python_bridge/decorators.py
helen/python_bridge/function_wrapper.py
helen/python_bridge/import_hook.py
helen/python_bridge/type_converter.py
helen/runtime/__init__.py
helen/runtime/async_iterator_contracts.py
helen/runtime/cache_aware_compression.py
helen/runtime/channel.py
helen/runtime/config.py
helen/runtime/constants.py
helen/runtime/context_awareness.py
helen/runtime/context_recovery.py
helen/runtime/fuzzy_match.py
helen/runtime/graduated_compression.py
helen/runtime/history.py
helen/runtime/http_llm.py
helen/runtime/import_resolver.py
helen/runtime/llm_runtime.py
helen/runtime/llm_summarizer.py
helen/runtime/media.py
helen/runtime/media_storage.py
helen/runtime/memory.py
helen/runtime/observability.py
helen/runtime/prompt_builder.py
helen/runtime/reactive_compaction.py
helen/runtime/session_manager.py
helen/runtime/stream_contracts.py
helen/runtime/streaming_response.py
helen/runtime/token_utils.py
helen/runtime/tools.py
helen/runtime/transcript_store.py
helen/runtime/working_memory.py
helen/semantic/__init__.py
helen/semantic/analyzer.py
helen/semantic/symbols.py
helen/semantic/type_utils.py
helen/semantic/types.py
helen/skills/LICENSE-THIRD-PARTY.md
helen/skills/README.md
helen/skills/devops/github/ATTRIBUTION.md
helen/skills/devops/github/SKILL.md
helen/skills/devops/github/references/ci-troubleshooting.md
helen/skills/devops/github/references/conventional-commits.md
helen/skills/devops/github/references/github-api-cheatsheet.md
helen/skills/devops/github/references/review-output-template.md
helen/skills/devops/github/templates/bug-report.md
helen/skills/devops/github/templates/feature-request.md
helen/skills/devops/github/templates/pr-body-bugfix.md
helen/skills/devops/github/templates/pr-body-feature.md
helen/skills/software-development/code-quality/ATTRIBUTION.md
helen/skills/software-development/code-quality/SKILL.md
helen/skills/software-development/code-quality/references/security-hardening-checklist.md
helen/skills/software-development/debugging/ATTRIBUTION.md
helen/skills/software-development/debugging/SKILL.md
helen/skills/software-development/helen-agent-collaboration/SKILL.md
helen/skills/software-development/helen-agent-patterns/SKILL.md
helen/skills/software-development/helen-language-development/ATTRIBUTION.md
helen/skills/software-development/helen-language-development/SKILL.md
helen/skills/software-development/helen-language-development/references/documentation-workflow.md
helen/skills/software-development/helen-language-development/references/environment-and-pitfalls.md
helen/skills/software-development/helen-language-development/references/ffi-and-agents.md
helen/skills/software-development/helen-language-development/references/fuzzy-match.md
helen/skills/software-development/helen-language-development/references/hld-implementation.md
helen/skills/software-development/helen-language-development/references/import-system-debugging.md
helen/skills/software-development/helen-language-development/references/interpreter-execution-patterns.md
helen/skills/software-development/helen-language-development/references/interpreter-sentinels.md
helen/skills/software-development/helen-language-development/references/parser-disambiguation.md
helen/skills/software-development/helen-language-development/references/parser-optional-expression.md
helen/skills/software-development/helen-language-development/references/python-ffi-implementation.md
helen/skills/software-development/helen-language-development/references/repl-extension.md
helen/skills/software-development/helen-language-development/references/streaming-implementation.md
helen/skills/software-development/helen-language-development/references/testing-helen-programs.md
helen/skills/software-development/helen-language-development/references/tutorial-sync.md
helen/skills/software-development/helen-language-development/references/tutorial-testing.md
helen/skills/software-development/helen-language-development/references/v1.6-v1.7-v1.8-implementation.md
helen/skills/software-development/helen-programming-methodology/SKILL.md
helen/skills/software-development/helen-python-bridge/SKILL.md
helen/skills/software-development/helen-quality/SKILL.md
helen/skills/software-development/helen-stdlib/SKILL.md
helen/skills/software-development/helen-syntax/SKILL.md
helen/skills/software-development/helen-testing/SKILL.md
helen/skills/software-development/planning/SKILL.md
helen/skills/software-development/subagent-driven-development/ATTRIBUTION.md
helen/skills/software-development/subagent-driven-development/SKILL.md
helen/skills/software-development/subagent-driven-development/references/compliance-checking-pattern.md
helen/skills/software-development/subagent-driven-development/references/context-budget-discipline.md
helen/skills/software-development/subagent-driven-development/references/gates-taxonomy.md
helen/skills/software-development/test-driven-development/ATTRIBUTION.md
helen/skills/software-development/test-driven-development/SKILL.md
helen/stdlib/__init__.py
helen/stdlib/collection.py
helen/stdlib/collection_contracts.py
helen/stdlib/context.py
helen/stdlib/crypto.py
helen/stdlib/crypto_contracts.py
helen/stdlib/data.py
helen/stdlib/data_contracts.py
helen/stdlib/data_formats.py
helen/stdlib/data_formats_contracts.py
helen/stdlib/file_advanced.py
helen/stdlib/file_advanced_contracts.py
helen/stdlib/llm_control.py
helen/stdlib/mailbox.py
helen/stdlib/math_stats.py
helen/stdlib/math_stats_contracts.py
helen/stdlib/media.py
helen/stdlib/network.py
helen/stdlib/network_contracts.py
helen/stdlib/quality.py
helen/stdlib/stream_contracts.py
helen/stdlib/string.py
helen/stdlib/string_contracts.py
helen/stdlib/system.py
helen/stdlib/system_contracts.py
helen/stdlib/test.py
helen/stdlib/time.py
helen/stdlib/time_contracts.py
helen/stdlib/tools.py
helen/stdlib/transcript.py
helen/stdlib/locales/__init__.py
helen/stdlib/locales/zh.py
helen_lang.egg-info/PKG-INFO
helen_lang.egg-info/SOURCES.txt
helen_lang.egg-info/dependency_links.txt
helen_lang.egg-info/entry_points.txt
helen_lang.egg-info/requires.txt
helen_lang.egg-info/top_level.txt