janito 1.14.2__tar.gz → 1.14.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.
Files changed (191) hide show
  1. {janito-1.14.2/janito.egg-info → janito-1.14.3}/PKG-INFO +10 -3
  2. {janito-1.14.2 → janito-1.14.3}/README.md +8 -1
  3. janito-1.14.3/janito/__init__.py +1 -0
  4. {janito-1.14.2 → janito-1.14.3/janito.egg-info}/PKG-INFO +10 -3
  5. {janito-1.14.2 → janito-1.14.3}/pyproject.toml +2 -2
  6. janito-1.14.2/janito/__init__.py +0 -1
  7. {janito-1.14.2 → janito-1.14.3}/LICENSE +0 -0
  8. {janito-1.14.2 → janito-1.14.3}/MANIFEST.in +0 -0
  9. {janito-1.14.2 → janito-1.14.3}/janito/__main__.py +0 -0
  10. {janito-1.14.2 → janito-1.14.3}/janito/agent/__init__.py +0 -0
  11. {janito-1.14.2 → janito-1.14.3}/janito/agent/api_exceptions.py +0 -0
  12. {janito-1.14.2 → janito-1.14.3}/janito/agent/config.py +0 -0
  13. {janito-1.14.2 → janito-1.14.3}/janito/agent/config_defaults.py +0 -0
  14. {janito-1.14.2 → janito-1.14.3}/janito/agent/config_utils.py +0 -0
  15. {janito-1.14.2 → janito-1.14.3}/janito/agent/content_handler.py +0 -0
  16. {janito-1.14.2 → janito-1.14.3}/janito/agent/conversation.py +0 -0
  17. {janito-1.14.2 → janito-1.14.3}/janito/agent/conversation_api.py +0 -0
  18. {janito-1.14.2 → janito-1.14.3}/janito/agent/conversation_exceptions.py +0 -0
  19. {janito-1.14.2 → janito-1.14.3}/janito/agent/conversation_tool_calls.py +0 -0
  20. {janito-1.14.2 → janito-1.14.3}/janito/agent/conversation_ui.py +0 -0
  21. {janito-1.14.2 → janito-1.14.3}/janito/agent/event.py +0 -0
  22. {janito-1.14.2 → janito-1.14.3}/janito/agent/event_dispatcher.py +0 -0
  23. {janito-1.14.2 → janito-1.14.3}/janito/agent/event_handler_protocol.py +0 -0
  24. {janito-1.14.2 → janito-1.14.3}/janito/agent/event_system.py +0 -0
  25. {janito-1.14.2 → janito-1.14.3}/janito/agent/llm_conversation_history.py +0 -0
  26. {janito-1.14.2 → janito-1.14.3}/janito/agent/message_handler.py +0 -0
  27. {janito-1.14.2 → janito-1.14.3}/janito/agent/message_handler_protocol.py +0 -0
  28. {janito-1.14.2 → janito-1.14.3}/janito/agent/openai_client.py +0 -0
  29. {janito-1.14.2 → janito-1.14.3}/janito/agent/openai_schema_generator.py +0 -0
  30. {janito-1.14.2 → janito-1.14.3}/janito/agent/platform_discovery.py +0 -0
  31. {janito-1.14.2 → janito-1.14.3}/janito/agent/profile_manager.py +0 -0
  32. {janito-1.14.2 → janito-1.14.3}/janito/agent/queued_message_handler.py +0 -0
  33. {janito-1.14.2 → janito-1.14.3}/janito/agent/rich_live.py +0 -0
  34. {janito-1.14.2 → janito-1.14.3}/janito/agent/rich_message_handler.py +0 -0
  35. {janito-1.14.2 → janito-1.14.3}/janito/agent/runtime_config.py +0 -0
  36. {janito-1.14.2 → janito-1.14.3}/janito/agent/templates/profiles/system_prompt_template_base.txt.j2 +0 -0
  37. {janito-1.14.2 → janito-1.14.3}/janito/agent/templates/profiles/system_prompt_template_base_pt.txt.j2 +0 -0
  38. {janito-1.14.2 → janito-1.14.3}/janito/agent/test_handler_protocols.py +0 -0
  39. {janito-1.14.2 → janito-1.14.3}/janito/agent/test_openai_schema_generator.py +0 -0
  40. {janito-1.14.2 → janito-1.14.3}/janito/agent/tests/__init__.py +0 -0
  41. {janito-1.14.2 → janito-1.14.3}/janito/agent/tool_base.py +0 -0
  42. {janito-1.14.2 → janito-1.14.3}/janito/agent/tool_executor.py +0 -0
  43. {janito-1.14.2 → janito-1.14.3}/janito/agent/tool_registry.py +0 -0
  44. {janito-1.14.2 → janito-1.14.3}/janito/agent/tool_use_tracker.py +0 -0
  45. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/__init__.py +0 -0
  46. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/ask_user.py +0 -0
  47. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/create_directory.py +0 -0
  48. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/create_file.py +0 -0
  49. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/delete_text_in_file.py +0 -0
  50. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/fetch_url.py +0 -0
  51. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/find_files.py +0 -0
  52. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/get_file_outline/__init__.py +0 -0
  53. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/get_file_outline/core.py +0 -0
  54. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/get_file_outline/markdown_outline.py +0 -0
  55. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/get_file_outline/python_outline.py +0 -0
  56. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/get_file_outline/search_outline.py +0 -0
  57. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/get_lines.py +0 -0
  58. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/move_file.py +0 -0
  59. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/open_url.py +0 -0
  60. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/present_choices.py +0 -0
  61. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/python_command_runner.py +0 -0
  62. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/python_file_runner.py +0 -0
  63. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/python_stdin_runner.py +0 -0
  64. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/remove_directory.py +0 -0
  65. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/remove_file.py +0 -0
  66. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/replace_file.py +0 -0
  67. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/replace_text_in_file.py +0 -0
  68. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/run_bash_command.py +0 -0
  69. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/run_powershell_command.py +0 -0
  70. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/search_text/__init__.py +0 -0
  71. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/search_text/core.py +0 -0
  72. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/search_text/match_lines.py +0 -0
  73. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/search_text/pattern_utils.py +0 -0
  74. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/search_text/traverse_directory.py +0 -0
  75. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/validate_file_syntax/__init__.py +0 -0
  76. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/validate_file_syntax/core.py +0 -0
  77. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/validate_file_syntax/css_validator.py +0 -0
  78. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/validate_file_syntax/html_validator.py +0 -0
  79. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/validate_file_syntax/js_validator.py +0 -0
  80. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/validate_file_syntax/json_validator.py +0 -0
  81. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/validate_file_syntax/markdown_validator.py +0 -0
  82. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/validate_file_syntax/ps1_validator.py +0 -0
  83. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/validate_file_syntax/python_validator.py +0 -0
  84. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/validate_file_syntax/xml_validator.py +0 -0
  85. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools/validate_file_syntax/yaml_validator.py +0 -0
  86. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools_utils/__init__.py +0 -0
  87. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools_utils/action_type.py +0 -0
  88. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools_utils/dir_walk_utils.py +0 -0
  89. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools_utils/formatting.py +0 -0
  90. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools_utils/gitignore_utils.py +0 -0
  91. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools_utils/test_gitignore_utils.py +0 -0
  92. {janito-1.14.2 → janito-1.14.3}/janito/agent/tools_utils/utils.py +0 -0
  93. {janito-1.14.2 → janito-1.14.3}/janito/cli/__init__.py +0 -0
  94. {janito-1.14.2 → janito-1.14.3}/janito/cli/_livereload_log_utils.py +0 -0
  95. {janito-1.14.2 → janito-1.14.3}/janito/cli/_print_config.py +0 -0
  96. {janito-1.14.2 → janito-1.14.3}/janito/cli/_termweb_log_utils.py +0 -0
  97. {janito-1.14.2 → janito-1.14.3}/janito/cli/_utils.py +0 -0
  98. {janito-1.14.2 → janito-1.14.3}/janito/cli/arg_parser.py +0 -0
  99. {janito-1.14.2 → janito-1.14.3}/janito/cli/cli_main.py +0 -0
  100. {janito-1.14.2 → janito-1.14.3}/janito/cli/config_commands.py +0 -0
  101. {janito-1.14.2 → janito-1.14.3}/janito/cli/config_runner.py +0 -0
  102. {janito-1.14.2 → janito-1.14.3}/janito/cli/formatting_runner.py +0 -0
  103. {janito-1.14.2 → janito-1.14.3}/janito/cli/livereload_starter.py +0 -0
  104. {janito-1.14.2 → janito-1.14.3}/janito/cli/logging_setup.py +0 -0
  105. {janito-1.14.2 → janito-1.14.3}/janito/cli/main.py +0 -0
  106. {janito-1.14.2 → janito-1.14.3}/janito/cli/one_shot.py +0 -0
  107. {janito-1.14.2 → janito-1.14.3}/janito/cli/termweb_starter.py +0 -0
  108. {janito-1.14.2 → janito-1.14.3}/janito/i18n/__init__.py +0 -0
  109. {janito-1.14.2 → janito-1.14.3}/janito/i18n/messages.py +0 -0
  110. {janito-1.14.2 → janito-1.14.3}/janito/i18n/pt.py +0 -0
  111. {janito-1.14.2 → janito-1.14.3}/janito/livereload/app.py +0 -0
  112. {janito-1.14.2 → janito-1.14.3}/janito/rich_utils.py +0 -0
  113. {janito-1.14.2 → janito-1.14.3}/janito/shell/__init__.py +0 -0
  114. {janito-1.14.2 → janito-1.14.3}/janito/shell/commands/__init__.py +0 -0
  115. {janito-1.14.2 → janito-1.14.3}/janito/shell/commands/config.py +0 -0
  116. {janito-1.14.2 → janito-1.14.3}/janito/shell/commands/conversation_restart.py +0 -0
  117. {janito-1.14.2 → janito-1.14.3}/janito/shell/commands/edit.py +0 -0
  118. {janito-1.14.2 → janito-1.14.3}/janito/shell/commands/history_view.py +0 -0
  119. {janito-1.14.2 → janito-1.14.3}/janito/shell/commands/lang.py +0 -0
  120. {janito-1.14.2 → janito-1.14.3}/janito/shell/commands/livelogs.py +0 -0
  121. {janito-1.14.2 → janito-1.14.3}/janito/shell/commands/prompt.py +0 -0
  122. {janito-1.14.2 → janito-1.14.3}/janito/shell/commands/session.py +0 -0
  123. {janito-1.14.2 → janito-1.14.3}/janito/shell/commands/session_control.py +0 -0
  124. {janito-1.14.2 → janito-1.14.3}/janito/shell/commands/termweb_log.py +0 -0
  125. {janito-1.14.2 → janito-1.14.3}/janito/shell/commands/tools.py +0 -0
  126. {janito-1.14.2 → janito-1.14.3}/janito/shell/commands/track.py +0 -0
  127. {janito-1.14.2 → janito-1.14.3}/janito/shell/commands/utility.py +0 -0
  128. {janito-1.14.2 → janito-1.14.3}/janito/shell/commands/verbose.py +0 -0
  129. {janito-1.14.2 → janito-1.14.3}/janito/shell/input_history.py +0 -0
  130. {janito-1.14.2 → janito-1.14.3}/janito/shell/main.py +0 -0
  131. {janito-1.14.2 → janito-1.14.3}/janito/shell/prompt/completer.py +0 -0
  132. {janito-1.14.2 → janito-1.14.3}/janito/shell/prompt/load_prompt.py +0 -0
  133. {janito-1.14.2 → janito-1.14.3}/janito/shell/prompt/session_setup.py +0 -0
  134. {janito-1.14.2 → janito-1.14.3}/janito/shell/session/config.py +0 -0
  135. {janito-1.14.2 → janito-1.14.3}/janito/shell/session/history.py +0 -0
  136. {janito-1.14.2 → janito-1.14.3}/janito/shell/session/manager.py +0 -0
  137. {janito-1.14.2 → janito-1.14.3}/janito/shell/ui/interactive.py +0 -0
  138. {janito-1.14.2 → janito-1.14.3}/janito/termweb/app.py +0 -0
  139. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/editor.css +0 -0
  140. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/editor.css.bak +0 -0
  141. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/editor.html +0 -0
  142. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/editor.html.bak +0 -0
  143. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/editor.js +0 -0
  144. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/editor.js.bak +0 -0
  145. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/explorer.html.bak +0 -0
  146. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/favicon.ico +0 -0
  147. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/favicon.ico.bak +0 -0
  148. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/index.html +0 -0
  149. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/index.html.bak +0 -0
  150. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/index.html.bak.bak +0 -0
  151. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/landing.html.bak +0 -0
  152. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/termicon.svg +0 -0
  153. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/termweb.css +0 -0
  154. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/termweb.css.bak +0 -0
  155. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/termweb.js +0 -0
  156. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/termweb.js.bak +0 -0
  157. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/termweb.js.bak.bak +0 -0
  158. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/termweb_quickopen.js +0 -0
  159. {janito-1.14.2 → janito-1.14.3}/janito/termweb/static/termweb_quickopen.js.bak +0 -0
  160. {janito-1.14.2 → janito-1.14.3}/janito/tests/test_rich_utils.py +0 -0
  161. {janito-1.14.2 → janito-1.14.3}/janito/web/__init__.py +0 -0
  162. {janito-1.14.2 → janito-1.14.3}/janito/web/__main__.py +0 -0
  163. {janito-1.14.2 → janito-1.14.3}/janito/web/app.py +0 -0
  164. {janito-1.14.2 → janito-1.14.3}/janito.egg-info/SOURCES.txt +0 -0
  165. {janito-1.14.2 → janito-1.14.3}/janito.egg-info/dependency_links.txt +0 -0
  166. {janito-1.14.2 → janito-1.14.3}/janito.egg-info/entry_points.txt +0 -0
  167. {janito-1.14.2 → janito-1.14.3}/janito.egg-info/requires.txt +0 -0
  168. {janito-1.14.2 → janito-1.14.3}/janito.egg-info/top_level.txt +0 -0
  169. {janito-1.14.2 → janito-1.14.3}/setup.cfg +0 -0
  170. {janito-1.14.2 → janito-1.14.3}/tests/test_basic.py +0 -0
  171. {janito-1.14.2 → janito-1.14.3}/tests/test_find_files.py +0 -0
  172. {janito-1.14.2 → janito-1.14.3}/tests/test_outline_formatter.py +0 -0
  173. {janito-1.14.2 → janito-1.14.3}/tests/test_outline_no_overlap.py +0 -0
  174. {janito-1.14.2 → janito-1.14.3}/tests/test_outline_python_file.py +0 -0
  175. {janito-1.14.2 → janito-1.14.3}/tests/test_outline_python_file_complex.py +0 -0
  176. {janito-1.14.2 → janito-1.14.3}/tests/test_outline_tool_run.py +0 -0
  177. {janito-1.14.2 → janito-1.14.3}/tests/test_platform_discovery.py +0 -0
  178. {janito-1.14.2 → janito-1.14.3}/tests/test_python_command_runner.py +0 -0
  179. {janito-1.14.2 → janito-1.14.3}/tests/test_python_file_runner.py +0 -0
  180. {janito-1.14.2 → janito-1.14.3}/tests/test_python_stdin_runner.py +0 -0
  181. {janito-1.14.2 → janito-1.14.3}/tests/test_rich_message_handler_action_type.py +0 -0
  182. {janito-1.14.2 → janito-1.14.3}/tests/test_run_powershell_command.py +0 -0
  183. {janito-1.14.2 → janito-1.14.3}/tests/test_search_text.py +0 -0
  184. {janito-1.14.2 → janito-1.14.3}/tests/test_set_role.py +0 -0
  185. {janito-1.14.2 → janito-1.14.3}/tests/test_tool_registry_docstring_formats.py +0 -0
  186. {janito-1.14.2 → janito-1.14.3}/tests/test_tool_registry_manual_sim.py +0 -0
  187. {janito-1.14.2 → janito-1.14.3}/tests/test_tool_registry_validation.py +0 -0
  188. {janito-1.14.2 → janito-1.14.3}/tests/test_tool_use_tracker.py +0 -0
  189. {janito-1.14.2 → janito-1.14.3}/tests/test_validate_file_syntax.py +0 -0
  190. {janito-1.14.2 → janito-1.14.3}/tests/test_validate_file_syntax_xml_html.py +0 -0
  191. {janito-1.14.2 → janito-1.14.3}/tests/test_validate_markdown_syntax.py +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: janito
