ara-cli 0.1.10.0__py3-none-any.whl → 0.1.13.3__py3-none-any.whl

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 (140) hide show
  1. ara_cli/__init__.py +51 -6
  2. ara_cli/__main__.py +270 -103
  3. ara_cli/ara_command_action.py +106 -63
  4. ara_cli/ara_config.py +187 -128
  5. ara_cli/ara_subcommands/__init__.py +0 -0
  6. ara_cli/ara_subcommands/autofix.py +26 -0
  7. ara_cli/ara_subcommands/chat.py +27 -0
  8. ara_cli/ara_subcommands/classifier_directory.py +16 -0
  9. ara_cli/ara_subcommands/common.py +100 -0
  10. ara_cli/ara_subcommands/config.py +221 -0
  11. ara_cli/ara_subcommands/convert.py +43 -0
  12. ara_cli/ara_subcommands/create.py +75 -0
  13. ara_cli/ara_subcommands/delete.py +22 -0
  14. ara_cli/ara_subcommands/extract.py +22 -0
  15. ara_cli/ara_subcommands/fetch.py +41 -0
  16. ara_cli/ara_subcommands/fetch_agents.py +22 -0
  17. ara_cli/ara_subcommands/fetch_scripts.py +19 -0
  18. ara_cli/ara_subcommands/fetch_templates.py +19 -0
  19. ara_cli/ara_subcommands/list.py +139 -0
  20. ara_cli/ara_subcommands/list_tags.py +25 -0
  21. ara_cli/ara_subcommands/load.py +48 -0
  22. ara_cli/ara_subcommands/prompt.py +136 -0
  23. ara_cli/ara_subcommands/read.py +47 -0
  24. ara_cli/ara_subcommands/read_status.py +20 -0
  25. ara_cli/ara_subcommands/read_user.py +20 -0
  26. ara_cli/ara_subcommands/reconnect.py +27 -0
  27. ara_cli/ara_subcommands/rename.py +22 -0
  28. ara_cli/ara_subcommands/scan.py +14 -0
  29. ara_cli/ara_subcommands/set_status.py +22 -0
  30. ara_cli/ara_subcommands/set_user.py +22 -0
  31. ara_cli/ara_subcommands/template.py +16 -0
  32. ara_cli/artefact_autofix.py +154 -63
  33. ara_cli/artefact_converter.py +256 -0
  34. ara_cli/artefact_models/artefact_model.py +106 -25
  35. ara_cli/artefact_models/artefact_templates.py +20 -10
  36. ara_cli/artefact_models/epic_artefact_model.py +11 -2
  37. ara_cli/artefact_models/feature_artefact_model.py +31 -1
  38. ara_cli/artefact_models/userstory_artefact_model.py +15 -3
  39. ara_cli/artefact_scan.py +2 -2
  40. ara_cli/chat.py +283 -80
  41. ara_cli/chat_agent/__init__.py +0 -0
  42. ara_cli/chat_agent/agent_process_manager.py +155 -0
  43. ara_cli/chat_script_runner/__init__.py +0 -0
  44. ara_cli/chat_script_runner/script_completer.py +23 -0
  45. ara_cli/chat_script_runner/script_finder.py +41 -0
  46. ara_cli/chat_script_runner/script_lister.py +36 -0
  47. ara_cli/chat_script_runner/script_runner.py +36 -0
  48. ara_cli/chat_web_search/__init__.py +0 -0
  49. ara_cli/chat_web_search/web_search.py +263 -0
  50. ara_cli/commands/agent_run_command.py +98 -0
  51. ara_cli/commands/fetch_agents_command.py +106 -0
  52. ara_cli/commands/fetch_scripts_command.py +43 -0
  53. ara_cli/commands/fetch_templates_command.py +39 -0
  54. ara_cli/commands/fetch_templates_commands.py +39 -0
  55. ara_cli/commands/list_agents_command.py +39 -0
  56. ara_cli/commands/read_command.py +17 -4
  57. ara_cli/completers.py +180 -0
  58. ara_cli/constants.py +2 -0
  59. ara_cli/directory_navigator.py +37 -4
  60. ara_cli/file_loaders/text_file_loader.py +2 -2
  61. ara_cli/global_file_lister.py +5 -15
  62. ara_cli/llm_utils.py +58 -0
  63. ara_cli/prompt_chat.py +20 -4
  64. ara_cli/prompt_extractor.py +199 -76
  65. ara_cli/prompt_handler.py +160 -59
  66. ara_cli/tag_extractor.py +38 -18
  67. ara_cli/template_loader.py +3 -2
  68. ara_cli/template_manager.py +52 -21
  69. ara_cli/templates/global-scripts/hello_global.py +1 -0
  70. ara_cli/templates/prompt-modules/commands/add_scenarios_for_new_behaviour.feature_creation_agent.commands.md +1 -0
  71. ara_cli/templates/prompt-modules/commands/align_feature_with_implementation_changes.interview_agent.commands.md +1 -0
  72. ara_cli/templates/prompt-modules/commands/analyze_codebase_and_plan_tasks.interview_agent.commands.md +1 -0
  73. ara_cli/templates/prompt-modules/commands/choose_best_parent_artefact.interview_agent.commands.md +1 -0
  74. ara_cli/templates/prompt-modules/commands/create_tasks_from_artefact_content.interview_agent.commands.md +1 -0
  75. ara_cli/templates/prompt-modules/commands/create_tests_for_uncovered_modules.test_generation_agent.commands.md +1 -0
  76. ara_cli/templates/prompt-modules/commands/derive_features_from_video_description.feature_creation_agent.commands.md +1 -0
  77. ara_cli/templates/prompt-modules/commands/describe_agent_capabilities.agent.commands.md +1 -0
  78. ara_cli/templates/prompt-modules/commands/empty.commands.md +2 -12
  79. ara_cli/templates/prompt-modules/commands/execute_scoped_todos_in_task.interview_agent.commands.md +1 -0
  80. ara_cli/templates/prompt-modules/commands/explain_single_file_purpose.interview_agent.commands.md +1 -0
  81. ara_cli/templates/prompt-modules/commands/extract_file_information_bullets.interview_agent.commands.md +1 -0
  82. ara_cli/templates/prompt-modules/commands/extract_general.commands.md +12 -0
  83. ara_cli/templates/prompt-modules/commands/extract_markdown.commands.md +11 -0
  84. ara_cli/templates/prompt-modules/commands/extract_python.commands.md +13 -0
  85. ara_cli/templates/prompt-modules/commands/feature_add_or_modifiy_specified_behavior.commands.md +36 -0
  86. ara_cli/templates/prompt-modules/commands/feature_generate_initial_specified_bevahior.commands.md +53 -0
  87. ara_cli/templates/prompt-modules/commands/fix_failing_behave_step_definitions.interview_agent.commands.md +1 -0
  88. ara_cli/templates/prompt-modules/commands/fix_failing_pytest_tests.interview_agent.commands.md +1 -0
  89. ara_cli/templates/prompt-modules/commands/general_instruction_policy.commands.md +47 -0
  90. ara_cli/templates/prompt-modules/commands/generate_and_fix_pytest_tests.test_generation_agent.commands.md +1 -0
  91. ara_cli/templates/prompt-modules/commands/prompt_template_tech_stack_transformer.commands.md +95 -0
  92. ara_cli/templates/prompt-modules/commands/python_bug_fixing_code.commands.md +34 -0
  93. ara_cli/templates/prompt-modules/commands/python_generate_code.commands.md +27 -0
  94. ara_cli/templates/prompt-modules/commands/python_refactoring_code.commands.md +39 -0
  95. ara_cli/templates/prompt-modules/commands/python_step_definitions_generation_and_fixing.commands.md +40 -0
  96. ara_cli/templates/prompt-modules/commands/python_unittest_generation_and_fixing.commands.md +48 -0
  97. ara_cli/templates/prompt-modules/commands/suggest_next_story_child_tasks.interview_agent.commands.md +1 -0
  98. ara_cli/templates/prompt-modules/commands/summarize_or_transcribe_media.interview_agent.commands.md +1 -0
  99. ara_cli/templates/prompt-modules/commands/update_feature_to_match_implementation.feature_creation_agent.commands.md +1 -0
  100. ara_cli/templates/prompt-modules/commands/update_user_story_with_requirements.interview_agent.commands.md +1 -0
  101. ara_cli/version.py +1 -1
  102. {ara_cli-0.1.10.0.dist-info → ara_cli-0.1.13.3.dist-info}/METADATA +34 -1
  103. {ara_cli-0.1.10.0.dist-info → ara_cli-0.1.13.3.dist-info}/RECORD +123 -54
  104. tests/test_ara_command_action.py +31 -19
  105. tests/test_ara_config.py +177 -90
  106. tests/test_artefact_autofix.py +170 -97
  107. tests/test_artefact_autofix_integration.py +495 -0
  108. tests/test_artefact_converter.py +357 -0
  109. tests/test_artefact_extraction.py +564 -0
  110. tests/test_artefact_scan.py +1 -1
  111. tests/test_chat.py +162 -126
  112. tests/test_chat_givens_images.py +603 -0
  113. tests/test_chat_script_runner.py +454 -0
  114. tests/test_global_file_lister.py +1 -1
  115. tests/test_llm_utils.py +164 -0
  116. tests/test_prompt_chat.py +343 -0
  117. tests/test_prompt_extractor.py +683 -0
  118. tests/test_prompt_handler.py +12 -4
  119. tests/test_tag_extractor.py +19 -13
  120. tests/test_web_search.py +467 -0
  121. ara_cli/ara_command_parser.py +0 -605
  122. ara_cli/templates/prompt-modules/blueprints/complete_pytest_unittest.blueprint.md +0 -27
  123. ara_cli/templates/prompt-modules/blueprints/task_todo_list_implement_feature_BDD_way.blueprint.md +0 -30
  124. ara_cli/templates/prompt-modules/commands/artefact_classification.commands.md +0 -9
  125. ara_cli/templates/prompt-modules/commands/artefact_extension.commands.md +0 -17
  126. ara_cli/templates/prompt-modules/commands/artefact_formulation.commands.md +0 -14
  127. ara_cli/templates/prompt-modules/commands/behave_step_generation.commands.md +0 -102
  128. ara_cli/templates/prompt-modules/commands/code_generation_complex.commands.md +0 -20
  129. ara_cli/templates/prompt-modules/commands/code_generation_simple.commands.md +0 -13
  130. ara_cli/templates/prompt-modules/commands/error_fixing.commands.md +0 -20
  131. ara_cli/templates/prompt-modules/commands/feature_file_update.commands.md +0 -18
  132. ara_cli/templates/prompt-modules/commands/feature_formulation.commands.md +0 -43
  133. ara_cli/templates/prompt-modules/commands/js_code_generation_simple.commands.md +0 -13
  134. ara_cli/templates/prompt-modules/commands/refactoring.commands.md +0 -15
  135. ara_cli/templates/prompt-modules/commands/refactoring_analysis.commands.md +0 -9
  136. ara_cli/templates/prompt-modules/commands/reverse_engineer_feature_file.commands.md +0 -15
  137. ara_cli/templates/prompt-modules/commands/reverse_engineer_program_flow.commands.md +0 -19
  138. {ara_cli-0.1.10.0.dist-info → ara_cli-0.1.13.3.dist-info}/WHEEL +0 -0
  139. {ara_cli-0.1.10.0.dist-info → ara_cli-0.1.13.3.dist-info}/entry_points.txt +0 -0
  140. {ara_cli-0.1.10.0.dist-info → ara_cli-0.1.13.3.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,40 @@
1
+ ### COMMANDS FOR CREATING AND CORRECTING STEP DEFINITIONS FOR FEATURE FILES
2
+
3
+ **MANDATORY INPUT VALIDATION:**
4
+ - Feature files (.feature) must be provided
5
+ - Behave test report must be provided
6
+
7
+ **PROMPT DEFINITION ERROR:** If mandatory input is missing, immediately stop and return: "ERROR: Missing mandatory input. Please provide both feature files (.feature) and behave test report before proceeding."
8
+
9
+ **OPTIONAL INPUT:**
10
+ - Already existing step definitions
11
+
12
+ **PROMPT DEFINITION WARNING:** If optional input is missing: "WARNING: No existing step definitions provided. If step definitions already exist in your project, please include them as input context to avoid duplication and ensure consistency."
13
+
14
+ ### Your job is now:
15
+ * Silently analyze the given feature files and behave test report to understand current test failures and missing step implementations.
16
+ * Silently review any provided existing step definitions to avoid duplication and maintain consistency.
17
+ * Develop step definition implementation strategies that minimize code changes with respect to existing step definitions, prefer reusing existing step patterns over new implementations.
18
+ * The max function length should not exceed 25 lines. The max file length should not exceed 120 lines.
19
+ * Always prefer to use existing python packages over your own implementation.
20
+ * Use the behave testing framework for all step definition implementations.
21
+ * Apply mocking extensively to isolate step definitions from external inputs and interfaces using unittest.mock or pytest-mock.
22
+ * Fully implement all missing step definitions for the given feature files in an easy testable and modular/extensible way. Follow PEP8 coding guidelines, use numpy style docstrings for inline function documentation, apply as coding and design principle the separation of concerns and single responsibility principle.
23
+ * Generated or reworked python methods must not exceed 25 lines of code. In case methods exceed this length they need to be split according to the single responsibility principle and separation of concerns.
24
+ * Generated or reworked python files must not exceed 120 lines of code. In case files exceed this length they need to be split according to the single responsibility principle and separation of concerns.
25
+ * Implement proper assertion methods that provide clear error messages when steps fail.
26
+ * Use context.scenario, context.feature, and context.table appropriately for data sharing between steps.
27
+ * Implement proper cleanup in @after_scenario and @after_feature hooks when necessary.
28
+
29
+ * Only return full copy pastable file content for step definition files. Use for every single generated code block this markdown code block format:
30
+
31
+ ```python
32
+ # [ ] extract
33
+ # filename: ara/features/steps/{filename}_steps.py
34
+ {python code}
35
+ ```
36
+
37
+ * The extract and filename statements are only allowed once per markdown code block
38
+ * The first character of the first line inside your code block must be '#' and the first character of the second line inside your code block must be '#'
39
+ * replace the '# [ ] extract' statement of the template with '# [x] extract' in your response
40
+ * in case of files get deprecated give me a list of files that can be safely deleted
@@ -0,0 +1,48 @@
1
+ ### COMMANDS FOR CREATING AND CORRECTING UNIT TESTS
2
+
3
+ **MANDATORY INPUT VALIDATION:**
4
+ - Feature files (.feature) must be provided
5
+ - Code coverage report or pytest test report must be provided
6
+
7
+ **PROMPT DEFINITION ERROR:** If mandatory input is missing, immediately stop and return: "ERROR: Missing mandatory input. Please provide both feature files (.feature) and code coverage/pytest test report before proceeding."
8
+
9
+ **OPTIONAL INPUT:**
10
+ - Already existing unit tests
11
+
12
+ **PROMPT DEFINITION WARNING:** If optional input is missing: "WARNING: No existing unit tests provided. If unit tests already exist in your project, please include them as input context to avoid duplication and ensure consistency."
13
+
14
+ #### Your job is now:
15
+ * Silently analyze the given feature files and code coverage/pytest test report to understand current test gaps and implementation requirements.
16
+ * Silently review any provided existing unit tests to avoid duplication and maintain consistency with existing test patterns.
17
+ * Develop unit test implementation strategies that minimize code changes with respect to existing tests, prefer reusing existing test patterns and fixtures over new implementations.
18
+ * The max function length should not exceed 25 lines. The max file length should not exceed 120 lines.
19
+ * Always prefer to use existing python packages over your own implementation.
20
+ * Use the pytest testing framework for all unit test implementations.
21
+ * Apply mocking extensively to isolate unit tests from external inputs and interfaces using unittest.mock or pytest-mock. Mock all external dependencies, file I/O, network calls, and database interactions.
22
+ * Fully implement comprehensive unit tests that achieve at least 90% code coverage for the specified behavior in an easy maintainable and modular/extensible way. Follow PEP8 coding guidelines, use numpy style docstrings for inline function documentation, apply as coding and design principle the separation of concerns and single responsibility principle.
23
+ * Generated or reworked python methods must not exceed 25 lines of code. In case methods exceed this length they need to be split according to the single responsibility principle and separation of concerns.
24
+ * Generated or reworked python files must not exceed 120 lines of code. In case files exceed this length they need to be split according to the single responsibility principle and separation of concerns.
25
+
26
+ * Implement comprehensive test cases covering:
27
+ - Happy path scenarios
28
+ - Edge cases and boundary conditions
29
+ - Error handling and exception scenarios
30
+ - Input validation scenarios
31
+
32
+ * Use pytest fixtures for test data setup and teardown to ensure test isolation.
33
+ * Implement parametrized tests using @pytest.mark.parametrize for testing multiple input combinations efficiently.
34
+ * Use descriptive test method names that clearly indicate what is being tested.
35
+ * Include proper assertions with meaningful error messages.
36
+
37
+ * Only return full copy pastable file content for unit test files. Use for every single generated code block this markdown code block format:
38
+
39
+ ```python
40
+ # [ ] extract
41
+ # filename: test/test_{filename}.py
42
+ {python code}
43
+ ```
44
+
45
+ * The extract and filename statements are only allowed once per markdown code block
46
+ * The first character of the first line inside your code block must be '#' and the first character of the second line inside your code block must be '#'
47
+ * replace the '# [ ] extract' statement of the template with '# [x] extract' in your response
48
+ * in case of files get deprecated give me a list of files that can be safely deleted
@@ -0,0 +1 @@
1
+ From the list of tasks attached to the user story at {user_story_task_file_path}, analyse all child tasks and propose the next {number_of_next_tasks} concrete tasks that should be created. For each new task, provide a short name, a one-sentence description, and the main files that will be affected.
@@ -0,0 +1 @@
1
+ Here is the path to the multimedia data: {media_file_path} / {attached_media_file_path}. Generate a concise summary of the transcript / return the full transcript of the audio or video.
@@ -0,0 +1 @@
1
+ Update the feature file at {feature_file_path} so that it fully reflects the current behaviour of the implementation in {implementation_file_paths}. Keep the existing scenario structure where possible, adjust steps where necessary, and ensure that edge cases and negative paths are described explicitly.
@@ -0,0 +1 @@
1
+ Reformulate and update the user story in {user_story_file_path} according to the new requirements {updated_requirements_description}. Reflect these requirements in clear acceptance criteria and, if needed, propose follow-up user stories.
ara_cli/version.py CHANGED
@@ -1,2 +1,2 @@
1
1
  # version.py
2
- __version__ = "0.1.10.0" # fith parameter like .0 for local install test purposes only. official numbers should be 4 digit numbers
2
+ __version__ = "0.1.13.3" # fith parameter like .0 for local install test purposes only. official numbers should be 4 digit numbers
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ara_cli
3
- Version: 0.1.10.0
3
+ Version: 0.1.13.3
4
4
  Summary: Powerful, open source command-line tool for managing, structuring and automating software development artifacts in line with Business-Driven Development (BDD) and AI-assisted processes
5
5
  Description-Content-Type: text/markdown
6
6
  Requires-Dist: langfuse
@@ -19,6 +19,10 @@ Requires-Dist: pydantic
19
19
  Requires-Dist: pydantic_ai
20
20
  Requires-Dist: python-docx
21
21
  Requires-Dist: pymupdf4llm
22
+ Requires-Dist: typer
23
+ Requires-Dist: psutil
24
+ Requires-Dist: requests
25
+ Requires-Dist: rich
22
26
  Dynamic: description
23
27
  Dynamic: description-content-type
24
28
  Dynamic: requires-dist
@@ -129,6 +133,35 @@ ara autofix
129
133
 
130
134
  See `ara -h` for the complete list of commands and usage examples.
131
135
 
136
+ ---
137
+ ## Agent Commands
138
+
139
+ `ara-cli` includes powerful agent-based capabilities that can be accessed through the interactive chat. These agents can perform complex, multi-step tasks, such as conducting interviews or automating coding workflows.
140
+
141
+ To use the agent commands, first start an interactive chat session:
142
+
143
+ ```bash
144
+ ara prompt chat <artefact_classifier> <artefact_name>
145
+ ```
146
+
147
+ Once inside the chat, you can use the following commands to manage agents:
148
+
149
+ | Command | Shortcut | Description |
150
+ | ---------------- | -------- | ------------------------------------------------- |
151
+ | `AGENT_RUN` | `a` | Run an agent by name. |
152
+ | `AGENT_STOP` | `as` | Stop the currently running agent. |
153
+ | `AGENT_CONTINUE` | `ac` | Continue the agent's operation without new input. |
154
+ | `AGENT_STATUS` | `astat` | Show the status of the current agent. |
155
+ | `exit` | | Exit from agent interfacto back to chat. |
156
+
157
+ **Example:**
158
+
159
+ ```bash
160
+ ara> a interview_agent
161
+ ```
162
+
163
+ **Important:** The agent functionality requires the `ara-agents` package to be installed separately. If you do not have `ara-agents` installed, please contact the Talsen Team for assistance.
164
+
132
165
  ---
133
166
 
134
167
  ## Artefact Structure
@@ -1,9 +1,9 @@
1
- ara_cli/__init__.py,sha256=DuzXKimZ6JtUEnp48qCQcnojDflBtYjT6Na_twO5EzM,505
2
- ara_cli/__main__.py,sha256=sumQaIYg6wJdcT-nQjJpK9DGaBUTszjPrgZLPN2bUVs,3520
3
- ara_cli/ara_command_action.py,sha256=VJSReKfgUQk62DeMcY4EN228FvgF1m8NiHf-ckrigdA,24450
4
- ara_cli/ara_command_parser.py,sha256=4_LXxj9w7eAY8d_s8pMlKmxtMr9cX9y2pD5azNeJjsg,22288
5
- ara_cli/ara_config.py,sha256=vZsY2zYJdlSExRE84L5LqRH3DjveeuMSmG5fC8HDIVc,9794
6
- ara_cli/artefact_autofix.py,sha256=9j_bh0HGnN6HVT9OGKVp85VgDklpx3XpSc9MxBCldU4,25050
1
+ ara_cli/__init__.py,sha256=jqaaZEIYz0LRAOaF0Z4ZdkVCN9Ak17ie-UM1fZKv5co,1576
2
+ ara_cli/__main__.py,sha256=U_A7kk-3cngFfmDqPoC3IoDwPiY1TlfjbYdJ6Y9lsew,12733
3
+ ara_cli/ara_command_action.py,sha256=Pi6w0LEAGUWxS0AuI4VYPTsVRnByhsHBTYQZqP7Q6JU,25634
4
+ ara_cli/ara_config.py,sha256=NcKGV4EsowV7anqWIvCNXolpux3rZ6vBOkDEiIFyiOM,11580
5
+ ara_cli/artefact_autofix.py,sha256=fD4LEsFfr2BAHoa7H7q-S_zTSIHdAQSc1OWPZFE9hGo,26552
6
+ ara_cli/artefact_converter.py,sha256=DMXOfALnMx6Zwf2a-vle_lgjdAMI3KrMr4u06hFvtNY,10249
7
7
  ara_cli/artefact_creator.py,sha256=fRrDaGZvOqJqDb_DLXqMTed2XfIvQMIHjLgOuHOi3Qg,5973
8
8
  ara_cli/artefact_deleter.py,sha256=T1vS2s3k_BW86Sd8FExx8nC3BIL05xE9KZLkeZsZrKM,1891
9
9
  ara_cli/artefact_fuzzy_search.py,sha256=XMzbMBOJ2YrgFi566jYNB3XeRAmJh7-zqV2QJYbhtlc,3006
@@ -11,53 +11,98 @@ ara_cli/artefact_link_updater.py,sha256=nKdxTpDKqWTOAMD8viKmUaklSFGWzJZ8S8E8xW_A
11
11
  ara_cli/artefact_lister.py,sha256=M-ggazAgZ-OLeW9NB48r_sd6zPx0p4hEpeS63qHwI1A,4176
12
12
  ara_cli/artefact_reader.py,sha256=-6E1VhIlh2oJE1Rn8ARcHRc_E9N4uk8cEViKMoywm6E,7753
13
13
  ara_cli/artefact_renamer.py,sha256=8S4QWD19_FGKsKlWojnu_RUOxx0u9rmLugydM4s4VDc,4219
14
- ara_cli/artefact_scan.py,sha256=msPCm-vPWOAZ_e_z5GylXxq1MtNlmJ4zvKrsdOFCWF4,4813
15
- ara_cli/chat.py,sha256=Vp1HzSaaUsfOldOjxJc0ff68lQJWiIet0LJ22jjMYUs,40776
14
+ ara_cli/artefact_scan.py,sha256=qY2Gp4zVcqMXhtuP7rICW0UBG4pcj3W2ABofnL9SIG8,4806
15
+ ara_cli/chat.py,sha256=rEZknOgjZEP3R3YNnfMT1KoOZ-5HececbPJr4PUOcGk,48672
16
16
  ara_cli/classifier.py,sha256=zWskj7rBYdqYBGjksBm46iTgVU5IIf2PZsJr4qeiwVU,1878
17
17
  ara_cli/codefusionretriever.py,sha256=fCHgXdIBRzkVAnapX-KI2NQ44XbrrF4tEQmn5J6clUI,1980
18
18
  ara_cli/codehierachieretriever.py,sha256=Xd3EgEWWhkSf1TmTWtf8X5_YvyE_4B66nRrqarwSiTU,1182
19
19
  ara_cli/commandline_completer.py,sha256=b00Dqb5n7SecpxYIDLxAfYhp8X6e3c8a5qYz6ko0i3E,1192
20
- ara_cli/directory_navigator.py,sha256=6QbSAjJrJ5a6Lutol9J4HFgVDMiAQ672ny9TATrh04U,3318
20
+ ara_cli/completers.py,sha256=ZVj-x942IN4xOHfUv8Iyob9ZcXQ403l5oMAOiJG1Xlk,6394
21
+ ara_cli/constants.py,sha256=ubQYegN70gjnkix5JIyODlC1O9yHMbp_jg4ybVnsJ2U,74
22
+ ara_cli/directory_navigator.py,sha256=mr34qhuz8MT2Qj_sTddffCB2nzYpWCg9AWLPdaFjeOM,4518
21
23
  ara_cli/error_handler.py,sha256=nNaJSq82f3xiz_QFRKPg5kX_-oI-UoFdRJ2OTj1AR18,4019
22
24
  ara_cli/file_classifier.py,sha256=nUcNrhflUydCyCRbXHjEEXYwwwfUm65lYnNEvc86fpM,4026
23
25
  ara_cli/file_lister.py,sha256=0C-j8IzajXo5qlvnuy5WFfe43ALwJ-0JFh2K6Xx2ccw,2332
24
26
  ara_cli/filename_validator.py,sha256=Aw9PL8d5-Ymhp3EY6lDrUBk3cudaNqo1Uw5RzPpI1jA,118
25
- ara_cli/global_file_lister.py,sha256=IIrtFoN5KYyJ3jVPanXZJ4UbYZfSdONRwxkZzvmq6-k,2806
27
+ ara_cli/global_file_lister.py,sha256=y2UCDoNXODnTAjmlzlV5cf7QxiZ55KEBbbOGQ_JpiHw,2303
26
28
  ara_cli/list_filter.py,sha256=qKGwwQsrWe7L5FbdxEbBYD1bbbi8c-RMypjXqXvLbgs,5291
29
+ ara_cli/llm_utils.py,sha256=kTQnBv5V8kagHH-0it3juBtjha6coO2VTG1SAZTtT28,1979
27
30
  ara_cli/output_suppressor.py,sha256=nwiHaQLwabOjMoJOeUESBnZszGMxrQZfJ3N2OvahX7Y,389
28
- ara_cli/prompt_chat.py,sha256=kd_OINDQFit6jN04bb7mzgY259JBbRaTaNp9F-webkc,1346
29
- ara_cli/prompt_extractor.py,sha256=WloRgfcEdIVq37BpdWAd2X3EMu0bcNN_Wuws1T2YiUg,8418
30
- ara_cli/prompt_handler.py,sha256=N0zH5k9T6udKAbMolxEAaAwiFo03h5aF-IY3BmMLEos,27924
31
+ ara_cli/prompt_chat.py,sha256=FeULZtiOJUGKv-jawA29EclsNzmWF8UMnRfT0iRD6KI,1444
32
+ ara_cli/prompt_extractor.py,sha256=zpEvOcWjEVOlgvfkt7HTaXAPLwyEPuRcr0YDHdCA3vA,12594
33
+ ara_cli/prompt_handler.py,sha256=3iSdEJe6RL496Gc1KncOREK_Nb9HYr7Ti9KTTwA_sTU,30393
31
34
  ara_cli/prompt_rag.py,sha256=ydlhe4CUqz0jdzlY7jBbpKaf_5fjMrAZKnriKea3ZAg,7485
32
35
  ara_cli/run_file_lister.py,sha256=XbrrDTJXp1LFGx9Lv91SNsEHZPP-PyEMBF_P4btjbDA,2360
33
- ara_cli/tag_extractor.py,sha256=k2yRl7dAMZ4YTARzUke4wgY0oEIOmWkOHGet7nXB6uw,3317
34
- ara_cli/template_loader.py,sha256=uEpYOchT5d-OO5r-W0-h605Xilvuv56i1VKSy4_9NaE,10734
35
- ara_cli/template_manager.py,sha256=l2c785YHB7m0e2TjE0CX-nwXrS4v3EiT9qrS5KuatAc,7105
36
+ ara_cli/tag_extractor.py,sha256=vjuPGGlT3mQpez6eY9LLgIBFQqPsTEgfAWODbXlgODc,4057
37
+ ara_cli/template_loader.py,sha256=WzaB5XaKLJiegxEYZ960rljuhTJ-0zW4JHldiCdJ2Xc,10777
38
+ ara_cli/template_manager.py,sha256=C04HJI5cVX49Lysw6D2qXqhfRoK6CQ4jx6PJx414S8s,7477
36
39
  ara_cli/update_config_prompt.py,sha256=moqj2Kha7S7fEGzTReU0v2y8UjXC8QfnoiieOQr35C4,5157
37
- ara_cli/version.py,sha256=AvikXK1EI29z3MY864MZ0oxZJZ4-tSdFYdogqQEkDac,146
40
+ ara_cli/version.py,sha256=qyYltxt3ucu8ZkMq5YDoTaO9sueRSv2g_aC-X_QC-O4,146
41
+ ara_cli/ara_subcommands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ ara_cli/ara_subcommands/autofix.py,sha256=h7-6hV97Q6PisUJ_U1Qs4sHYwkHsDpeYH63y_LQsfSc,1095
43
+ ara_cli/ara_subcommands/chat.py,sha256=9zorWKbM0ulu9xFhW2tzV5vl8hCLOCjcp2E9hYgZJ90,1239
44
+ ara_cli/ara_subcommands/classifier_directory.py,sha256=7GH3w4DtvFCM1Sr6Qqk_kjp0EC8jNJDieJJMshYJ_6k,620
45
+ ara_cli/ara_subcommands/common.py,sha256=CnXZJKdaJguxWHSoY-8v6T03qybm1AFWlLwoeKhl1S0,2845
46
+ ara_cli/ara_subcommands/config.py,sha256=LIzD-rvct-KjTplgVYUtMq4jc2c9DM-i3diqSW_PDTI,7422
47
+ ara_cli/ara_subcommands/convert.py,sha256=YzrKJZ3Z_edoCg1mMXaEYboHlnsHBLutQ4ZVB4mZQ7E,1477
48
+ ara_cli/ara_subcommands/create.py,sha256=2tIpzKgzytTIdVV26p6cvrcBo8WLm_3qK7GJyn47Jaw,2527
49
+ ara_cli/ara_subcommands/delete.py,sha256=DxWRQ5Z8h5ZpMhyjLHNuLxONgxIQ97hVkQ8VkX15FDk,827
50
+ ara_cli/ara_subcommands/extract.py,sha256=11atXek579W2RP6PYHlGuyVjWBTuyh1viondCjuce_k,765
51
+ ara_cli/ara_subcommands/fetch.py,sha256=d1C-3gc0fRuorjusujuSvO2FpAfWmVM_GFvMH3xK6Sg,1412
52
+ ara_cli/ara_subcommands/fetch_agents.py,sha256=rIKyueM1TMF_fhj2BgtI7V6OULGqrdvqmepYSDGUnM8,714
53
+ ara_cli/ara_subcommands/fetch_scripts.py,sha256=qiTXe7bTFVXXnSm7cnc5mKlcqidt05h_tFJTtFBTUBI,568
54
+ ara_cli/ara_subcommands/fetch_templates.py,sha256=V3A3qsoy_DKSkYhTbmswJfCcTOaKztJQ-AMVO5LMZjQ,591
55
+ ara_cli/ara_subcommands/list.py,sha256=46qLOqLuLU3gFlSBiGKmMDKIqCVP_tGea8FkYIhOLgg,4878
56
+ ara_cli/ara_subcommands/list_tags.py,sha256=drEzJgJa4OqqYfIuvT7XkjG4o7VB-ikHE0ArIdljoTI,1113
57
+ ara_cli/ara_subcommands/load.py,sha256=czaflU5Xv-TBlpgalvm6yn5oBBAnNfxSeoIFuLPfi-U,1825
58
+ ara_cli/ara_subcommands/prompt.py,sha256=A8L0lJNBm5zkwJJrzz1kpdycwpm1y8hzd2iVleylpck,4630
59
+ ara_cli/ara_subcommands/read.py,sha256=zTPNMvEPf1WvhtUiauXu5HFiXHRIBJVCkHu44L_scSk,2396
60
+ ara_cli/ara_subcommands/read_status.py,sha256=ZqdxuYXC-idJ2JtMIcZzT4XYI55PnqA6sYv2FcMuchw,695
61
+ ara_cli/ara_subcommands/read_user.py,sha256=NuhaC7dBbi8PUHnGGpqbBVSbQ__nT_L52c7tdKkxjlA,681
62
+ ara_cli/ara_subcommands/reconnect.py,sha256=5Q90rbSnYf7YO6n_9esWsYv7o8GQ-Fnzgy4d8S-X-DQ,1088
63
+ ara_cli/ara_subcommands/rename.py,sha256=IggQdvXjTbZ5CkqzebydVVTcaxO4SDOyORqXDL5jnY8,784
64
+ ara_cli/ara_subcommands/scan.py,sha256=XXwIzq4T9sDMXV0ZcMTSakQ7SyosuCfKjMiiTz7533A,363
65
+ ara_cli/ara_subcommands/set_status.py,sha256=6zzuqLR9k-V63e5UQBpsooftbYHuENEP2s3AdI2jyG0,786
66
+ ara_cli/ara_subcommands/set_user.py,sha256=ADgZIj9xIWK9QKY95lIW_GJGYZysALV--y8j6IuvGxs,755
67
+ ara_cli/ara_subcommands/template.py,sha256=gp_BzrNHcVylU5xav1vmPe3-0vQR7UHm44G7w2i370Q,552
38
68
  ara_cli/artefact_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
69
  ara_cli/artefact_models/artefact_data_retrieval.py,sha256=CooXOJBYWSyiViN2xkC8baS8OUaslry3YGVVUeDxRAU,527
40
70
  ara_cli/artefact_models/artefact_load.py,sha256=IXzWxP-Q_j_oDGMno0m-OuXCQ7Vd5c_NctshGr4ROBw,621
41
71
  ara_cli/artefact_models/artefact_mapping.py,sha256=8aD0spBjkJ8toMAmFawc6UTUxB6-tEEViZXv2I-r88Q,1874
42
- ara_cli/artefact_models/artefact_model.py,sha256=qSbcrmFWAYgBqcNl9QARI1_uLQJm-TPVgP5q2AEFnjE,15983
43
- ara_cli/artefact_models/artefact_templates.py,sha256=CFa_vIA-cnbZEHuACd24vNJB_7LueQi-8x7ga_AyLKI,9830
72
+ ara_cli/artefact_models/artefact_model.py,sha256=Ek7CPzYyj5GajoSdb0G8_I9HbBXFAzRq7DB5CEyNZH0,18817
73
+ ara_cli/artefact_models/artefact_templates.py,sha256=u2VxVXIzrC2PKWiHlhwP4pbCQGjacVqcZ8mZTdV2bE0,10042
44
74
  ara_cli/artefact_models/businessgoal_artefact_model.py,sha256=GYT5S2xEnQHwv-k-lEeX5NMSqA-UEfV3PhNjgPDUJpw,4698
45
75
  ara_cli/artefact_models/capability_artefact_model.py,sha256=SZqHx4O2mj4urn77Stnj4_Jxtlq3-LgBBU9SMkByppI,3079
46
- ara_cli/artefact_models/epic_artefact_model.py,sha256=h9pC00ZxCL-t_NMjwTCeOnIJZPa9hhB-R05wr110LXs,5619
76
+ ara_cli/artefact_models/epic_artefact_model.py,sha256=_HlFmOJqkDKj3SRpLI4H5rU-va-nFamxhMH4BCODR5c,6053
47
77
  ara_cli/artefact_models/example_artefact_model.py,sha256=UXrKbaPotg1jwcrVSdCeo-XH4tTD_-U1e3giaBn5_xg,1384
48
- ara_cli/artefact_models/feature_artefact_model.py,sha256=iUCrdgH_VhRCBVyCQARpl9cWzavC310lKZHWLofsq9s,20256
78
+ ara_cli/artefact_models/feature_artefact_model.py,sha256=PvvZDgwsHV1AMS2FXBxwWxkHFlJ0tyFPRX2NGnbnt1Q,21353
49
79
  ara_cli/artefact_models/issue_artefact_model.py,sha256=v6CpKnkqiUh6Wch2kkEmyyW49c8ysdy1qz8l1Ft9uJA,2552
50
80
  ara_cli/artefact_models/keyfeature_artefact_model.py,sha256=J9oXLsCAo22AW31D5Z104y02ss0S0O4tPCcd09zYCD0,4066
51
81
  ara_cli/artefact_models/serialize_helper.py,sha256=Wks30wy-UrwJURetydKykLgJkdGRgXFHkDT24vHe5tU,595
52
82
  ara_cli/artefact_models/task_artefact_model.py,sha256=1BSMbz9D-RXvdpdd0RlAr9hUx84Rcuysk2YfQC8Qy14,6046
53
- ara_cli/artefact_models/userstory_artefact_model.py,sha256=2awH31ROtm7j4T44Bv4cylQDYLQtnfgXZMhDu_pgw-k,6435
83
+ ara_cli/artefact_models/userstory_artefact_model.py,sha256=P5an9UrZ1QrQ57TxSJ48F2OwKxhqEz1B-QxTtHeSZFI,7172
54
84
  ara_cli/artefact_models/vision_artefact_model.py,sha256=frjaUJj-mmIlVHEhzAQztCGs-CtvNu_odSborgztfzo,5251
85
+ ara_cli/chat_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
+ ara_cli/chat_agent/agent_process_manager.py,sha256=wBja-WhLROH5pK0m8FwhZwQXCTcxHN3yXhPdGvZvPIU,5445
87
+ ara_cli/chat_script_runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
88
+ ara_cli/chat_script_runner/script_completer.py,sha256=OHj2vrf_65l89eTc9uF6cUciJ5yQ_-vDuaNjHCdAOOg,815
89
+ ara_cli/chat_script_runner/script_finder.py,sha256=uErstAM0yVJxNW_MveIQurff7rzJP4FzTyR-OhUZYYA,1586
90
+ ara_cli/chat_script_runner/script_lister.py,sha256=gT3wnB50b57ZvoqtSJzlAmC0i9gZ_NCUzlzEJdeSKts,1264
91
+ ara_cli/chat_script_runner/script_runner.py,sha256=EELFRL52ACeoJZ0UjoglHvu7HKAKzklQ-fOPbOU_H4s,1169
92
+ ara_cli/chat_web_search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
+ ara_cli/chat_web_search/web_search.py,sha256=KXrjxB5dTAucuyNJjCv2PeyQR2PDLu6nf3PRk8LnIdc,9544
55
94
  ara_cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
+ ara_cli/commands/agent_run_command.py,sha256=GeNLjvfg8YUyBWIt5SjaLQefkmM29taOIH2Ms1HEDVY,3827
56
96
  ara_cli/commands/command.py,sha256=Y_2dNeuxRjbyI3ScXNv55lptSe8Hs_ya78L0nPYNZHA,154
57
97
  ara_cli/commands/extract_command.py,sha256=CzUOwDembG587PYbxg5rge4XSfdsuTyOPUvkobkXCIs,573
98
+ ara_cli/commands/fetch_agents_command.py,sha256=WuWocOLVc_Wcl9z3FSeRv7tpBhKLET9fVhuI71eHxmo,3493
99
+ ara_cli/commands/fetch_scripts_command.py,sha256=B3JPVg0mIfeiZ7UPJYc27cfYS-WKZuJc1X1aJ1Nk560,1615
100
+ ara_cli/commands/fetch_templates_command.py,sha256=Q64Ax_Sm99i569evbZ-_Trdx-R5F6Cj66ukaUrl3xkM,1605
101
+ ara_cli/commands/fetch_templates_commands.py,sha256=Q64Ax_Sm99i569evbZ-_Trdx-R5F6Cj66ukaUrl3xkM,1605
102
+ ara_cli/commands/list_agents_command.py,sha256=YYQdANNS7Plek8xcBRKu85Z4DG6CjpujRko43uWhXuM,1352
58
103
  ara_cli/commands/load_command.py,sha256=H3CfeHIL-criDU5oi4BONTSpyzJ4m8DzJ0ZCIiAZFeI,2204
59
104
  ara_cli/commands/load_image_command.py,sha256=g9-PXAYdqx5Ed1PdVo-FIb4CyJGEpRFbgQf9Dxg6DmM,886
60
- ara_cli/commands/read_command.py,sha256=bo1BvRWuNKdFqBNN1EWORNrX_yuFAOyBruDUolHq1Vc,3791
105
+ ara_cli/commands/read_command.py,sha256=xne8jlertuJNcsyzjR0bJeUUHi4NkEfd0h0DRbU9rC4,4347
61
106
  ara_cli/file_loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
107
  ara_cli/file_loaders/binary_file_loader.py,sha256=1HHH1Nk4lEM83CTnf4z9wYz6rMLgpxydFoRcSgkBHmQ,940
63
108
  ara_cli/file_loaders/document_file_loader.py,sha256=VxGFChYyM9K-e6eOCK3yk5jQuEXgz01Mh_NoA6CA_RM,1017
@@ -67,7 +112,7 @@ ara_cli/file_loaders/file_loader.py,sha256=bc1BrMG4pEtwsZLm3Ct53YsMPgnbSaEvZEd8i
67
112
  ara_cli/file_loaders/file_loaders.py,sha256=9QqArTRDmcUUar58JEr-qnpiAtH9ySP-MV9bvooQNpI,4290
68
113
  ara_cli/file_loaders/image_processor.py,sha256=laPThh-i0-obYyS_linQTMcTUwuxMxrSjedGRYb8cIA,3462
69
114
  ara_cli/file_loaders/markdown_reader.py,sha256=R-hvvc9Sj9pWwENqJ0j6wrW0eN1tUqEKWcK2YUFsvsU,2542
70
- ara_cli/file_loaders/text_file_loader.py,sha256=62U59RkWgAML0U0P-sUeFsK51mJM8Fu54gGlnmMwYpY,6804
115
+ ara_cli/file_loaders/text_file_loader.py,sha256=nD0MmjMlr-suMrK7GNwaMd0qv2lJyt4XBijx8SsFvEI,6848
71
116
  ara_cli/templates/agile.artefacts,sha256=nTA8dp98HWKAD-0qhmNpVYIfkVGoJshZqMJGnphiOsE,7932
72
117
  ara_cli/templates/template.businessgoal.prompt_log.md,sha256=xF6bkgj_GqAAqHxJWJiQNt11mEuSGemIqoZ2wOo6dI0,214
73
118
  ara_cli/templates/template.capability.prompt_log.md,sha256=eO8EzrHgb2vYJ-DP1jGzAfDlMo8nY75hZDfhh0s40uQ,208
@@ -80,29 +125,44 @@ ara_cli/templates/template.steps.prompt_log.md,sha256=sd8g1KtwgpPvU-vGWAFCDXiWHk
80
125
  ara_cli/templates/template.task.prompt_log.md,sha256=4kAy1zC0k3_y3SoYb-mg3rQEJCW_c43X7ggOLZ321TE,190
81
126
  ara_cli/templates/template.userstory.prompt_log.md,sha256=Yp62iF7zDy2XNIwwJN35jKKSmezinK_JKbSvVuagtmA,205
82
127
  ara_cli/templates/template.vision.prompt_log.md,sha256=CAzBzj3O23CzrPIUq3xzpXGKn3_nAvyBLRUi-5Bnq_0,196
83
- ara_cli/templates/prompt-modules/blueprints/complete_pytest_unittest.blueprint.md,sha256=DtZsdfVDNy9_cGE_Nn_TE2T3oRwr27kecZchOp5uIG0,672
128
+ ara_cli/templates/global-scripts/hello_global.py,sha256=dFY9snsBPAo0ghfBQ5AjO6MvWXcttlmD-vEzKvgyw5A,21
84
129
  ara_cli/templates/prompt-modules/blueprints/empty.blueprint.md,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
130
  ara_cli/templates/prompt-modules/blueprints/task_todo_list_C4_architecture_analysis.blueprint.md,sha256=jEZrZaVK_pkRhLp1SpTX3xR6BGXkox6NafXEjX_GDvM,3099
86
- ara_cli/templates/prompt-modules/blueprints/task_todo_list_implement_feature_BDD_way.blueprint.md,sha256=EimfgzjhFIsZnJ0qMNbVlUQEU0vC9Sv1VupesLz7A1E,2088
131
+ ara_cli/templates/prompt-modules/commands/add_scenarios_for_new_behaviour.feature_creation_agent.commands.md,sha256=bWoVFTuNXBP9pbJ9BEsQWSCHBM3hJ5wQbExXlPe2VYY,287
132
+ ara_cli/templates/prompt-modules/commands/align_feature_with_implementation_changes.interview_agent.commands.md,sha256=gC3um337MUTkAJnDWwgPXWGanj8D906rxbbMiOHp6fY,304
133
+ ara_cli/templates/prompt-modules/commands/analyze_codebase_and_plan_tasks.interview_agent.commands.md,sha256=KoHQ5ZweL3Prl9-tjgaV8lZrINmSMe75s7Iuh7RwuO8,700
87
134
  ara_cli/templates/prompt-modules/commands/architecture_C4_analysis.commands.md,sha256=xzfmOBsETlh90P1haJOiC8y8eLPboZ3yFodbuSUPLBU,1557
88
135
  ara_cli/templates/prompt-modules/commands/architecture_radon_cc_score.commands.md,sha256=t-cozhSQPGUOoYfdySBL4n-yQykvCc4s5n0AKpKCn0Q,3074
89
136
  ara_cli/templates/prompt-modules/commands/architecture_radon_halstead_v.commands.md,sha256=YBQKZdTJ4QRnBocsWTvT9dmaHOKys1hE0NJC7LPl2vQ,1676
90
137
  ara_cli/templates/prompt-modules/commands/architecture_radon_maintainability_score.commands.md,sha256=9nBsY_EYNI9GmD-KzbGKdtEDP4YoY7ECV2QWEzoznfc,5511
91
- ara_cli/templates/prompt-modules/commands/artefact_classification.commands.md,sha256=6qA0v-1_GYtI2UNIg1kzkidCOpLj1YqkeSL6PpvfK5Q,829
92
- ara_cli/templates/prompt-modules/commands/artefact_extension.commands.md,sha256=9nN3nZ9wl5eabtb1VrhH3qUsEC4kTD5yoc_woMejqd0,1060
93
- ara_cli/templates/prompt-modules/commands/artefact_formulation.commands.md,sha256=kB4mmVGraMuquqlWkC51Fqw9fara3U-82ldJlSBG3k0,797
94
- ara_cli/templates/prompt-modules/commands/behave_step_generation.commands.md,sha256=18Zzw_rhBY5Lyx_PrIUEGiidSLNCIgIUucUUQHVXFdo,4240
95
- ara_cli/templates/prompt-modules/commands/code_generation_complex.commands.md,sha256=gQE4JoXkEFWh9YyQBMrLjljT9WoGljRfpdFtUIbT4lw,1413
96
- ara_cli/templates/prompt-modules/commands/code_generation_simple.commands.md,sha256=_PX0Q108bgNqnxz4VKSkuaU2OiHS9eRMqXH2kO9d0E4,836
97
- ara_cli/templates/prompt-modules/commands/empty.commands.md,sha256=XynQO_CPitumyZ9ky6AvqeE00Kl5A3-VDa1MOoChd8c,807
98
- ara_cli/templates/prompt-modules/commands/error_fixing.commands.md,sha256=HaWY8djKQRB-CfCGVEndczBYsg_OSXnE6vDU7_LaU2o,1425
99
- ara_cli/templates/prompt-modules/commands/feature_file_update.commands.md,sha256=NEv95oef4p5H0qUjMkLnu1ljRGV0q4-lNUL1NAJbI-0,1611
100
- ara_cli/templates/prompt-modules/commands/feature_formulation.commands.md,sha256=8D9LfJYqUKBh-TKc-WFJT6v4m69VgKZAhplYysro29U,1754
101
- ara_cli/templates/prompt-modules/commands/js_code_generation_simple.commands.md,sha256=_j_gONkhJDXE5TUPTpyYlF45uZ4MSZG1LnoHlndnRGY,832
102
- ara_cli/templates/prompt-modules/commands/refactoring.commands.md,sha256=3I4df3oeGOrGPqnu_IvDSQNzNscYK1VbEpFxu8DwGrQ,932
103
- ara_cli/templates/prompt-modules/commands/refactoring_analysis.commands.md,sha256=RjMAa6rBCou0XGhu1-IFGy21EgcxSUkGWSCCqbw6CFw,1028
104
- ara_cli/templates/prompt-modules/commands/reverse_engineer_feature_file.commands.md,sha256=9togxxeBTcSvD5hLdBqyC-rUCF-xhU68PtD5rQySbFY,964
105
- ara_cli/templates/prompt-modules/commands/reverse_engineer_program_flow.commands.md,sha256=-pW71nV064aTfLTyYEnkH5eAaZPH3HRdOQsSxAfiNu8,1315
138
+ ara_cli/templates/prompt-modules/commands/choose_best_parent_artefact.interview_agent.commands.md,sha256=H0rdMiTQHBiAALyjcmeEeME1CAxh_MeGzlYWsiGcjs4,220
139
+ ara_cli/templates/prompt-modules/commands/create_tasks_from_artefact_content.interview_agent.commands.md,sha256=eS-rwchn9foTEJUcO2mi0hbN5OSrik1kxUGT2RZDIEE,328
140
+ ara_cli/templates/prompt-modules/commands/create_tests_for_uncovered_modules.test_generation_agent.commands.md,sha256=MrSSI6TaIFsip8A8-_1xgWZ-9iGxz6gUIn1GUVB6jws,264
141
+ ara_cli/templates/prompt-modules/commands/derive_features_from_video_description.feature_creation_agent.commands.md,sha256=nbsVu0hgLSzAUbJMQNIh5Rhhlq_Ksf3Lg7xH2qgE8dI,411
142
+ ara_cli/templates/prompt-modules/commands/describe_agent_capabilities.agent.commands.md,sha256=rCeDQoZP5Vy9lUDQ6A59PaxoMVEBnVQj7ZARAI4xB9M,203
143
+ ara_cli/templates/prompt-modules/commands/empty.commands.md,sha256=vgi8-ep2JZBuv0cocpBWJe1-gDzpw1OpHt5KANtaH58,80
144
+ ara_cli/templates/prompt-modules/commands/execute_scoped_todos_in_task.interview_agent.commands.md,sha256=tz_ADMoRIsq3FEx1zthYW1bUZ3Ct7Ln06bNfQmKXo9Q,307
145
+ ara_cli/templates/prompt-modules/commands/explain_single_file_purpose.interview_agent.commands.md,sha256=UdUG0t975qb35qhkA8NuT7KQ2i8_Xyf0X5EG1JoTXJk,170
146
+ ara_cli/templates/prompt-modules/commands/extract_file_information_bullets.interview_agent.commands.md,sha256=KpCRcCrA_jzbOmTyK4ZO-YNXPnaXMNaczgxA0JCkMZY,203
147
+ ara_cli/templates/prompt-modules/commands/extract_general.commands.md,sha256=g21jnK5gd0UX8dLv8IpxOX-r5A61EpVgT1VcmxXPcTw,718
148
+ ara_cli/templates/prompt-modules/commands/extract_markdown.commands.md,sha256=em3jFTXNzT5ULdOyFg__DlRciYOTuCXrHiImnJS5B4M,657
149
+ ara_cli/templates/prompt-modules/commands/extract_python.commands.md,sha256=BhTtbfnrr_ABHza0XmGYlQ8YzrESQumyobQj2Ff9dNM,641
150
+ ara_cli/templates/prompt-modules/commands/feature_add_or_modifiy_specified_behavior.commands.md,sha256=vuGfxSifR1UGxUhOQakEYA2KkoK66s_jf2pn6ClHuM0,2444
151
+ ara_cli/templates/prompt-modules/commands/feature_generate_initial_specified_bevahior.commands.md,sha256=oufTleuQcHiYmdzKTtDleMHHN6anw-n8JSpUKUzE7GQ,2810
152
+ ara_cli/templates/prompt-modules/commands/fix_failing_behave_step_definitions.interview_agent.commands.md,sha256=19UoMZzMPvmPponKGzdWqw8KpkSpTeb16aJIl4iEzgk,348
153
+ ara_cli/templates/prompt-modules/commands/fix_failing_pytest_tests.interview_agent.commands.md,sha256=FCC4dTGT6TA3QUW7bRjM2IGgQKsQ0yV2ulYVa9730YI,271
154
+ ara_cli/templates/prompt-modules/commands/general_instruction_policy.commands.md,sha256=qD3ObeYo6Ibrs7DiXab8aFUc1R0ZyD5akPmGnH_BBQE,1774
155
+ ara_cli/templates/prompt-modules/commands/generate_and_fix_pytest_tests.test_generation_agent.commands.md,sha256=bMTBhko3e9c_AQ3IoaJITo-vdprY4na1k-QURylfA3g,130
156
+ ara_cli/templates/prompt-modules/commands/prompt_template_tech_stack_transformer.commands.md,sha256=Z32V1Ux94Uol3gqxqV8V6gdiKSIyrbtd6re7tuLIRsM,4446
157
+ ara_cli/templates/prompt-modules/commands/python_bug_fixing_code.commands.md,sha256=slOySzxZnIXzmIma3jZVvGcNC-llkqlhUil1cuWYE2U,2273
158
+ ara_cli/templates/prompt-modules/commands/python_generate_code.commands.md,sha256=LYNfVuAhtBHB1CDjUqy5Y6dDmq9PVfo8UbJbfB2_mKE,2601
159
+ ara_cli/templates/prompt-modules/commands/python_refactoring_code.commands.md,sha256=p-Y1r10-80Eo7lUmz2hX7uJto8J2-d2C0RMV595t0Sg,2453
160
+ ara_cli/templates/prompt-modules/commands/python_step_definitions_generation_and_fixing.commands.md,sha256=i74lgqMc9KFu9QWfOcZR1jcDMLAZCW4wvGvGRK7Yng0,3204
161
+ ara_cli/templates/prompt-modules/commands/python_unittest_generation_and_fixing.commands.md,sha256=jMuMfOiw_H8RL-I8J5OqBO4rpzYmGgGgzh-kKt_fNkg,3561
162
+ ara_cli/templates/prompt-modules/commands/suggest_next_story_child_tasks.interview_agent.commands.md,sha256=ulgRxACSBm4pizJ1YSDaGnzIV-072sJTgwUGKbCoaE0,299
163
+ ara_cli/templates/prompt-modules/commands/summarize_or_transcribe_media.interview_agent.commands.md,sha256=4DNPq4zPWV_mcbPAC16q9lGP8gZGpeIs8bqzImFh-1Q,185
164
+ ara_cli/templates/prompt-modules/commands/update_feature_to_match_implementation.feature_creation_agent.commands.md,sha256=TboWNFBqz9ZVHlHHTfLoaZ-87CA6yZCKJJIpnNdV_Ms,303
165
+ ara_cli/templates/prompt-modules/commands/update_user_story_with_requirements.interview_agent.commands.md,sha256=2khVqdrvvnkd0z3ibNfm8SRI6yrYGFKOZCbdjpndBio,237
106
166
  ara_cli/templates/prompt-modules/intentions/classify_task.intention.md,sha256=9ZiEOBFiku24SX4kBJlSCgm5ScYlNZIcNPoHwtGbWIU,254
107
167
  ara_cli/templates/prompt-modules/intentions/empty.intention.md,sha256=6dqUtORC992KagZX2Up2yHHvBjVgDTj--wIyYbG4jhc,48
108
168
  ara_cli/templates/prompt-modules/intentions/error_fixing.intention.md,sha256=pcfG4csCF830lk8anDCkOA0ewTYnRo5mg0Y0w-fyEJU,206
@@ -142,30 +202,39 @@ ara_cli/templates/specification_breakdown_files/template.step.md,sha256=nzDRl9Xo
142
202
  ara_cli/templates/specification_breakdown_files/template.technology.exploration.md,sha256=zQyiJcmbUfXdte-5uZwZUpT6ey0zwfZ00P4VwI97jQk,2274
143
203
  ara_cli/templates/specification_breakdown_files/template.technology.md,sha256=bySiksz-8xtq0Nnj4svqe2MgUftWrVkbK9AcrDUE3KY,952
144
204
  tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
- tests/test_ara_command_action.py,sha256=gLXFAW6K0qCkNKvWvmbshfpJqczvdgBoNGT4rugF7JI,27181
146
- tests/test_ara_config.py,sha256=RbVhS0SS1lr_SVopEMT1Fake5a-4rWN8MprgJtgI-FA,15883
147
- tests/test_artefact_autofix.py,sha256=vcN11CY6XJq97N0php4OW-rPbEMEh_nYFISrg-pN1mE,38332
205
+ tests/test_ara_command_action.py,sha256=Hm2_rXyBj2O-ifZfBhMOjCdnoQUNkuj17qwM-pX6KzE,27275
206
+ tests/test_ara_config.py,sha256=uY0J9D5T1SfZB8LpMoa5CP5YoET3OAjadlS4Zh0aSJI,17300
207
+ tests/test_artefact_autofix.py,sha256=4Y-FqmzY4905bgBhaUSZfPIxgvGxZg1JdEUPNcroS3A,38485
208
+ tests/test_artefact_autofix_integration.py,sha256=0MUmeKYou6SnqK0tqNFspQkcvO9RQwo6WOrcpRP5JfY,18591
209
+ tests/test_artefact_converter.py,sha256=oQTSGx0vYEhJ94yGkoq69M7FEhp2D0U-7CxloRwH4Kc,12951
210
+ tests/test_artefact_extraction.py,sha256=amgAVxZbNiHNZQFV3xGCBMZOcvp8Yfb7RrppL9VTM0k,21727
148
211
  tests/test_artefact_fuzzy_search.py,sha256=5Sh3_l9QK8-WHn6JpGPU1b6h4QEnl2JoMq1Tdp2cj1U,1261
149
212
  tests/test_artefact_link_updater.py,sha256=biqbEp2jCOz8giv72hu2P2hDfeJfJ9OrVGdAv5d9cK4,2191
150
213
  tests/test_artefact_lister.py,sha256=35R13UU-YsX1HOsEN8M2-vIiCUA9RSBm6SwestDaFhE,20388
151
214
  tests/test_artefact_reader.py,sha256=660K-d8ed-j8hulsUB_7baPD2-hhbg9TffUR5yVc4Uo,927
152
215
  tests/test_artefact_renamer.py,sha256=lSnKCCfoFGgKhTdDZrEaeBq1xJAak1QoqH5aSeOe9Ro,3494
153
- tests/test_artefact_scan.py,sha256=uNWgrt7ieZ4ogKACsPqzAsh59JF2BhTKSag31hpVrTQ,16887
154
- tests/test_chat.py,sha256=D2HRRTdnvcDvB9TWz4O91ZONbLJL6w4v8TRTDwjtzzI,86104
216
+ tests/test_artefact_scan.py,sha256=SzMtJeh8_oOBec9yzy3vJRHxs9i1E5gEU2RfF6CJZqE,16888
217
+ tests/test_chat.py,sha256=n5SslNJCrQY9x8JpKosYBByJX00zE4G-2JyaUUBi0v4,88733
218
+ tests/test_chat_givens_images.py,sha256=Op0xmdTg67SzRNHq9UZgvy2BDFgI8P7oBuJz2c7zJlY,21256
219
+ tests/test_chat_script_runner.py,sha256=fHwkGbUi8OpZeMqr1iO7LRWAIFyilMNL3YDaNahZzUo,17621
155
220
  tests/test_classifier.py,sha256=grYGPksydNdPsaEBQxYHZTuTdcJWz7VQtikCKA6BNaQ,1920
156
221
  tests/test_directory_navigator.py,sha256=7G0MVrBbtBvbrFUpL0zb_9EkEWi1dulWuHsrQxMJxDY,140
157
222
  tests/test_file_classifier.py,sha256=4O1C_iDpGGm35b7aI-HIJd5kkWxFUOrI2n4lEpiDNTM,11855
158
223
  tests/test_file_creator.py,sha256=tgBCq6KPv-qMSDhj9AZvQIJABiAqgpFRnEg1fqbVrTI,2013
159
224
  tests/test_file_lister.py,sha256=Q9HwhKKx540EPzTmfzOCnvtAgON0aMmpJE2eOe1J3EA,4324
160
- tests/test_global_file_lister.py,sha256=ycvf2YL8q5QSEMwcnQfUdoWnQQ8xTSyEtccAeXwl6QU,5487
225
+ tests/test_global_file_lister.py,sha256=E-RxGIwxbUsUxadlcFRTAOtgQcnFd-LnKsLzbH9H7ME,5498
161
226
  tests/test_list_filter.py,sha256=fJA3d_SdaOAUkE7jn68MOVS0THXGghy1fye_64Zvo1U,7964
162
- tests/test_prompt_handler.py,sha256=9s1zavcW81uz8wOBM_2X2KqdLNoc3E9bt0Oqt2-Sgmk,33926
163
- tests/test_tag_extractor.py,sha256=nSiAYlTKZ7TLAOtcJpwK5zTWHhFYU0tI5xKnivLc1dU,2712
227
+ tests/test_llm_utils.py,sha256=TnQibpUVW5_Q5B_XZpdRR5nHvm3mobDbewbTOFO05EI,6053
228
+ tests/test_prompt_chat.py,sha256=DeYvu6aHQ62q_Vpfg_r363STMfijV-fmHcUuVVpTzF8,12110
229
+ tests/test_prompt_extractor.py,sha256=ZEgJOSDytIPYf3wd40gvS5By1rcAfgne4SvnQ_DP1dM,23679
230
+ tests/test_prompt_handler.py,sha256=4__q8Ap2hVGXVF1DvvWqq-K630buC7yjccoWkk_FG18,34255
231
+ tests/test_tag_extractor.py,sha256=7eVD10Y1uLkoSrEgqkXzRvPFs8lJ1RiaJzDu7ml_FZE,3118
164
232
  tests/test_template_loader.py,sha256=R7s8HJZbKqja-1TRBMBkVKPTgajofUjjRKUJq7a3_Oc,7427
165
233
  tests/test_template_manager.py,sha256=qliEeYgAEakn8JIqIHa8u0Ht6DY4L3T6DcHBXkjzR4I,4167
166
234
  tests/test_update_config_prompt.py,sha256=xsqj1WTn4BsG5Q2t-sNPfu7EoMURFcS-hfb5VSXUnJc,6765
167
- ara_cli-0.1.10.0.dist-info/METADATA,sha256=9DcNT8mkoI9D6aDt0gRORWFl_MagH7yTw_ISo4uc_Tw,6813
168
- ara_cli-0.1.10.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
169
- ara_cli-0.1.10.0.dist-info/entry_points.txt,sha256=v4h7MzysTgSIDYfEo3oj4Kz_8lzsRa3hq-KJHEcLVX8,45
170
- ara_cli-0.1.10.0.dist-info/top_level.txt,sha256=WM4cLHT5DYUaWzLtRj-gu3yVNFpGQ6lLRI3FMmC-38I,14
171
- ara_cli-0.1.10.0.dist-info/RECORD,,
235
+ tests/test_web_search.py,sha256=BqbIJ8zbiXaYwntceovOVD_1pT3PboraX7lpPatcXJ4,16484
236
+ ara_cli-0.1.13.3.dist-info/METADATA,sha256=Xc5zpacBGf2Z5kptyQE2ojAEzXjKiv2vk96HZahmAXI,8185
237
+ ara_cli-0.1.13.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
238
+ ara_cli-0.1.13.3.dist-info/entry_points.txt,sha256=v4h7MzysTgSIDYfEo3oj4Kz_8lzsRa3hq-KJHEcLVX8,45
239
+ ara_cli-0.1.13.3.dist-info/top_level.txt,sha256=WM4cLHT5DYUaWzLtRj-gu3yVNFpGQ6lLRI3FMmC-38I,14
240
+ ara_cli-0.1.13.3.dist-info/RECORD,,
@@ -275,48 +275,58 @@ def test_rename_action_renamer_call(
275
275
 
276
276
 
277
277
  @pytest.mark.parametrize(
278
- "branch_args, children_args, data_args, expected_call",
278
+ "branch, children, data, classifier, artefact_name, expected_call",
279
279
  [
280
280
  (
281
- ("branch_classifier", "branch_name"),
282
- (None, None),
283
- (None, None),
281
+ True,
282
+ False,
283
+ False,
284
+ "branch_classifier",
285
+ "branch_name",
284
286
  "list_branch",
285
287
  ),
286
288
  (
287
- (None, None),
288
- ("children_classifier", "children_name"),
289
- (None, None),
289
+ False,
290
+ True,
291
+ False,
292
+ "children_classifier",
293
+ "children_name",
290
294
  "list_children",
291
295
  ),
292
- ((None, None), (None, None), ("data_classifier", "data_name"), "list_data"),
296
+ (False, False, True, "data_classifier", "data_name", "list_data"),
293
297
  ],
294
298
  )
295
299
  def test_list_action_calls_correct_method(
296
300
  mock_artefact_lister,
297
301
  mock_list_filter,
298
- branch_args,
299
- children_args,
300
- data_args,
302
+ branch,
303
+ children,
304
+ data,
305
+ classifier,
306
+ artefact_name,
301
307
  expected_call,
302
308
  ):
303
309
  MockArtefactLister = mock_artefact_lister
304
310
  list_filter_instance = mock_list_filter.return_value
305
311
 
306
312
  args = MagicMock()
307
- args.branch_args = branch_args
308
- args.children_args = children_args
309
- args.data_args = data_args
313
+ args.branch = branch
314
+ args.children = children
315
+ args.data = data
316
+ args.classifier = classifier
317
+ args.artefact_name = artefact_name
310
318
  args.include_content = None
311
319
  args.exclude_content = None
312
320
  args.include_extension = None
313
321
  args.exclude_extension = None
322
+ args.include_tags = None
323
+ args.exclude_tags = None
314
324
 
315
325
  list_action(args)
316
326
  instance = MockArtefactLister.return_value
317
327
  getattr(instance, expected_call).assert_called_once_with(
318
- classifier=branch_args[0] or children_args[0] or data_args[0],
319
- artefact_name=branch_args[1] or children_args[1] or data_args[1],
328
+ classifier=classifier,
329
+ artefact_name=artefact_name,
320
330
  list_filter=list_filter_instance,
321
331
  )
322
332
 
@@ -344,9 +354,11 @@ def test_list_action_creates_list_filter(
344
354
  mock_list_filter.return_value = MagicMock()
345
355
 
346
356
  args = MagicMock()
347
- args.branch_args = (None, None)
348
- args.children_args = (None, None)
349
- args.data_args = (None, None)
357
+ args.branch = False
358
+ args.children = False
359
+ args.data = False
360
+ args.classifier = None
361
+ args.artefact_name = None
350
362
  args.include_content = include_content
351
363
  args.exclude_content = exclude_content
352
364
  args.include_extension = include_extension