aurora-actr 0.3.1__tar.gz → 0.9.4__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 (325) hide show
  1. aurora_actr-0.9.4/PKG-INFO +288 -0
  2. aurora_actr-0.9.4/README.md +238 -0
  3. {aurora_actr-0.3.1 → aurora_actr-0.9.4}/pyproject.toml +40 -28
  4. aurora_actr-0.9.4/src/aurora_actr.egg-info/PKG-INFO +288 -0
  5. aurora_actr-0.9.4/src/aurora_actr.egg-info/SOURCES.txt +304 -0
  6. aurora_actr-0.9.4/src/aurora_actr.egg-info/entry_points.txt +4 -0
  7. aurora_actr-0.9.4/src/aurora_actr.egg-info/requires.txt +28 -0
  8. aurora_actr-0.9.4/src/aurora_actr.egg-info/top_level.txt +10 -0
  9. aurora_actr-0.9.4/src/aurora_cli/__init__.py +8 -0
  10. aurora_actr-0.9.4/src/aurora_cli/agent_discovery/__init__.py +57 -0
  11. aurora_actr-0.9.4/src/aurora_cli/agent_discovery/manifest.py +382 -0
  12. aurora_actr-0.9.4/src/aurora_cli/agent_discovery/models.py +383 -0
  13. aurora_actr-0.9.4/src/aurora_cli/agent_discovery/parser.py +253 -0
  14. aurora_actr-0.9.4/src/aurora_cli/agent_discovery/scanner.py +210 -0
  15. aurora_actr-0.9.4/src/aurora_cli/commands/__init__.py +21 -0
  16. aurora_actr-0.9.4/src/aurora_cli/commands/agents.py +663 -0
  17. aurora_actr-0.9.4/src/aurora_cli/commands/budget.py +296 -0
  18. aurora_actr-0.9.4/src/aurora_cli/commands/doctor.py +270 -0
  19. aurora_actr-0.9.4/src/aurora_cli/commands/goals.py +395 -0
  20. aurora_actr-0.9.4/src/aurora_cli/commands/headless.py +1167 -0
  21. aurora_actr-0.9.4/src/aurora_cli/commands/health.py +291 -0
  22. aurora_actr-0.9.4/src/aurora_cli/commands/init.py +1010 -0
  23. aurora_actr-0.9.4/src/aurora_cli/commands/init_helpers.py +1120 -0
  24. aurora_actr-0.9.4/src/aurora_cli/commands/memory.py +1587 -0
  25. aurora_actr-0.9.4/src/aurora_cli/commands/plan.py +547 -0
  26. aurora_actr-0.9.4/src/aurora_cli/commands/query.py +357 -0
  27. aurora_actr-0.9.4/src/aurora_cli/commands/soar.py +690 -0
  28. aurora_actr-0.9.4/src/aurora_cli/commands/spawn.py +520 -0
  29. aurora_actr-0.9.4/src/aurora_cli/commands/spawn_helpers.py +134 -0
  30. aurora_actr-0.9.4/src/aurora_cli/commands/version.py +85 -0
  31. aurora_actr-0.9.4/src/aurora_cli/concurrent_executor.py +1246 -0
  32. aurora_actr-0.9.4/src/aurora_cli/config.py +495 -0
  33. aurora_actr-0.9.4/src/aurora_cli/configurators/__init__.py +27 -0
  34. aurora_actr-0.9.4/src/aurora_cli/configurators/agents.py +34 -0
  35. aurora_actr-0.9.4/src/aurora_cli/configurators/ampcode.py +34 -0
  36. aurora_actr-0.9.4/src/aurora_cli/configurators/base.py +150 -0
  37. aurora_actr-0.9.4/src/aurora_cli/configurators/claude.py +55 -0
  38. aurora_actr-0.9.4/src/aurora_cli/configurators/claude_commands.py +126 -0
  39. aurora_actr-0.9.4/src/aurora_cli/configurators/droid.py +34 -0
  40. aurora_actr-0.9.4/src/aurora_cli/configurators/mcp/__init__.py +20 -0
  41. aurora_actr-0.9.4/src/aurora_cli/configurators/mcp/base.py +296 -0
  42. aurora_actr-0.9.4/src/aurora_cli/configurators/mcp/claude.py +275 -0
  43. aurora_actr-0.9.4/src/aurora_cli/configurators/mcp/cline.py +43 -0
  44. aurora_actr-0.9.4/src/aurora_cli/configurators/mcp/continue_.py +202 -0
  45. aurora_actr-0.9.4/src/aurora_cli/configurators/mcp/cursor.py +44 -0
  46. aurora_actr-0.9.4/src/aurora_cli/configurators/mcp/registry.py +124 -0
  47. aurora_actr-0.9.4/src/aurora_cli/configurators/opencode.py +34 -0
  48. aurora_actr-0.9.4/src/aurora_cli/configurators/registry.py +92 -0
  49. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/__init__.py +70 -0
  50. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/amazon_q.py +129 -0
  51. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/antigravity.py +80 -0
  52. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/auggie.py +115 -0
  53. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/base.py +233 -0
  54. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/claude.py +128 -0
  55. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/cline.py +87 -0
  56. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/codebuddy.py +109 -0
  57. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/codex.py +225 -0
  58. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/costrict.py +115 -0
  59. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/crush.py +109 -0
  60. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/cursor.py +116 -0
  61. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/factory.py +119 -0
  62. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/gemini.py +81 -0
  63. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/github_copilot.py +104 -0
  64. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/iflow.py +115 -0
  65. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/kilocode.py +72 -0
  66. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/opencode.py +123 -0
  67. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/paths.py +207 -0
  68. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/qoder.py +109 -0
  69. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/qwen.py +80 -0
  70. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/registry.py +144 -0
  71. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/roocode.py +87 -0
  72. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/toml_base.py +137 -0
  73. aurora_actr-0.9.4/src/aurora_cli/configurators/slash/windsurf.py +87 -0
  74. aurora_actr-0.9.4/src/aurora_cli/errors.py +782 -0
  75. aurora_actr-0.9.4/src/aurora_cli/escalation.py +242 -0
  76. aurora_actr-0.9.4/src/aurora_cli/execution/__init__.py +23 -0
  77. aurora_actr-0.9.4/src/aurora_cli/execution/checkpoint.py +323 -0
  78. aurora_actr-0.9.4/src/aurora_cli/execution/recovery.py +160 -0
  79. aurora_actr-0.9.4/src/aurora_cli/execution/review.py +206 -0
  80. aurora_actr-0.9.4/src/aurora_cli/file_change_aggregator.py +743 -0
  81. aurora_actr-0.9.4/src/aurora_cli/health_checks.py +1074 -0
  82. aurora_actr-0.9.4/src/aurora_cli/ignore_patterns.py +128 -0
  83. aurora_actr-0.9.4/src/aurora_cli/llm/__init__.py +10 -0
  84. aurora_actr-0.9.4/src/aurora_cli/llm/cli_pipe_client.py +300 -0
  85. aurora_actr-0.9.4/src/aurora_cli/main.py +251 -0
  86. aurora_actr-0.9.4/src/aurora_cli/memory/__init__.py +30 -0
  87. aurora_actr-0.9.4/src/aurora_cli/memory/retrieval.py +668 -0
  88. aurora_actr-0.9.4/src/aurora_cli/memory_manager.py +1620 -0
  89. aurora_actr-0.9.4/src/aurora_cli/planning/__init__.py +80 -0
  90. aurora_actr-0.9.4/src/aurora_cli/planning/agents.py +893 -0
  91. aurora_actr-0.9.4/src/aurora_cli/planning/cache.py +792 -0
  92. aurora_actr-0.9.4/src/aurora_cli/planning/cache_metrics_example.py +164 -0
  93. aurora_actr-0.9.4/src/aurora_cli/planning/checkpoint.py +64 -0
  94. aurora_actr-0.9.4/src/aurora_cli/planning/commands/__init__.py +11 -0
  95. aurora_actr-0.9.4/src/aurora_cli/planning/commands/archive.py +640 -0
  96. aurora_actr-0.9.4/src/aurora_cli/planning/core.py +2092 -0
  97. aurora_actr-0.9.4/src/aurora_cli/planning/decompose.py +659 -0
  98. aurora_actr-0.9.4/src/aurora_cli/planning/errors.py +197 -0
  99. aurora_actr-0.9.4/src/aurora_cli/planning/memory.py +322 -0
  100. aurora_actr-0.9.4/src/aurora_cli/planning/models.py +1090 -0
  101. aurora_actr-0.9.4/src/aurora_cli/planning/parsers/__init__.py +23 -0
  102. aurora_actr-0.9.4/src/aurora_cli/planning/parsers/markdown.py +472 -0
  103. aurora_actr-0.9.4/src/aurora_cli/planning/parsers/plan.py +419 -0
  104. aurora_actr-0.9.4/src/aurora_cli/planning/parsers/requirements.py +470 -0
  105. aurora_actr-0.9.4/src/aurora_cli/planning/renderer.py +252 -0
  106. aurora_actr-0.9.4/src/aurora_cli/planning/results.py +175 -0
  107. aurora_actr-0.9.4/src/aurora_cli/planning/schemas/__init__.py +26 -0
  108. aurora_actr-0.9.4/src/aurora_cli/planning/schemas/base.py +130 -0
  109. aurora_actr-0.9.4/src/aurora_cli/planning/schemas/plan.py +248 -0
  110. aurora_actr-0.9.4/src/aurora_cli/planning/templates/__init__.py +14 -0
  111. aurora_actr-0.9.4/src/aurora_cli/planning/templates/agents.py +465 -0
  112. aurora_actr-0.9.4/src/aurora_cli/planning/templates/claude.py +31 -0
  113. aurora_actr-0.9.4/src/aurora_cli/planning/templates/project.py +38 -0
  114. aurora_actr-0.9.4/src/aurora_cli/planning/utils/__init__.py +14 -0
  115. aurora_actr-0.9.4/src/aurora_cli/planning/validation/__init__.py +34 -0
  116. aurora_actr-0.9.4/src/aurora_cli/planning/validation/constants.py +85 -0
  117. aurora_actr-0.9.4/src/aurora_cli/planning/validation/types.py +79 -0
  118. aurora_actr-0.9.4/src/aurora_cli/planning/validation/validator.py +865 -0
  119. aurora_actr-0.9.4/src/aurora_cli/policies/__init__.py +20 -0
  120. aurora_actr-0.9.4/src/aurora_cli/policies/defaults.py +71 -0
  121. aurora_actr-0.9.4/src/aurora_cli/policies/engine.py +310 -0
  122. aurora_actr-0.9.4/src/aurora_cli/policies/models.py +111 -0
  123. aurora_actr-0.9.4/src/aurora_cli/progress_ui.py +340 -0
  124. aurora_actr-0.9.4/src/aurora_cli/query_executor.py +636 -0
  125. aurora_actr-0.9.4/src/aurora_cli/resource_isolation.py +635 -0
  126. aurora_actr-0.9.4/src/aurora_cli/templates/__init__.py +26 -0
  127. aurora_actr-0.9.4/src/aurora_cli/templates/agents.py +281 -0
  128. aurora_actr-0.9.4/src/aurora_cli/templates/claude.py +31 -0
  129. aurora_actr-0.9.4/src/aurora_cli/templates/commands.py +225 -0
  130. aurora_actr-0.9.4/src/aurora_cli/templates/headless.py +33 -0
  131. aurora_actr-0.9.4/src/aurora_cli/templates/project.py +46 -0
  132. aurora_actr-0.9.4/src/aurora_cli/templates/slash_commands.py +355 -0
  133. aurora_actr-0.9.4/src/aurora_cli/tool_providers/__init__.py +96 -0
  134. aurora_actr-0.9.4/src/aurora_cli/tool_providers/base.py +649 -0
  135. aurora_actr-0.9.4/src/aurora_cli/tool_providers/claude.py +208 -0
  136. aurora_actr-0.9.4/src/aurora_cli/tool_providers/codex.py +131 -0
  137. aurora_actr-0.9.4/src/aurora_cli/tool_providers/cursor.py +125 -0
  138. aurora_actr-0.9.4/src/aurora_cli/tool_providers/gemini.py +132 -0
  139. aurora_actr-0.9.4/src/aurora_cli/tool_providers/generic.py +200 -0
  140. aurora_actr-0.9.4/src/aurora_cli/tool_providers/opencode.py +199 -0
  141. aurora_actr-0.9.4/src/aurora_cli/tool_providers/orchestrator.py +241 -0
  142. aurora_actr-0.9.4/src/aurora_cli/tool_providers/output_handler.py +560 -0
  143. aurora_actr-0.9.4/src/aurora_cli/tool_providers/registry.py +346 -0
  144. aurora_actr-0.9.4/src/aurora_cli/wizard.py +358 -0
  145. aurora_actr-0.9.4/src/aurora_context_code/__init__.py +45 -0
  146. aurora_actr-0.9.4/src/aurora_context_code/git.py +430 -0
  147. aurora_actr-0.9.4/src/aurora_context_code/knowledge_parser.py +176 -0
  148. aurora_actr-0.9.4/src/aurora_context_code/languages/__init__.py +4 -0
  149. aurora_actr-0.9.4/src/aurora_context_code/languages/javascript.py +515 -0
  150. aurora_actr-0.9.4/src/aurora_context_code/languages/markdown.py +125 -0
  151. aurora_actr-0.9.4/src/aurora_context_code/languages/python.py +662 -0
  152. aurora_actr-0.9.4/src/aurora_context_code/languages/typescript.py +584 -0
  153. aurora_actr-0.9.4/src/aurora_context_code/model_cache.py +103 -0
  154. aurora_actr-0.9.4/src/aurora_context_code/parser.py +84 -0
  155. aurora_actr-0.9.4/src/aurora_context_code/registry.py +179 -0
  156. aurora_actr-0.9.4/src/aurora_context_code/semantic/__init__.py +58 -0
  157. aurora_actr-0.9.4/src/aurora_context_code/semantic/bm25_scorer.py +419 -0
  158. aurora_actr-0.9.4/src/aurora_context_code/semantic/embedding_provider.py +453 -0
  159. aurora_actr-0.9.4/src/aurora_context_code/semantic/hybrid_retriever.py +741 -0
  160. aurora_actr-0.9.4/src/aurora_context_code/semantic/hybrid_retriever_v1_backup.py +382 -0
  161. aurora_actr-0.9.4/src/aurora_context_code/semantic/model_utils.py +404 -0
  162. aurora_actr-0.9.4/src/aurora_core/__init__.py +10 -0
  163. aurora_actr-0.9.4/src/aurora_core/activation/__init__.py +138 -0
  164. aurora_actr-0.9.4/src/aurora_core/activation/base_level.py +233 -0
  165. aurora_actr-0.9.4/src/aurora_core/activation/context_boost.py +498 -0
  166. aurora_actr-0.9.4/src/aurora_core/activation/decay.py +310 -0
  167. aurora_actr-0.9.4/src/aurora_core/activation/engine.py +407 -0
  168. aurora_actr-0.9.4/src/aurora_core/activation/graph_cache.py +374 -0
  169. aurora_actr-0.9.4/src/aurora_core/activation/retrieval.py +471 -0
  170. aurora_actr-0.9.4/src/aurora_core/activation/spreading.py +346 -0
  171. aurora_actr-0.9.4/src/aurora_core/budget/__init__.py +6 -0
  172. aurora_actr-0.9.4/src/aurora_core/budget/tracker.py +523 -0
  173. aurora_actr-0.9.4/src/aurora_core/chunks/__init__.py +11 -0
  174. aurora_actr-0.9.4/src/aurora_core/chunks/base.py +84 -0
  175. aurora_actr-0.9.4/src/aurora_core/chunks/code_chunk.py +276 -0
  176. aurora_actr-0.9.4/src/aurora_core/chunks/reasoning_chunk.py +191 -0
  177. aurora_actr-0.9.4/src/aurora_core/context/__init__.py +10 -0
  178. aurora_actr-0.9.4/src/aurora_core/context/code_provider.py +263 -0
  179. aurora_actr-0.9.4/src/aurora_core/context/provider.py +84 -0
  180. aurora_actr-0.9.4/src/aurora_core/cost/__init__.py +10 -0
  181. aurora_actr-0.9.4/src/aurora_core/cost/tracker.py +22 -0
  182. aurora_actr-0.9.4/src/aurora_core/exceptions.py +207 -0
  183. aurora_actr-0.9.4/src/aurora_core/logging/__init__.py +10 -0
  184. aurora_actr-0.9.4/src/aurora_core/logging/conversation_logger.py +399 -0
  185. aurora_actr-0.9.4/src/aurora_core/metrics/__init__.py +6 -0
  186. aurora_actr-0.9.4/src/aurora_core/metrics/query_metrics.py +336 -0
  187. aurora_actr-0.9.4/src/aurora_core/optimization/__init__.py +73 -0
  188. aurora_actr-0.9.4/src/aurora_core/optimization/cache_manager.py +448 -0
  189. aurora_actr-0.9.4/src/aurora_core/optimization/parallel_executor.py +477 -0
  190. aurora_actr-0.9.4/src/aurora_core/optimization/query_optimizer.py +496 -0
  191. aurora_actr-0.9.4/src/aurora_core/paths.py +109 -0
  192. aurora_actr-0.9.4/src/aurora_core/resilience/__init__.py +24 -0
  193. aurora_actr-0.9.4/src/aurora_core/resilience/alerting.py +316 -0
  194. aurora_actr-0.9.4/src/aurora_core/resilience/metrics_collector.py +186 -0
  195. aurora_actr-0.9.4/src/aurora_core/resilience/rate_limiter.py +170 -0
  196. aurora_actr-0.9.4/src/aurora_core/resilience/retry_handler.py +213 -0
  197. aurora_actr-0.9.4/src/aurora_core/store/__init__.py +22 -0
  198. aurora_actr-0.9.4/src/aurora_core/store/base.py +247 -0
  199. aurora_actr-0.9.4/src/aurora_core/store/connection_pool.py +182 -0
  200. aurora_actr-0.9.4/src/aurora_core/store/memory.py +394 -0
  201. aurora_actr-0.9.4/src/aurora_core/store/migrations.py +327 -0
  202. aurora_actr-0.9.4/src/aurora_core/store/schema.py +143 -0
  203. aurora_actr-0.9.4/src/aurora_core/store/sqlite.py +943 -0
  204. aurora_actr-0.9.4/src/aurora_core/types.py +31 -0
  205. {aurora_actr-0.3.1/src/aurora/mcp → aurora_actr-0.9.4/src/aurora_mcp}/__init__.py +1 -2
  206. {aurora_actr-0.3.1/src/aurora/mcp → aurora_actr-0.9.4/src/aurora_mcp}/config.py +3 -7
  207. aurora_actr-0.9.4/src/aurora_mcp/multiturn_poc.py +161 -0
  208. aurora_actr-0.9.4/src/aurora_mcp/server.py +130 -0
  209. aurora_actr-0.9.4/src/aurora_mcp/tools.py +171 -0
  210. aurora_actr-0.9.4/src/aurora_planning/__init__.py +33 -0
  211. aurora_actr-0.9.4/src/aurora_planning/archive_utils.py +231 -0
  212. aurora_actr-0.9.4/src/aurora_planning/cli/__init__.py +6 -0
  213. aurora_actr-0.9.4/src/aurora_planning/cli/plan_cmd.py +65 -0
  214. aurora_actr-0.9.4/src/aurora_planning/cli/validate_cmd.py +64 -0
  215. aurora_actr-0.9.4/src/aurora_planning/commands/__init__.py +12 -0
  216. aurora_actr-0.9.4/src/aurora_planning/commands/archive.py +616 -0
  217. aurora_actr-0.9.4/src/aurora_planning/commands/init.py +137 -0
  218. aurora_actr-0.9.4/src/aurora_planning/commands/list.py +269 -0
  219. aurora_actr-0.9.4/src/aurora_planning/commands/update.py +58 -0
  220. aurora_actr-0.9.4/src/aurora_planning/commands/view.py +250 -0
  221. aurora_actr-0.9.4/src/aurora_planning/config.py +74 -0
  222. aurora_actr-0.9.4/src/aurora_planning/configurators/__init__.py +7 -0
  223. aurora_actr-0.9.4/src/aurora_planning/configurators/base.py +45 -0
  224. aurora_actr-0.9.4/src/aurora_planning/configurators/registry.py +64 -0
  225. aurora_actr-0.9.4/src/aurora_planning/converters/json.py +109 -0
  226. aurora_actr-0.9.4/src/aurora_planning/global_config.py +128 -0
  227. aurora_actr-0.9.4/src/aurora_planning/id_generator.py +215 -0
  228. aurora_actr-0.9.4/src/aurora_planning/parsers/__init__.py +48 -0
  229. aurora_actr-0.9.4/src/aurora_planning/parsers/markdown.py +400 -0
  230. aurora_actr-0.9.4/src/aurora_planning/parsers/plan_parser.py +382 -0
  231. aurora_actr-0.9.4/src/aurora_planning/parsers/requirements.py +397 -0
  232. aurora_actr-0.9.4/src/aurora_planning/planning_config.py +175 -0
  233. aurora_actr-0.9.4/src/aurora_planning/renderer.py +213 -0
  234. aurora_actr-0.9.4/src/aurora_planning/schemas/__init__.py +22 -0
  235. aurora_actr-0.9.4/src/aurora_planning/schemas/base.py +74 -0
  236. aurora_actr-0.9.4/src/aurora_planning/schemas/capability.py +63 -0
  237. aurora_actr-0.9.4/src/aurora_planning/schemas/plan.py +137 -0
  238. aurora_actr-0.9.4/src/aurora_planning/templates/__init__.py +14 -0
  239. aurora_actr-0.9.4/src/aurora_planning/templates/agents.py +465 -0
  240. aurora_actr-0.9.4/src/aurora_planning/templates/claude.py +31 -0
  241. aurora_actr-0.9.4/src/aurora_planning/templates/project.py +38 -0
  242. aurora_actr-0.9.4/src/aurora_planning/utils/__init__.py +10 -0
  243. aurora_actr-0.9.4/src/aurora_planning/utils/filesystem.py +51 -0
  244. aurora_actr-0.9.4/src/aurora_planning/utils/interactive.py +33 -0
  245. aurora_actr-0.9.4/src/aurora_planning/utils/match.py +69 -0
  246. aurora_actr-0.9.4/src/aurora_planning/utils/task_progress.py +93 -0
  247. aurora_actr-0.9.4/src/aurora_planning/validators/__init__.py +0 -0
  248. aurora_actr-0.9.4/src/aurora_planning/validators/constants.py +72 -0
  249. aurora_actr-0.9.4/src/aurora_planning/validators/types.py +57 -0
  250. aurora_actr-0.9.4/src/aurora_planning/validators/validator.py +852 -0
  251. aurora_actr-0.9.4/src/aurora_reasoning/__init__.py +26 -0
  252. aurora_actr-0.9.4/src/aurora_reasoning/decompose.py +210 -0
  253. aurora_actr-0.9.4/src/aurora_reasoning/llm_client.py +718 -0
  254. aurora_actr-0.9.4/src/aurora_reasoning/prompts/__init__.py +109 -0
  255. aurora_actr-0.9.4/src/aurora_reasoning/prompts/assess.py +93 -0
  256. aurora_actr-0.9.4/src/aurora_reasoning/prompts/decompose.py +254 -0
  257. aurora_actr-0.9.4/src/aurora_reasoning/prompts/examples.py +156 -0
  258. aurora_actr-0.9.4/src/aurora_reasoning/prompts/retry_feedback.py +61 -0
  259. aurora_actr-0.9.4/src/aurora_reasoning/prompts/verify_adversarial.py +126 -0
  260. aurora_actr-0.9.4/src/aurora_reasoning/prompts/verify_agent_output.py +69 -0
  261. aurora_actr-0.9.4/src/aurora_reasoning/prompts/verify_self.py +106 -0
  262. aurora_actr-0.9.4/src/aurora_reasoning/prompts/verify_synthesis.py +82 -0
  263. aurora_actr-0.9.4/src/aurora_reasoning/py.typed +0 -0
  264. aurora_actr-0.9.4/src/aurora_reasoning/synthesize.py +446 -0
  265. aurora_actr-0.9.4/src/aurora_reasoning/verify.py +312 -0
  266. aurora_actr-0.9.4/src/aurora_soar/__init__.py +17 -0
  267. aurora_actr-0.9.4/src/aurora_soar/agent_registry.py +311 -0
  268. aurora_actr-0.9.4/src/aurora_soar/discovery_adapter.py +180 -0
  269. aurora_actr-0.9.4/src/aurora_soar/orchestrator.py +1892 -0
  270. aurora_actr-0.9.4/src/aurora_soar/phases/__init__.py +34 -0
  271. aurora_actr-0.9.4/src/aurora_soar/phases/assess.py +1116 -0
  272. aurora_actr-0.9.4/src/aurora_soar/phases/collect.py +815 -0
  273. aurora_actr-0.9.4/src/aurora_soar/phases/decompose.py +282 -0
  274. aurora_actr-0.9.4/src/aurora_soar/phases/record.py +308 -0
  275. aurora_actr-0.9.4/src/aurora_soar/phases/respond.py +364 -0
  276. aurora_actr-0.9.4/src/aurora_soar/phases/retrieve.py +212 -0
  277. aurora_actr-0.9.4/src/aurora_soar/phases/synthesize.py +190 -0
  278. aurora_actr-0.9.4/src/aurora_soar/phases/verify.py +199 -0
  279. aurora_actr-0.9.4/src/aurora_soar/py.typed +0 -0
  280. aurora_actr-0.9.4/src/aurora_spawner/__init__.py +75 -0
  281. aurora_actr-0.9.4/src/aurora_spawner/circuit_breaker.py +406 -0
  282. aurora_actr-0.9.4/src/aurora_spawner/early_detection.py +386 -0
  283. aurora_actr-0.9.4/src/aurora_spawner/heartbeat.py +305 -0
  284. aurora_actr-0.9.4/src/aurora_spawner/models.py +56 -0
  285. aurora_actr-0.9.4/src/aurora_spawner/observability.py +891 -0
  286. aurora_actr-0.9.4/src/aurora_spawner/recovery.py +1098 -0
  287. aurora_actr-0.9.4/src/aurora_spawner/spawner.py +1488 -0
  288. aurora_actr-0.9.4/src/aurora_spawner/timeout_policy.py +496 -0
  289. aurora_actr-0.9.4/src/aurora_testing/__init__.py +16 -0
  290. aurora_actr-0.9.4/src/aurora_testing/benchmarks.py +580 -0
  291. aurora_actr-0.9.4/src/aurora_testing/fixtures.py +693 -0
  292. aurora_actr-0.9.4/src/aurora_testing/mocks.py +528 -0
  293. aurora_actr-0.9.4/src/aurora_testing/py.typed +0 -0
  294. aurora_actr-0.9.4/src/implement/__init__.py +19 -0
  295. aurora_actr-0.9.4/src/implement/executor.py +195 -0
  296. aurora_actr-0.9.4/src/implement/models.py +66 -0
  297. aurora_actr-0.9.4/src/implement/parser.py +88 -0
  298. aurora_actr-0.9.4/src/implement/prompts/__init__.py +1 -0
  299. aurora_actr-0.3.1/PKG-INFO +0 -480
  300. aurora_actr-0.3.1/README.md +0 -425
  301. aurora_actr-0.3.1/setup.py +0 -187
  302. aurora_actr-0.3.1/src/aurora/__init__.py +0 -11
  303. aurora_actr-0.3.1/src/aurora/cli/__init__.py +0 -42
  304. aurora_actr-0.3.1/src/aurora/context_code/__init__.py +0 -42
  305. aurora_actr-0.3.1/src/aurora/core/__init__.py +0 -56
  306. aurora_actr-0.3.1/src/aurora/mcp/server.py +0 -385
  307. aurora_actr-0.3.1/src/aurora/mcp/tools.py +0 -1198
  308. aurora_actr-0.3.1/src/aurora/reasoning/__init__.py +0 -42
  309. aurora_actr-0.3.1/src/aurora/scripts/__init__.py +0 -1
  310. aurora_actr-0.3.1/src/aurora/scripts/uninstall.py +0 -105
  311. aurora_actr-0.3.1/src/aurora/soar/__init__.py +0 -42
  312. aurora_actr-0.3.1/src/aurora/testing/__init__.py +0 -42
  313. aurora_actr-0.3.1/src/aurora_actr.egg-info/PKG-INFO +0 -480
  314. aurora_actr-0.3.1/src/aurora_actr.egg-info/SOURCES.txt +0 -28
  315. aurora_actr-0.3.1/src/aurora_actr.egg-info/entry_points.txt +0 -4
  316. aurora_actr-0.3.1/src/aurora_actr.egg-info/requires.txt +0 -31
  317. aurora_actr-0.3.1/src/aurora_actr.egg-info/top_level.txt +0 -1
  318. {aurora_actr-0.3.1 → aurora_actr-0.9.4}/setup.cfg +0 -0
  319. {aurora_actr-0.3.1 → aurora_actr-0.9.4}/src/aurora_actr.egg-info/dependency_links.txt +0 -0
  320. {aurora_actr-0.3.1/src/aurora/cli → aurora_actr-0.9.4/src/aurora_cli/commands}/py.typed +0 -0
  321. {aurora_actr-0.3.1/src/aurora/context_code → aurora_actr-0.9.4/src/aurora_cli}/py.typed +0 -0
  322. {aurora_actr-0.3.1/src/aurora/core → aurora_actr-0.9.4/src/aurora_context_code}/py.typed +0 -0
  323. {aurora_actr-0.3.1/src/aurora/reasoning → aurora_actr-0.9.4/src/aurora_context_code/semantic}/py.typed +0 -0
  324. {aurora_actr-0.3.1/src/aurora/soar → aurora_actr-0.9.4/src/aurora_core}/py.typed +0 -0
  325. /aurora_actr-0.3.1/src/aurora/testing/py.typed → /aurora_actr-0.9.4/src/aurora_planning/converters/__init__.py +0 -0