3
- Version: 1.14.2
4
- Summary: Natural Language Programming Agent,
3
+ Version: 1.14.3
4
+ Summary: Language Model Thin Client,
5
5
  Author-email: João Pinto <joao.pinto@gmail.com>
6
6
  License-Expression: MIT
7
7
  Project-URL: homepage, https://janito.dev
@@ -29,7 +29,7 @@ Requires-Dist: mkdocs>=1.5.3; extra == "docs"
29
29
  Requires-Dist: mkdocs-material>=9.4.8; extra == "docs"
30
30
  Dynamic: license-file
31
31
 
32
- # 🚀 Janito: Natural Language Programming Agent
32
+ # 🚀 Janito: Language Model Thin Client
33
33
 
34
34
  Janito is an AI-powered assistant for the command line and web that interprets natural language system_prompt_template to edit code, manage files, and analyze projects using patterns and tools designed by experienced software engineers. It prioritizes transparency, interactive clarification, and precise, reviewable changes.
35
35
 
@@ -43,6 +43,7 @@ For a technical overview, see the [Architecture Guide](docs/reference/architectu
43
43
 
44
44
  ---
45
45
 
46
+
46
47
  ## Listing Available Tools
47
48
 
48
49
  To list all registered tools on the command line, use the option:
@@ -80,6 +81,7 @@ These modifiers can be combined with any interface mode for tailored workflows.
80
81
 
81
82
  ---
82
83
 
84
+
83
85
  ## 📝 Full CLI Options Reference
84
86
 
85
87
  The full list of CLI options has been moved to its own document for clarity. Please see [docs/CLI_OPTIONS.md](docs/CLI_OPTIONS.md) for a comprehensive, up-to-date reference of all supported command-line flags and their descriptions.
@@ -106,6 +108,7 @@ janito --web
106
108
 
107
109
  ---
108
110
 
111
+
109
112
  ## ✨ Key Features
110
113
 
111
114
  - 📝 **Code Editing via Natural Language:** Modify, create, or delete code files simply by describing the changes.
@@ -157,6 +160,7 @@ For details on using models hosted on Azure OpenAI, see [docs/reference/azure-op
157
160
 
158
161
  ---
159
162
 
163
+
160
164
  ## 🧑‍💻 System Prompt & Role
161
165
 
162
166
  Janito operates using a system prompt template that defines its behavior, communication profile, and capabilities. By default, Janito assumes the role of a "software engineer"—this means its responses and actions are tailored to the expectations and best practices of professional software engineering.
@@ -176,6 +180,7 @@ For more details or to customize the prompt, see the template file at `janito/ag
176
180
 
177
181
  ---
178
182
 
183
+
179
184
  ## 🥛 Vanilla Mode
180
185
 
181
186
  Janito supports a "vanilla mode" for pure LLM interaction:
@@ -276,6 +281,7 @@ See `janito/render_prompt.py` and `janito/agent/templates/` for implementation d
276
281
 
277
282
  ---
278
283
 
284
+
279
285
  ## 📂 termweb File Viewer (Web File Preview)
280
286
 
281
287
  Janito includes a lightweight web file viewer (termweb) that starts by default when you use the CLI chat shell. This feature allows you to click on file paths in the terminal (when using a Rich-compatible terminal) and instantly preview file contents in your browser—no full IDE required!
@@ -303,4 +309,5 @@ Janito includes a lightweight web file viewer (termweb) that starts by default w
303
309
  - Uses the Rich library’s link markup for clickable terminal links.
304
310
 
305
311
  ---
312
+
306
313
  _generated by janito.dev_
@@ -1,4 +1,4 @@
1
- # 🚀 Janito: Natural Language Programming Agent
1
+ # 🚀 Janito: Language Model Thin Client
2
2
 
3
3
  Janito is an AI-powered assistant for the command line and web that interprets natural language system_prompt_template to edit code, manage files, and analyze projects using patterns and tools designed by experienced software engineers. It prioritizes transparency, interactive clarification, and precise, reviewable changes.
4
4
 
@@ -12,6 +12,7 @@ For a technical overview, see the [Architecture Guide](docs/reference/architectu
12
12
 
13
13
  ---
14
14
 
15
+
15
16
  ## Listing Available Tools
16
17
 
17
18
  To list all registered tools on the command line, use the option:
@@ -49,6 +50,7 @@ These modifiers can be combined with any interface mode for tailored workflows.
49
50
 
50
51
  ---
51
52
 
53
+
52
54
  ## 📝 Full CLI Options Reference
53
55
 
54
56
  The full list of CLI options has been moved to its own document for clarity. Please see [docs/CLI_OPTIONS.md](docs/CLI_OPTIONS.md) for a comprehensive, up-to-date reference of all supported command-line flags and their descriptions.
@@ -75,6 +77,7 @@ janito --web
75
77
 
76
78
  ---
77
79
 
80
+
78
81
  ## ✨ Key Features
79
82
 
80
83
  - 📝 **Code Editing via Natural Language:** Modify, create, or delete code files simply by describing the changes.
@@ -126,6 +129,7 @@ For details on using models hosted on Azure OpenAI, see [docs/reference/azure-op
126
129
 
127
130
  ---
128
131
 
132
+
129
133
  ## 🧑‍💻 System Prompt & Role
130
134
 
131
135
  Janito operates using a system prompt template that defines its behavior, communication profile, and capabilities. By default, Janito assumes the role of a "software engineer"—this means its responses and actions are tailored to the expectations and best practices of professional software engineering.
@@ -145,6 +149,7 @@ For more details or to customize the prompt, see the template file at `janito/ag
145
149
 
146
150
  ---
147
151
 
152
+
148
153
  ## 🥛 Vanilla Mode
149
154
 
150
155
  Janito supports a "vanilla mode" for pure LLM interaction:
@@ -245,6 +250,7 @@ See `janito/render_prompt.py` and `janito/agent/templates/` for implementation d
245
250
 
246
251
  ---
247
252
 
253
+
248
254
  ## 📂 termweb File Viewer (Web File Preview)
249
255
 
250
256
  Janito includes a lightweight web file viewer (termweb) that starts by default when you use the CLI chat shell. This feature allows you to click on file paths in the terminal (when using a Rich-compatible terminal) and instantly preview file contents in your browser—no full IDE required!
@@ -272,4 +278,5 @@ Janito includes a lightweight web file viewer (termweb) that starts by default w
272
278
  - Uses the Rich library’s link markup for clickable terminal links.
273
279
 
274
280
  ---
281
+
275
282
  _generated by janito.dev_
@@ -0,0 +1 @@
1
+ __version__ = "1.14.3"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: janito
3
- Version: 1.14.2
4
- Summary: Natural Language Programming Agent,
3
+ Version: 1.14.3
4
+ Summary: Language Model Thin Client,
5
5
  Author-email: João Pinto <joao.pinto@gmail.com>
6
6
  License-Expression: MIT
7
7
  Project-URL: homepage, https://janito.dev
@@ -29,7 +29,7 @@ Requires-Dist: mkdocs>=1.5.3; extra == "docs"
29
29
  Requires-Dist: mkdocs-material>=9.4.8; extra == "docs"
30
30
  Dynamic: license-file
31
31
 
32
- # 🚀 Janito: Natural Language Programming Agent
32
+ # 🚀 Janito: Language Model Thin Client
33
33
 
34
34
  Janito is an AI-powered assistant for the command line and web that interprets natural language system_prompt_template to edit code, manage files, and analyze projects using patterns and tools designed by experienced software engineers. It prioritizes transparency, interactive clarification, and precise, reviewable changes.
35
35
 
@@ -43,6 +43,7 @@ For a technical overview, see the [Architecture Guide](docs/reference/architectu
43
43
 
44
44
  ---
45
45
 
46
+
46
47
  ## Listing Available Tools
47
48
 
48
49
  To list all registered tools on the command line, use the option:
@@ -80,6 +81,7 @@ These modifiers can be combined with any interface mode for tailored workflows.
80
81
 
81
82
  ---
82
83
 
84
+
83
85
  ## 📝 Full CLI Options Reference
84
86
 
85
87
  The full list of CLI options has been moved to its own document for clarity. Please see [docs/CLI_OPTIONS.md](docs/CLI_OPTIONS.md) for a comprehensive, up-to-date reference of all supported command-line flags and their descriptions.
@@ -106,6 +108,7 @@ janito --web
106
108
 
107
109
  ---
108
110
 
111
+
109
112
  ## ✨ Key Features
110
113
 
111
114
  - 📝 **Code Editing via Natural Language:** Modify, create, or delete code files simply by describing the changes.
@@ -157,6 +160,7 @@ For details on using models hosted on Azure OpenAI, see [docs/reference/azure-op
157
160
 
158
161
  ---
159
162
 
163
+
160
164
  ## 🧑‍💻 System Prompt & Role
161
165
 
162
166
  Janito operates using a system prompt template that defines its behavior, communication profile, and capabilities. By default, Janito assumes the role of a "software engineer"—this means its responses and actions are tailored to the expectations and best practices of professional software engineering.
@@ -176,6 +180,7 @@ For more details or to customize the prompt, see the template file at `janito/ag
176
180
 
177
181
  ---
178
182
 
183
+
179
184
  ## 🥛 Vanilla Mode
180
185
 
181
186
  Janito supports a "vanilla mode" for pure LLM interaction:
@@ -276,6 +281,7 @@ See `janito/render_prompt.py` and `janito/agent/templates/` for implementation d
276
281
 
277
282
  ---
278
283
 
284
+
279
285
  ## 📂 termweb File Viewer (Web File Preview)
280
286
 
281
287
  Janito includes a lightweight web file viewer (termweb) that starts by default when you use the CLI chat shell. This feature allows you to click on file paths in the terminal (when using a Rich-compatible terminal) and instantly preview file contents in your browser—no full IDE required!
@@ -303,4 +309,5 @@ Janito includes a lightweight web file viewer (termweb) that starts by default w
303
309
  - Uses the Rich library’s link markup for clickable terminal links.
304
310
 
305
311
  ---
312
+
306
313
  _generated by janito.dev_
@@ -1,8 +1,8 @@
1
1
  [project]
2
2
  name = "janito"
3
3
 
4
- version = "1.14.2"
5
- description = "Natural Language Programming Agent,"
4
+ version = "1.14.3"
5
+ description = "Language Model Thin Client,"
6
6
  authors = [
7
7
  { name = "João Pinto", email = "joao.pinto@gmail.com" }
8
8
  ]
@@ -1 +0,0 @@
1
- __version__ = "1.14.2"
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