LICENSE
MANIFEST.in
README.md
pyproject.toml
janito/__init__.py
janito/__main__.py
janito/rich_utils.py
janito.egg-info/PKG-INFO
janito.egg-info/SOURCES.txt
janito.egg-info/dependency_links.txt
janito.egg-info/entry_points.txt
janito.egg-info/requires.txt
janito.egg-info/top_level.txt
janito/agent/__init__.py
janito/agent/config.py
janito/agent/config_defaults.py
janito/agent/config_utils.py
janito/agent/content_handler.py
janito/agent/conversation.py
janito/agent/conversation_api.py
janito/agent/conversation_exceptions.py
janito/agent/conversation_history.py
janito/agent/conversation_tool_calls.py
janito/agent/conversation_ui.py
janito/agent/event.py
janito/agent/event_dispatcher.py
janito/agent/event_handler_protocol.py
janito/agent/event_system.py
janito/agent/message_handler.py
janito/agent/message_handler_protocol.py
janito/agent/openai_client.py
janito/agent/openai_schema_generator.py
janito/agent/platform_discovery.py
janito/agent/profile_manager.py
janito/agent/providers.py
janito/agent/queued_message_handler.py
janito/agent/rich_live.py
janito/agent/rich_message_handler.py
janito/agent/runtime_config.py
janito/agent/test_handler_protocols.py
janito/agent/tool_base.py
janito/agent/tool_executor.py
janito/agent/tool_registry.py
janito/agent/tool_use_tracker.py
janito/agent/templates/profiles/system_prompt_template_base.txt.j2
janito/agent/templates/profiles/system_prompt_template_base_pt.txt.j2
janito/agent/tests/__init__.py
janito/agent/tools/__init__.py
janito/agent/tools/ask_user.py
janito/agent/tools/create_directory.py
janito/agent/tools/create_file.py
janito/agent/tools/delete_text_in_file.py
janito/agent/tools/fetch_url.py
janito/agent/tools/find_files.py
janito/agent/tools/get_lines.py
janito/agent/tools/move_file.py
janito/agent/tools/present_choices.py
janito/agent/tools/remove_directory.py
janito/agent/tools/remove_file.py
janito/agent/tools/replace_file.py
janito/agent/tools/replace_text_in_file.py
janito/agent/tools/run_bash_command.py
janito/agent/tools/run_powershell_command.py
janito/agent/tools/run_python_command.py
janito/agent/tools/search_text.py
janito/agent/tools/get_file_outline/__init__.py
janito/agent/tools/get_file_outline/core.py
janito/agent/tools/get_file_outline/markdown_outline.py
janito/agent/tools/get_file_outline/python_outline.py
janito/agent/tools/get_file_outline/search_outline.py
janito/agent/tools/validate_file_syntax/__init__.py
janito/agent/tools/validate_file_syntax/core.py
janito/agent/tools/validate_file_syntax/css_validator.py
janito/agent/tools/validate_file_syntax/html_validator.py
janito/agent/tools/validate_file_syntax/js_validator.py
janito/agent/tools/validate_file_syntax/json_validator.py
janito/agent/tools/validate_file_syntax/markdown_validator.py
janito/agent/tools/validate_file_syntax/ps1_validator.py
janito/agent/tools/validate_file_syntax/python_validator.py
janito/agent/tools/validate_file_syntax/xml_validator.py
janito/agent/tools/validate_file_syntax/yaml_validator.py
janito/agent/tools_utils/__init__.py
janito/agent/tools_utils/dir_walk_utils.py
janito/agent/tools_utils/formatting.py
janito/agent/tools_utils/gitignore_utils.py
janito/agent/tools_utils/utils.py
janito/cli/__init__.py
janito/cli/_livereload_log_utils.py
janito/cli/_print_config.py
janito/cli/_termweb_log_utils.py
janito/cli/_utils.py
janito/cli/arg_parser.py
janito/cli/cli_main.py
janito/cli/config_commands.py
janito/cli/config_runner.py
janito/cli/formatting_runner.py
janito/cli/livereload_starter.py
janito/cli/logging_setup.py
janito/cli/main.py
janito/cli/one_shot.py
janito/cli/termweb_starter.py
janito/i18n/__init__.py
janito/i18n/messages.py
janito/i18n/pt.py
janito/livereload/app.py
janito/shell/__init__.py
janito/shell/commands.py
janito/shell/main.py
janito/shell/commands/__init__.py
janito/shell/commands/config.py
janito/shell/commands/conversation_restart.py
janito/shell/commands/edit.py
janito/shell/commands/history_view.py
janito/shell/commands/lang.py
janito/shell/commands/livelogs.py
janito/shell/commands/prompt.py
janito/shell/commands/session.py
janito/shell/commands/session_control.py
janito/shell/commands/sum.py
janito/shell/commands/termweb_log.py
janito/shell/commands/tools.py
janito/shell/commands/utility.py
janito/shell/commands/verbose.py
janito/shell/prompt/completer.py
janito/shell/prompt/load_prompt.py
janito/shell/prompt/session_setup.py
janito/shell/session/config.py
janito/shell/session/history.py
janito/shell/session/manager.py
janito/shell/ui/interactive.py
janito/termweb/app.py
janito/termweb/static/editor.css
janito/termweb/static/editor.css.bak
janito/termweb/static/editor.html
janito/termweb/static/editor.html.bak
janito/termweb/static/editor.js
janito/termweb/static/editor.js.bak
janito/termweb/static/explorer.html.bak
janito/termweb/static/favicon.ico
janito/termweb/static/favicon.ico.bak
janito/termweb/static/index.html
janito/termweb/static/index.html.bak
janito/termweb/static/index.html.bak.bak
janito/termweb/static/landing.html.bak
janito/termweb/static/termicon.svg
janito/termweb/static/termweb.css
janito/termweb/static/termweb.css.bak
janito/termweb/static/termweb.js
janito/termweb/static/termweb.js.bak
janito/termweb/static/termweb.js.bak.bak
janito/termweb/static/termweb_quickopen.js
janito/termweb/static/termweb_quickopen.js.bak
janito/web/__init__.py
janito/web/__main__.py
janito/web/app.py
tests/test_basic.py
tests/test_conversation_history.py
tests/test_find_files.py
tests/test_outline_no_overlap.py
tests/test_outline_python_file.py
tests/test_outline_python_file_complex.py
tests/test_outline_tool_run.py
tests/test_run_powershell_command.py
tests/test_set_role.py
tests/test_tool_registry_docstring_formats.py
tests/test_tool_registry_manual_sim.py
tests/test_tool_registry_validation.py
tests/test_tool_use_tracker.py
tests/test_validate_file_syntax.py
tests/test_validate_file_syntax_xml_html.py
tests/test_validate_markdown_syntax.py