@@ -0,0 +1,288 @@
1
+ Metadata-Version: 2.4
2
+ Name: aurora-actr
3
+ Version: 0.9.4
4
+ Summary: AURORA: Adaptive Unified Reasoning and Orchestration Architecture with MCP Integration
5
+ Author-email: AURORA Team <aurora@example.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/hamr/aurora
8
+ Project-URL: Documentation, https://github.com/hamr/aurora/blob/main/README.md
9
+ Project-URL: Repository, https://github.com/hamr/aurora
10
+ Project-URL: Issues, https://github.com/hamr/aurora/issues
11
+ Project-URL: Changelog, https://github.com/hamr/aurora/blob/main/CHANGELOG.md
12
+ Keywords: aurora,actr,cognitive-architecture,semantic-search,mcp,reasoning,soar
13
+ Classifier: Development Status :: 3 - Alpha
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
+ Requires-Python: >=3.10
22
+ Description-Content-Type: text/markdown
23
+ Requires-Dist: pydantic>=2.0.0
24
+ Requires-Dist: jsonschema>=4.17.0
25
+ Requires-Dist: click>=8.1.0
26
+ Requires-Dist: rich>=13.0.0
27
+ Requires-Dist: python-frontmatter>=1.0.0
28
+ Requires-Dist: jinja2>=3.1.0
29
+ Requires-Dist: python-slugify>=8.0.0
30
+ Requires-Dist: questionary>=2.0.0
31
+ Requires-Dist: pyyaml>=6.0.0
32
+ Requires-Dist: tree-sitter>=0.20.0
33
+ Requires-Dist: tree-sitter-python>=0.20.0
34
+ Requires-Dist: numpy>=1.24.0
35
+ Requires-Dist: anthropic>=0.18.0
36
+ Requires-Dist: openai>=1.0.0
37
+ Requires-Dist: ollama>=0.1.0
38
+ Requires-Dist: tenacity>=8.2.0
39
+ Requires-Dist: fastmcp>=0.1.0
40
+ Provides-Extra: dev
41
+ Requires-Dist: pytest>=7.4.0; extra == "dev"
42
+ Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
43
+ Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
44
+ Requires-Dist: pytest-benchmark>=4.0.0; extra == "dev"
45
+ Requires-Dist: ruff>=0.1.0; extra == "dev"
46
+ Requires-Dist: mypy>=1.5.0; extra == "dev"
47
+ Requires-Dist: types-jsonschema>=4.0.0; extra == "dev"
48
+ Requires-Dist: bandit>=1.7.5; extra == "dev"
49
+ Requires-Dist: memory-profiler>=0.61.0; extra == "dev"
50
+
51
+ <div align="center">
52
+
53
+ <pre>
54
+ █████╗ ██╗ ██╗██████╗ ██████╗ ██████╗ █████╗
55
+ ██╔══██╗██║ ██║██╔══██╗██╔═══██╗██╔══██╗██╔══██╗
56
+ ███████║██║ ██║██████╔╝██║ ██║██████╔╝███████║
57
+ ██╔══██║██║ ██║██╔══██╗██║ ██║██╔══██╗██╔══██║
58
+ ██║ ██║╚██████╔╝██║ ██║╚██████╔╝██║ ██║██║ ██║
59
+ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝
60
+ ┳┳┓┏┓┳┳┓┏┓┳┓┓┏ ┏┓┓ ┏┏┓┳┓┏┓ ┏┓┳┓┏┓┳┳┓┏┓┓ ┏┏┓┳┓┓┏
61
+ ┃┃┃┣ ┃┃┃┃┃┣┫┗┫━━┣┫┃┃┃┣┫┣┫┣ ━━┣ ┣┫┣┫┃┃┃┣ ┃┃┃┃┃┣┫┃┫
62
+ ┛ ┗┗┛┛ ┗┗┛┛┗┗┛ ┛┗┗┻┛┛┗┛┗┗┛ ┻ ┛┗┛┗┛ ┗┗┛┗┻┛┗┛┛┗┛┗
63
+ Planning & Multi-Agent Orchestration
64
+ </pre>
65
+
66
+ [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
67
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
68
+ [![PyPI version](https://img.shields.io/pypi/v/aurora-actr.svg)](https://pypi.org/project/aurora-actr/)
69
+
70
+ </div>
71
+
72
+ ---
73
+
74
+ ## Summary
75
+
76
+ ### Aurora - Memory-aware Planning & Multi-Agent Orchestration Framework
77
+
78
+ - **LLM-agnostic** - No API keys, works with 20+ CLI tools (Claude Code, Cursor, Aider, etc.)
79
+ - **Smart Memory** - ACT-R activation decay, BM25, tree-sitter/cAST, git signals
80
+ - **Memory-Aware Planning** - Decompose goals, assign agents, detect capability gaps
81
+ - **Memory-Aware Research** - Multi-agent orchestration with recovery and state
82
+ - **Task Execution** - Stop gates for feature creep and dangerous commands
83
+ - **Headless Mode** - Isolated branch execution with max retries
84
+ - **Session Checkpoints** - Save and resume session context
85
+
86
+ ```bash
87
+ # PyPI
88
+ pip install aurora-actr
89
+
90
+ # From source
91
+ git clone https://github.com/amrhas82/aurora.git
92
+ cd aurora && ./install.sh
93
+ ```
94
+
95
+ ---
96
+
97
+ ## Core Features
98
+
99
+ ### Smart Memory (Slash Commands)
100
+
101
+ `aur:search` - Memory with activation decay from ACT-R. Indexes your code using:
102
+
103
+ - **BM25** - Keyword search
104
+ - **Git signals** - Recent changes rank higher
105
+ - **Tree-sitter/cAST** - Code stored as class/method (Python, TypeScript, Java)
106
+ - **Markdown indexing** - Search docs, save tokens
107
+
108
+ ```bash
109
+ # Terminal
110
+ aur mem index .
111
+ aur mem search "authentication"
112
+
113
+ # Slash command
114
+ /aur:search "authentication"
115
+ /aur:get 1 # Read chunk
116
+ ```
117
+
118
+ ---
119
+
120
+ ### Memory-Aware Planning (Terminal)
121
+
122
+ `aur goals` - Decomposes any goal into subgoals:
123
+
124
+ 1. Looks up existing memory for matches
125
+ 2. Breaks down into subgoals
126
+ 3. Assigns your existing subagents to each subgoal
127
+ 4. Detects capability gaps - tells you what agents to create
128
+
129
+ Works across any domain (code, writing, research).
130
+
131
+ ```bash
132
+ $ aur goals "Add payment processing"
133
+
134
+ Memory matches: 3 files found
135
+ Subgoals: 4
136
+ sg-1: Set up Stripe SDK (@code-developer)
137
+ sg-2: Create payment endpoints (@code-developer)
138
+ sg-3: Implement checkout UI (@ui-designer)
139
+ sg-4: Configure PCI compliance (@security-engineer -> NOT FOUND)
140
+
141
+ Gaps detected:
142
+ - Missing @security-engineer
143
+ ```
144
+
145
+ ---
146
+
147
+ ### Memory-Aware Research (Terminal)
148
+
149
+ `aur soar` - Research questions using your codebase:
150
+
151
+ 1. Looks up existing memory for matches
152
+ 2. Decomposes question into sub-questions
153
+ 3. Utilizes existing subagents
154
+ 4. Spawns agents on the fly
155
+ 5. Simple multi-orchestration with agent recovery (stateful)
156
+
157
+ ```bash
158
+ aur soar "How does the payment flow work?"
159
+ ```
160
+
161
+ ---
162
+
163
+ ### Task Execution (Terminal)
164
+
165
+ `aur spawn` - Takes predefined task list and executes with:
166
+
167
+ - Stop gates for feature creep
168
+ - Dangerous command detection (rm -rf, etc.)
169
+ - Budget limits
170
+
171
+ ```bash
172
+ aur spawn tasks.md --verbose
173
+ ```
174
+
175
+ ---
176
+
177
+ ### Headless Mode (Terminal)
178
+
179
+ `aur headless` - Ralph Wiggum mode:
180
+
181
+ - Runs in isolated branch
182
+ - Max retries on failure
183
+ - Unattended execution
184
+
185
+ ```bash
186
+ aur headless prompt.md
187
+ ```
188
+
189
+ ---
190
+
191
+ ### Checkpoints (Slash Command)
192
+
193
+ `aur:checkpoint` - Create digest of current session to resume later.
194
+
195
+ ```bash
196
+ /aur:checkpoint
197
+
198
+ # Output: .aurora/checkpoints/session-2026-01-15.md
199
+ # Contains: goals, progress, decisions, next steps
200
+ ```
201
+
202
+ ---
203
+
204
+ ## Planning Workflow
205
+
206
+ OpenSpec-based flow from goal to implementation:
207
+
208
+ ```
209
+ Terminal Slash Command Slash Command
210
+ ┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
211
+ │ aur goals │ -> │ /aur:plan │ -> │ /aur:implement │
212
+ │ "Add feature" │ │ goals.json │ │ │
213
+ └─────────────────┘ └─────────────────┘ └─────────────────┘
214
+ │ │ │
215
+ v v v
216
+ goals.json PRD + tasks.md Implemented
217
+ - subgoals - specs/ - checkpoints
218
+ - agent assignments - file hints - validation
219
+ - capability gaps
220
+ ```
221
+
222
+ ---
223
+
224
+ ## Quick Start
225
+
226
+ ```bash
227
+ # Install
228
+ pip install aurora-actr
229
+
230
+ # Initialize project
231
+ cd your-project/
232
+ aur init
233
+
234
+ # Index codebase for memory
235
+ aur mem index .
236
+
237
+ # Plan with memory context
238
+ aur goals "Add user authentication"
239
+
240
+ # In your CLI tool (Claude Code, Cursor, etc.):
241
+ /aur:plan goals.json
242
+ /aur:implement
243
+ ```
244
+
245
+ ---
246
+
247
+ ## Commands Reference
248
+
249
+ | Command | Type | Description |
250
+ |---------|------|-------------|
251
+ | `aur init` | Terminal | Initialize Aurora in project |
252
+ | `aur doctor` | Terminal | Check installation and dependencies |
253
+ | `aur mem index .` | Terminal | Index codebase |
254
+ | `aur mem search "query"` | Terminal | Search memory |
255
+ | `aur goals "goal"` | Terminal | Memory-aware planning |
256
+ | `aur soar "question"` | Terminal | Memory-aware research |
257
+ | `aur spawn tasks.md` | Terminal | Execute with safeguards |
258
+ | `aur headless prompt.md` | Terminal | Unattended execution |
259
+ | `/aur:search "query"` | Slash | Search indexed memory |
260
+ | `/aur:get N` | Slash | Read chunk from search |
261
+ | `/aur:plan goals.json` | Slash | Generate PRD + tasks |
262
+ | `/aur:implement` | Slash | Execute plan |
263
+ | `/aur:checkpoint` | Slash | Save session context |
264
+ | `/aur:archive plan-id` | Slash | Archive completed plan |
265
+
266
+ ---
267
+
268
+ ## Supported Tools
269
+
270
+ Works with 20+ CLI tools: Claude Code, Cursor, Aider, Cline, Windsurf, Gemini CLI, and more.
271
+
272
+ ```bash
273
+ aur init --tools=claude,cursor
274
+ ```
275
+
276
+ ---
277
+
278
+ ## Documentation
279
+
280
+ - [Commands Reference](docs/guides/COMMANDS.md)
281
+ - [Tools Guide](docs/guides/TOOLS_GUIDE.md)
282
+ - [Flows Guide](docs/guides/FLOWS.md)
283
+
284
+ ---
285
+
286
+ ## License
287
+
288
+ MIT License - See [LICENSE](LICENSE)
@@ -0,0 +1,238 @@
1
+ <div align="center">
2
+
3
+ <pre>
4
+ █████╗ ██╗ ██╗██████╗ ██████╗ ██████╗ █████╗
5
+ ██╔══██╗██║ ██║██╔══██╗██╔═══██╗██╔══██╗██╔══██╗
6
+ ███████║██║ ██║██████╔╝██║ ██║██████╔╝███████║
7
+ ██╔══██║██║ ██║██╔══██╗██║ ██║██╔══██╗██╔══██║
8
+ ██║ ██║╚██████╔╝██║ ██║╚██████╔╝██║ ██║██║ ██║
9
+ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝
10
+ ┳┳┓┏┓┳┳┓┏┓┳┓┓┏ ┏┓┓ ┏┏┓┳┓┏┓ ┏┓┳┓┏┓┳┳┓┏┓┓ ┏┏┓┳┓┓┏
11
+ ┃┃┃┣ ┃┃┃┃┃┣┫┗┫━━┣┫┃┃┃┣┫┣┫┣ ━━┣ ┣┫┣┫┃┃┃┣ ┃┃┃┃┃┣┫┃┫
12
+ ┛ ┗┗┛┛ ┗┗┛┛┗┗┛ ┛┗┗┻┛┛┗┛┗┗┛ ┻ ┛┗┛┗┛ ┗┗┛┗┻┛┗┛┛┗┛┗
13
+ Planning & Multi-Agent Orchestration
14
+ </pre>
15
+
16
+ [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
17
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
18
+ [![PyPI version](https://img.shields.io/pypi/v/aurora-actr.svg)](https://pypi.org/project/aurora-actr/)
19
+
20
+ </div>
21
+
22
+ ---
23
+
24
+ ## Summary
25
+
26
+ ### Aurora - Memory-aware Planning & Multi-Agent Orchestration Framework
27
+
28
+ - **LLM-agnostic** - No API keys, works with 20+ CLI tools (Claude Code, Cursor, Aider, etc.)
29
+ - **Smart Memory** - ACT-R activation decay, BM25, tree-sitter/cAST, git signals
30
+ - **Memory-Aware Planning** - Decompose goals, assign agents, detect capability gaps
31
+ - **Memory-Aware Research** - Multi-agent orchestration with recovery and state
32
+ - **Task Execution** - Stop gates for feature creep and dangerous commands
33
+ - **Headless Mode** - Isolated branch execution with max retries
34
+ - **Session Checkpoints** - Save and resume session context
35
+
36
+ ```bash
37
+ # PyPI
38
+ pip install aurora-actr
39
+
40
+ # From source
41
+ git clone https://github.com/amrhas82/aurora.git
42
+ cd aurora && ./install.sh
43
+ ```
44
+
45
+ ---
46
+
47
+ ## Core Features
48
+
49
+ ### Smart Memory (Slash Commands)
50
+
51
+ `aur:search` - Memory with activation decay from ACT-R. Indexes your code using:
52
+
53
+ - **BM25** - Keyword search
54
+ - **Git signals** - Recent changes rank higher
55
+ - **Tree-sitter/cAST** - Code stored as class/method (Python, TypeScript, Java)
56
+ - **Markdown indexing** - Search docs, save tokens
57
+
58
+ ```bash
59
+ # Terminal
60
+ aur mem index .
61
+ aur mem search "authentication"
62
+
63
+ # Slash command
64
+ /aur:search "authentication"
65
+ /aur:get 1 # Read chunk
66
+ ```
67
+
68
+ ---
69
+
70
+ ### Memory-Aware Planning (Terminal)
71
+
72
+ `aur goals` - Decomposes any goal into subgoals:
73
+
74
+ 1. Looks up existing memory for matches
75
+ 2. Breaks down into subgoals
76
+ 3. Assigns your existing subagents to each subgoal
77
+ 4. Detects capability gaps - tells you what agents to create
78
+
79
+ Works across any domain (code, writing, research).
80
+
81
+ ```bash
82
+ $ aur goals "Add payment processing"
83
+
84
+ Memory matches: 3 files found
85
+ Subgoals: 4
86
+ sg-1: Set up Stripe SDK (@code-developer)
87
+ sg-2: Create payment endpoints (@code-developer)
88
+ sg-3: Implement checkout UI (@ui-designer)
89
+ sg-4: Configure PCI compliance (@security-engineer -> NOT FOUND)
90
+
91
+ Gaps detected:
92
+ - Missing @security-engineer
93
+ ```
94
+
95
+ ---
96
+
97
+ ### Memory-Aware Research (Terminal)
98
+
99
+ `aur soar` - Research questions using your codebase:
100
+
101
+ 1. Looks up existing memory for matches
102
+ 2. Decomposes question into sub-questions
103
+ 3. Utilizes existing subagents
104
+ 4. Spawns agents on the fly
105
+ 5. Simple multi-orchestration with agent recovery (stateful)
106
+
107
+ ```bash
108
+ aur soar "How does the payment flow work?"
109
+ ```
110
+
111
+ ---
112
+
113
+ ### Task Execution (Terminal)
114
+
115
+ `aur spawn` - Takes predefined task list and executes with:
116
+
117
+ - Stop gates for feature creep
118
+ - Dangerous command detection (rm -rf, etc.)
119
+ - Budget limits
120
+
121
+ ```bash
122
+ aur spawn tasks.md --verbose
123
+ ```
124
+
125
+ ---
126
+
127
+ ### Headless Mode (Terminal)
128
+
129
+ `aur headless` - Ralph Wiggum mode:
130
+
131
+ - Runs in isolated branch
132
+ - Max retries on failure
133
+ - Unattended execution
134
+
135
+ ```bash
136
+ aur headless prompt.md
137
+ ```
138
+
139
+ ---
140
+
141
+ ### Checkpoints (Slash Command)
142
+
143
+ `aur:checkpoint` - Create digest of current session to resume later.
144
+
145
+ ```bash
146
+ /aur:checkpoint
147
+
148
+ # Output: .aurora/checkpoints/session-2026-01-15.md
149
+ # Contains: goals, progress, decisions, next steps
150
+ ```
151
+
152
+ ---
153
+
154
+ ## Planning Workflow
155
+
156
+ OpenSpec-based flow from goal to implementation:
157
+
158
+ ```
159
+ Terminal Slash Command Slash Command
160
+ ┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
161
+ │ aur goals │ -> │ /aur:plan │ -> │ /aur:implement │
162
+ │ "Add feature" │ │ goals.json │ │ │
163
+ └─────────────────┘ └─────────────────┘ └─────────────────┘
164
+ │ │ │
165
+ v v v
166
+ goals.json PRD + tasks.md Implemented
167
+ - subgoals - specs/ - checkpoints
168
+ - agent assignments - file hints - validation
169
+ - capability gaps
170
+ ```
171
+
172
+ ---
173
+
174
+ ## Quick Start
175
+
176
+ ```bash
177
+ # Install
178
+ pip install aurora-actr
179
+
180
+ # Initialize project
181
+ cd your-project/
182
+ aur init
183
+
184
+ # Index codebase for memory
185
+ aur mem index .
186
+
187
+ # Plan with memory context
188
+ aur goals "Add user authentication"
189
+
190
+ # In your CLI tool (Claude Code, Cursor, etc.):
191
+ /aur:plan goals.json
192
+ /aur:implement
193
+ ```
194
+
195
+ ---
196
+
197
+ ## Commands Reference
198
+
199
+ | Command | Type | Description |
200
+ |---------|------|-------------|
201
+ | `aur init` | Terminal | Initialize Aurora in project |
202
+ | `aur doctor` | Terminal | Check installation and dependencies |
203
+ | `aur mem index .` | Terminal | Index codebase |
204
+ | `aur mem search "query"` | Terminal | Search memory |
205
+ | `aur goals "goal"` | Terminal | Memory-aware planning |
206
+ | `aur soar "question"` | Terminal | Memory-aware research |
207
+ | `aur spawn tasks.md` | Terminal | Execute with safeguards |
208
+ | `aur headless prompt.md` | Terminal | Unattended execution |
209
+ | `/aur:search "query"` | Slash | Search indexed memory |
210
+ | `/aur:get N` | Slash | Read chunk from search |
211
+ | `/aur:plan goals.json` | Slash | Generate PRD + tasks |
212
+ | `/aur:implement` | Slash | Execute plan |
213
+ | `/aur:checkpoint` | Slash | Save session context |
214
+ | `/aur:archive plan-id` | Slash | Archive completed plan |
215
+
216
+ ---
217
+
218
+ ## Supported Tools
219
+
220
+ Works with 20+ CLI tools: Claude Code, Cursor, Aider, Cline, Windsurf, Gemini CLI, and more.
221
+
222
+ ```bash
223
+ aur init --tools=claude,cursor
224
+ ```
225
+
226
+ ---
227
+
228
+ ## Documentation
229
+
230
+ - [Commands Reference](docs/guides/COMMANDS.md)
231
+ - [Tools Guide](docs/guides/TOOLS_GUIDE.md)
232
+ - [Flows Guide](docs/guides/FLOWS.md)
233
+
234
+ ---
235
+
236
+ ## License
237
+
238
+ MIT License - See [LICENSE](LICENSE)
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "aurora-actr"
7
- version = "0.3.1"
7
+ version = "0.9.4"
8
8
  description = "AURORA: Adaptive Unified Reasoning and Orchestration Architecture with MCP Integration"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -24,41 +24,54 @@ classifiers = [
24
24
  "Topic :: Scientific/Engineering :: Artificial Intelligence",
25
25
  ]
26
26
 
27
+ # All packages bundled - ~5MB total
27
28
  dependencies = [
28
- "aurora-core",
29
- "aurora-context-code",
30
- "aurora-soar",
31
- "aurora-reasoning",
32
- "aurora-cli",
33
- "aurora-testing",
34
- "aurora-planning",
29
+ # Core dependencies
30
+ "pydantic>=2.0.0",
31
+ "jsonschema>=4.17.0",
32
+
33
+ # CLI dependencies
34
+ "click>=8.1.0",
35
+ "rich>=13.0.0",
36
+ "python-frontmatter>=1.0.0",
37
+ "jinja2>=3.1.0",
38
+ "python-slugify>=8.0.0",
39
+ "questionary>=2.0.0",
40
+ "pyyaml>=6.0.0",
41
+
42
+ # Context/code analysis dependencies
43
+ "tree-sitter>=0.20.0",
44
+ "tree-sitter-python>=0.20.0",
45
+ "numpy>=1.24.0",
46
+
47
+ # Reasoning dependencies
48
+ "anthropic>=0.18.0",
49
+ "openai>=1.0.0",
50
+ "ollama>=0.1.0",
51
+ "tenacity>=8.2.0",
52
+
53
+ # MCP integration
54
+ "fastmcp>=0.1.0",
35
55
  ]
36
56
 
37
57
  [project.urls]
38
- Homepage = "https://github.com/yourusername/aurora"
39
- Documentation = "https://github.com/yourusername/aurora/blob/main/README.md"
40
- Repository = "https://github.com/yourusername/aurora"
41
- Issues = "https://github.com/yourusername/aurora/issues"
42
- Changelog = "https://github.com/yourusername/aurora/blob/main/CHANGELOG.md"
58
+ Homepage = "https://github.com/hamr/aurora"
59
+ Documentation = "https://github.com/hamr/aurora/blob/main/README.md"
60
+ Repository = "https://github.com/hamr/aurora"
61
+ Issues = "https://github.com/hamr/aurora/issues"
62
+ Changelog = "https://github.com/hamr/aurora/blob/main/CHANGELOG.md"
43
63
 
44
64
  [project.scripts]
45
65
  aur = "aurora_cli.main:cli"
46
- aurora-mcp = "aurora.mcp.server:main"
47
- aurora-uninstall = "aurora.scripts.uninstall:main"
66
+ aurora = "aurora_cli.main:cli"
67
+ aurora-mcp = "aurora_mcp.server:main"
48
68
 
49
69
  [project.optional-dependencies]
50
- ml = [
51
- "sentence-transformers>=2.2.0",
52
- "torch>=2.0.0",
53
- ]
54
- mcp = [
55
- "fastmcp>=0.1.0",
56
- ]
57
- all = [
58
- "sentence-transformers>=2.2.0",
59
- "torch>=2.0.0",
60
- "fastmcp>=0.1.0",
61
- ]
70
+ # Note: ML features (semantic search) are optional and auto-detected.
71
+ # If you want semantic embeddings, manually install: pip install sentence-transformers torch
72
+ # Aurora works fine without them using BM25 + ACT-R only.
73
+
74
+ # Dev: Testing and development tools (contributors only)
62
75
  dev = [
63
76
  "pytest>=7.4.0",
64
77
  "pytest-cov>=4.1.0",
@@ -69,7 +82,6 @@ dev = [
69
82
  "types-jsonschema>=4.0.0",
70
83
  "bandit>=1.7.5",
71
84
  "memory-profiler>=0.61.0",
72
- "aurora-testing",
73
85
  ]
74
86
 
75
87
  # Tool configurations