aurora-actr 0.3.1__tar.gz → 0.6.1__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.
- aurora_actr-0.6.1/PKG-INFO +521 -0
- aurora_actr-0.6.1/README.md +468 -0
- {aurora_actr-0.3.1 → aurora_actr-0.6.1}/pyproject.toml +38 -24
- aurora_actr-0.6.1/src/aurora_actr.egg-info/PKG-INFO +521 -0
- aurora_actr-0.6.1/src/aurora_actr.egg-info/SOURCES.txt +260 -0
- aurora_actr-0.6.1/src/aurora_actr.egg-info/entry_points.txt +4 -0
- aurora_actr-0.6.1/src/aurora_actr.egg-info/requires.txt +32 -0
- aurora_actr-0.6.1/src/aurora_actr.egg-info/top_level.txt +8 -0
- aurora_actr-0.6.1/src/aurora_cli/__init__.py +8 -0
- aurora_actr-0.6.1/src/aurora_cli/agent_discovery/__init__.py +59 -0
- aurora_actr-0.6.1/src/aurora_cli/agent_discovery/manifest.py +376 -0
- aurora_actr-0.6.1/src/aurora_cli/agent_discovery/models.py +384 -0
- aurora_actr-0.6.1/src/aurora_cli/agent_discovery/parser.py +252 -0
- aurora_actr-0.6.1/src/aurora_cli/agent_discovery/scanner.py +206 -0
- aurora_actr-0.6.1/src/aurora_cli/commands/__init__.py +20 -0
- aurora_actr-0.6.1/src/aurora_cli/commands/agents.py +588 -0
- aurora_actr-0.6.1/src/aurora_cli/commands/budget.py +294 -0
- aurora_actr-0.6.1/src/aurora_cli/commands/doctor.py +271 -0
- aurora_actr-0.6.1/src/aurora_cli/commands/goals.py +353 -0
- aurora_actr-0.6.1/src/aurora_cli/commands/headless.py +133 -0
- aurora_actr-0.6.1/src/aurora_cli/commands/init.py +949 -0
- aurora_actr-0.6.1/src/aurora_cli/commands/init_helpers.py +988 -0
- aurora_actr-0.6.1/src/aurora_cli/commands/memory.py +1244 -0
- aurora_actr-0.6.1/src/aurora_cli/commands/plan.py +547 -0
- aurora_actr-0.6.1/src/aurora_cli/commands/query.py +300 -0
- aurora_actr-0.6.1/src/aurora_cli/commands/soar.py +495 -0
- aurora_actr-0.6.1/src/aurora_cli/commands/spawn.py +268 -0
- aurora_actr-0.6.1/src/aurora_cli/commands/version.py +84 -0
- aurora_actr-0.6.1/src/aurora_cli/config.py +704 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/__init__.py +26 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/agents.py +34 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/ampcode.py +34 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/base.py +150 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/claude.py +59 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/claude_commands.py +127 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/droid.py +34 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/mcp/__init__.py +19 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/mcp/base.py +296 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/mcp/claude.py +274 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/mcp/cline.py +43 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/mcp/continue_.py +202 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/mcp/cursor.py +44 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/mcp/registry.py +124 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/opencode.py +34 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/registry.py +94 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/__init__.py +69 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/amazon_q.py +128 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/antigravity.py +79 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/auggie.py +114 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/base.py +213 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/claude.py +108 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/cline.py +86 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/codebuddy.py +108 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/codex.py +224 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/costrict.py +114 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/crush.py +108 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/cursor.py +115 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/factory.py +118 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/gemini.py +79 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/github_copilot.py +103 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/iflow.py +114 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/kilocode.py +71 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/opencode.py +122 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/qoder.py +108 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/qwen.py +79 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/registry.py +144 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/roocode.py +86 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/toml_base.py +137 -0
- aurora_actr-0.6.1/src/aurora_cli/configurators/slash/windsurf.py +86 -0
- aurora_actr-0.6.1/src/aurora_cli/errors.py +781 -0
- aurora_actr-0.6.1/src/aurora_cli/escalation.py +241 -0
- aurora_actr-0.6.1/src/aurora_cli/execution.py +637 -0
- aurora_actr-0.6.1/src/aurora_cli/health_checks.py +1073 -0
- aurora_actr-0.6.1/src/aurora_cli/ignore_patterns.py +128 -0
- aurora_actr-0.6.1/src/aurora_cli/llm/__init__.py +9 -0
- aurora_actr-0.6.1/src/aurora_cli/llm/cli_pipe_client.py +251 -0
- aurora_actr-0.6.1/src/aurora_cli/main.py +250 -0
- aurora_actr-0.6.1/src/aurora_cli/memory/__init__.py +29 -0
- aurora_actr-0.6.1/src/aurora_cli/memory/retrieval.py +411 -0
- aurora_actr-0.6.1/src/aurora_cli/memory_manager.py +863 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/__init__.py +79 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/agents.py +466 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/checkpoint.py +64 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/commands/__init__.py +10 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/commands/archive.py +641 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/core.py +1657 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/decompose.py +456 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/errors.py +196 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/memory.py +222 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/models.py +894 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/parsers/__init__.py +22 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/parsers/markdown.py +472 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/parsers/plan.py +419 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/parsers/requirements.py +470 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/renderer.py +214 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/results.py +174 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/schemas/__init__.py +25 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/schemas/base.py +129 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/schemas/plan.py +248 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/templates/__init__.py +14 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/templates/agents.py +466 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/templates/claude.py +31 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/templates/project.py +39 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/utils/__init__.py +13 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/validation/__init__.py +34 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/validation/constants.py +84 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/validation/types.py +79 -0
- aurora_actr-0.6.1/src/aurora_cli/planning/validation/validator.py +865 -0
- aurora_actr-0.6.1/src/aurora_cli/templates/__init__.py +22 -0
- aurora_actr-0.6.1/src/aurora_cli/templates/agents.py +282 -0
- aurora_actr-0.6.1/src/aurora_cli/templates/claude.py +31 -0
- aurora_actr-0.6.1/src/aurora_cli/templates/commands.py +178 -0
- aurora_actr-0.6.1/src/aurora_cli/templates/project.py +47 -0
- aurora_actr-0.6.1/src/aurora_cli/templates/slash_commands.py +266 -0
- aurora_actr-0.6.1/src/aurora_cli/wizard.py +361 -0
- aurora_actr-0.6.1/src/aurora_context_code/__init__.py +27 -0
- aurora_actr-0.6.1/src/aurora_context_code/git.py +289 -0
- aurora_actr-0.6.1/src/aurora_context_code/knowledge_parser.py +180 -0
- aurora_actr-0.6.1/src/aurora_context_code/languages/__init__.py +5 -0
- aurora_actr-0.6.1/src/aurora_context_code/languages/markdown.py +128 -0
- aurora_actr-0.6.1/src/aurora_context_code/languages/python.py +677 -0
- aurora_actr-0.6.1/src/aurora_context_code/parser.py +89 -0
- aurora_actr-0.6.1/src/aurora_context_code/registry.py +171 -0
- aurora_actr-0.6.1/src/aurora_context_code/semantic/__init__.py +47 -0
- aurora_actr-0.6.1/src/aurora_context_code/semantic/bm25_scorer.py +420 -0
- aurora_actr-0.6.1/src/aurora_context_code/semantic/embedding_provider.py +255 -0
- aurora_actr-0.6.1/src/aurora_context_code/semantic/hybrid_retriever.py +534 -0
- aurora_actr-0.6.1/src/aurora_context_code/semantic/hybrid_retriever_v1_backup.py +382 -0
- aurora_actr-0.6.1/src/aurora_core/__init__.py +11 -0
- aurora_actr-0.6.1/src/aurora_core/activation/__init__.py +139 -0
- aurora_actr-0.6.1/src/aurora_core/activation/base_level.py +236 -0
- aurora_actr-0.6.1/src/aurora_core/activation/context_boost.py +499 -0
- aurora_actr-0.6.1/src/aurora_core/activation/decay.py +311 -0
- aurora_actr-0.6.1/src/aurora_core/activation/engine.py +408 -0
- aurora_actr-0.6.1/src/aurora_core/activation/graph_cache.py +374 -0
- aurora_actr-0.6.1/src/aurora_core/activation/retrieval.py +472 -0
- aurora_actr-0.6.1/src/aurora_core/activation/spreading.py +347 -0
- aurora_actr-0.6.1/src/aurora_core/budget/__init__.py +5 -0
- aurora_actr-0.6.1/src/aurora_core/budget/tracker.py +523 -0
- aurora_actr-0.6.1/src/aurora_core/chunks/__init__.py +11 -0
- aurora_actr-0.6.1/src/aurora_core/chunks/base.py +90 -0
- aurora_actr-0.6.1/src/aurora_core/chunks/code_chunk.py +282 -0
- aurora_actr-0.6.1/src/aurora_core/chunks/reasoning_chunk.py +197 -0
- aurora_actr-0.6.1/src/aurora_core/config/__init__.py +10 -0
- aurora_actr-0.6.1/src/aurora_core/config/loader.py +370 -0
- aurora_actr-0.6.1/src/aurora_core/config/schema.py +386 -0
- aurora_actr-0.6.1/src/aurora_core/context/__init__.py +10 -0
- aurora_actr-0.6.1/src/aurora_core/context/code_provider.py +270 -0
- aurora_actr-0.6.1/src/aurora_core/context/provider.py +89 -0
- aurora_actr-0.6.1/src/aurora_core/cost/__init__.py +9 -0
- aurora_actr-0.6.1/src/aurora_core/cost/tracker.py +21 -0
- aurora_actr-0.6.1/src/aurora_core/exceptions.py +222 -0
- aurora_actr-0.6.1/src/aurora_core/logging/__init__.py +10 -0
- aurora_actr-0.6.1/src/aurora_core/logging/conversation_logger.py +351 -0
- aurora_actr-0.6.1/src/aurora_core/metrics/__init__.py +5 -0
- aurora_actr-0.6.1/src/aurora_core/metrics/query_metrics.py +341 -0
- aurora_actr-0.6.1/src/aurora_core/optimization/__init__.py +73 -0
- aurora_actr-0.6.1/src/aurora_core/optimization/cache_manager.py +449 -0
- aurora_actr-0.6.1/src/aurora_core/optimization/parallel_executor.py +478 -0
- aurora_actr-0.6.1/src/aurora_core/optimization/query_optimizer.py +497 -0
- aurora_actr-0.6.1/src/aurora_core/paths.py +109 -0
- aurora_actr-0.6.1/src/aurora_core/resilience/__init__.py +24 -0
- aurora_actr-0.6.1/src/aurora_core/resilience/alerting.py +328 -0
- aurora_actr-0.6.1/src/aurora_core/resilience/metrics_collector.py +192 -0
- aurora_actr-0.6.1/src/aurora_core/resilience/rate_limiter.py +177 -0
- aurora_actr-0.6.1/src/aurora_core/resilience/retry_handler.py +219 -0
- aurora_actr-0.6.1/src/aurora_core/store/__init__.py +22 -0
- aurora_actr-0.6.1/src/aurora_core/store/base.py +238 -0
- aurora_actr-0.6.1/src/aurora_core/store/memory.py +406 -0
- aurora_actr-0.6.1/src/aurora_core/store/migrations.py +341 -0
- aurora_actr-0.6.1/src/aurora_core/store/schema.py +128 -0
- aurora_actr-0.6.1/src/aurora_core/store/sqlite.py +928 -0
- aurora_actr-0.6.1/src/aurora_core/types.py +31 -0
- aurora_actr-0.6.1/src/aurora_mcp/multiturn_poc.py +163 -0
- aurora_actr-0.6.1/src/aurora_mcp/server.py +132 -0
- aurora_actr-0.6.1/src/aurora_mcp/tools.py +174 -0
- aurora_actr-0.6.1/src/aurora_planning/__init__.py +33 -0
- aurora_actr-0.6.1/src/aurora_planning/archive_utils.py +231 -0
- aurora_actr-0.6.1/src/aurora_planning/cli/__init__.py +6 -0
- aurora_actr-0.6.1/src/aurora_planning/cli/plan_cmd.py +66 -0
- aurora_actr-0.6.1/src/aurora_planning/cli/validate_cmd.py +65 -0
- aurora_actr-0.6.1/src/aurora_planning/commands/__init__.py +13 -0
- aurora_actr-0.6.1/src/aurora_planning/commands/archive.py +618 -0
- aurora_actr-0.6.1/src/aurora_planning/commands/init.py +139 -0
- aurora_actr-0.6.1/src/aurora_planning/commands/list.py +272 -0
- aurora_actr-0.6.1/src/aurora_planning/commands/update.py +60 -0
- aurora_actr-0.6.1/src/aurora_planning/commands/view.py +252 -0
- aurora_actr-0.6.1/src/aurora_planning/config.py +74 -0
- aurora_actr-0.6.1/src/aurora_planning/configurators/__init__.py +7 -0
- aurora_actr-0.6.1/src/aurora_planning/configurators/base.py +45 -0
- aurora_actr-0.6.1/src/aurora_planning/configurators/registry.py +64 -0
- aurora_actr-0.6.1/src/aurora_planning/converters/json.py +109 -0
- aurora_actr-0.6.1/src/aurora_planning/global_config.py +128 -0
- aurora_actr-0.6.1/src/aurora_planning/id_generator.py +215 -0
- aurora_actr-0.6.1/src/aurora_planning/parsers/__init__.py +49 -0
- aurora_actr-0.6.1/src/aurora_planning/parsers/markdown.py +401 -0
- aurora_actr-0.6.1/src/aurora_planning/parsers/plan_parser.py +383 -0
- aurora_actr-0.6.1/src/aurora_planning/parsers/requirements.py +398 -0
- aurora_actr-0.6.1/src/aurora_planning/planning_config.py +175 -0
- aurora_actr-0.6.1/src/aurora_planning/renderer.py +212 -0
- aurora_actr-0.6.1/src/aurora_planning/schemas/__init__.py +22 -0
- aurora_actr-0.6.1/src/aurora_planning/schemas/base.py +75 -0
- aurora_actr-0.6.1/src/aurora_planning/schemas/capability.py +64 -0
- aurora_actr-0.6.1/src/aurora_planning/schemas/plan.py +138 -0
- aurora_actr-0.6.1/src/aurora_planning/templates/__init__.py +14 -0
- aurora_actr-0.6.1/src/aurora_planning/templates/agents.py +466 -0
- aurora_actr-0.6.1/src/aurora_planning/templates/claude.py +31 -0
- aurora_actr-0.6.1/src/aurora_planning/templates/project.py +39 -0
- aurora_actr-0.6.1/src/aurora_planning/utils/__init__.py +10 -0
- aurora_actr-0.6.1/src/aurora_planning/utils/filesystem.py +51 -0
- aurora_actr-0.6.1/src/aurora_planning/utils/interactive.py +33 -0
- aurora_actr-0.6.1/src/aurora_planning/utils/match.py +69 -0
- aurora_actr-0.6.1/src/aurora_planning/utils/task_progress.py +93 -0
- aurora_actr-0.6.1/src/aurora_planning/validators/__init__.py +0 -0
- aurora_actr-0.6.1/src/aurora_planning/validators/constants.py +73 -0
- aurora_actr-0.6.1/src/aurora_planning/validators/types.py +58 -0
- aurora_actr-0.6.1/src/aurora_planning/validators/validator.py +853 -0
- aurora_actr-0.6.1/src/aurora_reasoning/__init__.py +25 -0
- aurora_actr-0.6.1/src/aurora_reasoning/decompose.py +180 -0
- aurora_actr-0.6.1/src/aurora_reasoning/llm_client.py +718 -0
- aurora_actr-0.6.1/src/aurora_reasoning/prompts/__init__.py +109 -0
- aurora_actr-0.6.1/src/aurora_reasoning/prompts/assess.py +93 -0
- aurora_actr-0.6.1/src/aurora_reasoning/prompts/decompose.py +114 -0
- aurora_actr-0.6.1/src/aurora_reasoning/prompts/examples.py +156 -0
- aurora_actr-0.6.1/src/aurora_reasoning/prompts/retry_feedback.py +61 -0
- aurora_actr-0.6.1/src/aurora_reasoning/prompts/verify_adversarial.py +126 -0
- aurora_actr-0.6.1/src/aurora_reasoning/prompts/verify_agent_output.py +69 -0
- aurora_actr-0.6.1/src/aurora_reasoning/prompts/verify_self.py +106 -0
- aurora_actr-0.6.1/src/aurora_reasoning/prompts/verify_synthesis.py +82 -0
- aurora_actr-0.6.1/src/aurora_reasoning/py.typed +0 -0
- aurora_actr-0.6.1/src/aurora_reasoning/synthesize.py +446 -0
- aurora_actr-0.6.1/src/aurora_reasoning/verify.py +311 -0
- aurora_actr-0.6.1/src/aurora_soar/__init__.py +17 -0
- aurora_actr-0.6.1/src/aurora_soar/agent_registry.py +327 -0
- aurora_actr-0.6.1/src/aurora_soar/discovery_adapter.py +181 -0
- aurora_actr-0.6.1/src/aurora_soar/orchestrator.py +1093 -0
- aurora_actr-0.6.1/src/aurora_soar/phases/__init__.py +30 -0
- aurora_actr-0.6.1/src/aurora_soar/phases/assess.py +1160 -0
- aurora_actr-0.6.1/src/aurora_soar/phases/collect.py +656 -0
- aurora_actr-0.6.1/src/aurora_soar/phases/decompose.py +200 -0
- aurora_actr-0.6.1/src/aurora_soar/phases/record.py +196 -0
- aurora_actr-0.6.1/src/aurora_soar/phases/respond.py +310 -0
- aurora_actr-0.6.1/src/aurora_soar/phases/retrieve.py +193 -0
- aurora_actr-0.6.1/src/aurora_soar/phases/route.py +369 -0
- aurora_actr-0.6.1/src/aurora_soar/phases/synthesize.py +189 -0
- aurora_actr-0.6.1/src/aurora_soar/phases/verify.py +396 -0
- aurora_actr-0.6.1/src/aurora_soar/py.typed +0 -0
- aurora_actr-0.6.1/src/aurora_testing/__init__.py +16 -0
- aurora_actr-0.6.1/src/aurora_testing/benchmarks.py +580 -0
- aurora_actr-0.6.1/src/aurora_testing/fixtures.py +693 -0
- aurora_actr-0.6.1/src/aurora_testing/mocks.py +528 -0
- aurora_actr-0.6.1/src/aurora_testing/py.typed +0 -0
- aurora_actr-0.3.1/PKG-INFO +0 -480
- aurora_actr-0.3.1/README.md +0 -425
- aurora_actr-0.3.1/setup.py +0 -187
- aurora_actr-0.3.1/src/aurora/__init__.py +0 -11
- aurora_actr-0.3.1/src/aurora/cli/__init__.py +0 -42
- aurora_actr-0.3.1/src/aurora/context_code/__init__.py +0 -42
- aurora_actr-0.3.1/src/aurora/core/__init__.py +0 -56
- aurora_actr-0.3.1/src/aurora/mcp/server.py +0 -385
- aurora_actr-0.3.1/src/aurora/mcp/tools.py +0 -1198
- aurora_actr-0.3.1/src/aurora/reasoning/__init__.py +0 -42
- aurora_actr-0.3.1/src/aurora/scripts/__init__.py +0 -1
- aurora_actr-0.3.1/src/aurora/scripts/uninstall.py +0 -105
- aurora_actr-0.3.1/src/aurora/soar/__init__.py +0 -42
- aurora_actr-0.3.1/src/aurora/testing/__init__.py +0 -42
- aurora_actr-0.3.1/src/aurora_actr.egg-info/PKG-INFO +0 -480
- aurora_actr-0.3.1/src/aurora_actr.egg-info/SOURCES.txt +0 -28
- aurora_actr-0.3.1/src/aurora_actr.egg-info/entry_points.txt +0 -4
- aurora_actr-0.3.1/src/aurora_actr.egg-info/requires.txt +0 -31
- aurora_actr-0.3.1/src/aurora_actr.egg-info/top_level.txt +0 -1
- {aurora_actr-0.3.1 → aurora_actr-0.6.1}/setup.cfg +0 -0
- {aurora_actr-0.3.1 → aurora_actr-0.6.1}/src/aurora_actr.egg-info/dependency_links.txt +0 -0
- {aurora_actr-0.3.1/src/aurora/cli → aurora_actr-0.6.1/src/aurora_cli/commands}/py.typed +0 -0
- {aurora_actr-0.3.1/src/aurora/context_code → aurora_actr-0.6.1/src/aurora_cli}/py.typed +0 -0
- {aurora_actr-0.3.1/src/aurora/core → aurora_actr-0.6.1/src/aurora_context_code}/py.typed +0 -0
- {aurora_actr-0.3.1/src/aurora/reasoning → aurora_actr-0.6.1/src/aurora_context_code/semantic}/py.typed +0 -0
- {aurora_actr-0.3.1/src/aurora/soar → aurora_actr-0.6.1/src/aurora_core}/py.typed +0 -0
- {aurora_actr-0.3.1/src/aurora/mcp → aurora_actr-0.6.1/src/aurora_mcp}/__init__.py +0 -0
- {aurora_actr-0.3.1/src/aurora/mcp → aurora_actr-0.6.1/src/aurora_mcp}/config.py +0 -0
- /aurora_actr-0.3.1/src/aurora/testing/py.typed → /aurora_actr-0.6.1/src/aurora_planning/converters/__init__.py +0 -0
|
@@ -0,0 +1,521 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aurora-actr
|
|
3
|
+
Version: 0.6.1
|
|
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: ml
|
|
41
|
+
Requires-Dist: sentence-transformers>=2.2.0; extra == "ml"
|
|
42
|
+
Requires-Dist: torch>=2.0.0; extra == "ml"
|
|
43
|
+
Provides-Extra: dev
|
|
44
|
+
Requires-Dist: pytest>=7.4.0; extra == "dev"
|
|
45
|
+
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
|
|
46
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
47
|
+
Requires-Dist: pytest-benchmark>=4.0.0; extra == "dev"
|
|
48
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
49
|
+
Requires-Dist: mypy>=1.5.0; extra == "dev"
|
|
50
|
+
Requires-Dist: types-jsonschema>=4.0.0; extra == "dev"
|
|
51
|
+
Requires-Dist: bandit>=1.7.5; extra == "dev"
|
|
52
|
+
Requires-Dist: memory-profiler>=0.61.0; extra == "dev"
|
|
53
|
+
|
|
54
|
+
# Aurora
|
|
55
|
+
|
|
56
|
+
**Memory-First Planning & Multi-Agent Orchestration Framework**
|
|
57
|
+
|
|
58
|
+
**Version 0.5.1** | [PyPI](https://pypi.org/project/aurora-actr/) | [Commands](docs/guides/COMMANDS.md) | [Docs](docs/)
|
|
59
|
+
|
|
60
|
+
Aurora is a local-first development automation framework that uses ACT-R memory, SOAR decomposition, and multi-agent orchestration to systematically break down goals and coordinate specialized agents—all without requiring API access.
|
|
61
|
+
|
|
62
|
+
Built on planning principles adapted from [OpenSpec](https://github.com/openspec-framework/openspec).
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
## What Aurora Actually Is
|
|
67
|
+
|
|
68
|
+
Aurora provides three core capabilities:
|
|
69
|
+
|
|
70
|
+
### 🧠 Memory (ACT-R)
|
|
71
|
+
Intelligent code indexing that learns from usage patterns. Your codebase's memory works like human memory—frequently accessed code stays "hot", rarely used code fades.
|
|
72
|
+
|
|
73
|
+
**Technology:**
|
|
74
|
+
- ACT-R activation scores (chunks strengthen/weaken with use)
|
|
75
|
+
- BM25 keyword search (fast, reliable, local)
|
|
76
|
+
- Git-aware indexing (respects .gitignore, tracks changes)
|
|
77
|
+
- Tree-sitter parsing (understands code structure)
|
|
78
|
+
- Optional semantic search (if you want it)
|
|
79
|
+
|
|
80
|
+
**Use case:** `aur mem index .` → `aur mem search "authentication"`
|
|
81
|
+
|
|
82
|
+
### 📋 Planning (SOAR + OpenSpec)
|
|
83
|
+
Systematic goal decomposition with agent matching and gap detection. Breaks high-level goals into actionable subgoals with automatic agent assignment.
|
|
84
|
+
|
|
85
|
+
**Technology:**
|
|
86
|
+
- SOAR 9-phase pipeline (assess → retrieve → decompose → verify → route)
|
|
87
|
+
- Agent capability matching with LLM fallback
|
|
88
|
+
- Gap detection (identifies missing agent capabilities early)
|
|
89
|
+
- Memory-aware (uses indexed code to inform planning)
|
|
90
|
+
- OpenSpec-inspired workflow (goals → PRD → tasks)
|
|
91
|
+
|
|
92
|
+
**Use case:** `aur goals "Add OAuth2 auth"` → `/plan` → `/implement`
|
|
93
|
+
|
|
94
|
+
### 🤖 Orchestration (Multi-Agent)
|
|
95
|
+
CLI-agnostic agent execution with parallel/sequential coordination. Routes tasks to specialized agents without API lock-in.
|
|
96
|
+
|
|
97
|
+
**Technology:**
|
|
98
|
+
- Works with 20+ CLI tools (claude, cursor, aider, etc.)
|
|
99
|
+
- Subprocess-based execution (local-first)
|
|
100
|
+
- Dependency-aware scheduling (parallel + sequential)
|
|
101
|
+
- Agent specialization (right tool for right job)
|
|
102
|
+
|
|
103
|
+
**Use case:** `/implement` executes tasks sequentially, `aur spawn tasks.md` executes in parallel
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
|
|
107
|
+
## What Aurora Is NOT
|
|
108
|
+
|
|
109
|
+
❌ **Not deep reasoning** - Aurora uses structured decomposition, not chain-of-thought reasoning like o1
|
|
110
|
+
❌ **Not API-dependent** - Core functionality works locally with any CLI tool
|
|
111
|
+
❌ **Not magical AI** - It's systematic orchestration, not AGI
|
|
112
|
+
❌ **Not a replacement for thinking** - It's a framework for organizing development work
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
## Quick Start
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
# Install
|
|
120
|
+
pip install aurora-actr
|
|
121
|
+
|
|
122
|
+
# Initialize project
|
|
123
|
+
cd your-project/
|
|
124
|
+
aur init
|
|
125
|
+
|
|
126
|
+
# Index your codebase
|
|
127
|
+
aur mem index .
|
|
128
|
+
|
|
129
|
+
# Search indexed memory
|
|
130
|
+
aur mem search "authentication logic"
|
|
131
|
+
|
|
132
|
+
# Answer complex questions with SOAR reasoning
|
|
133
|
+
aur soar "How does the payment flow work?"
|
|
134
|
+
|
|
135
|
+
# Planning flow: Goal → PRD → Tasks → Implementation
|
|
136
|
+
aur goals "Add Stripe payment processing" \
|
|
137
|
+
--context src/checkout/ \
|
|
138
|
+
--verbose
|
|
139
|
+
|
|
140
|
+
# Output: .aurora/plans/0001-add-stripe-payment/goals.json
|
|
141
|
+
# Contains: 5 subgoals, agent assignments, memory context, gaps
|
|
142
|
+
|
|
143
|
+
# Navigate to plan directory
|
|
144
|
+
cd .aurora/plans/0001-add-stripe-payment/
|
|
145
|
+
|
|
146
|
+
# Generate PRD and tasks (in Claude Code/Cursor/etc.)
|
|
147
|
+
/plan
|
|
148
|
+
|
|
149
|
+
# Execute tasks sequentially with specialized agents
|
|
150
|
+
/implement
|
|
151
|
+
|
|
152
|
+
# Alternative: Execute tasks in parallel (faster but less controlled)
|
|
153
|
+
aur spawn tasks.md --verbose
|
|
154
|
+
|
|
155
|
+
# Health check
|
|
156
|
+
aur doctor
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
---
|
|
160
|
+
|
|
161
|
+
## The Planning Flow
|
|
162
|
+
|
|
163
|
+
```
|
|
164
|
+
┌──────────────┐ ┌──────────────┐ ┌──────────────┐
|
|
165
|
+
│ aur goals │ --> │ /plan │ --> │ /implement │
|
|
166
|
+
│ │ │ │ │ │
|
|
167
|
+
│ SOAR │ │ OpenSpec │ │ Sequential │
|
|
168
|
+
│ decomposes │ │ generates │ │ execution │
|
|
169
|
+
│ goal into │ │ PRD + │ │ with │
|
|
170
|
+
│ subgoals │ │ tasks.md │ │ specialized │
|
|
171
|
+
│ with agents │ │ │ │ agents │
|
|
172
|
+
└──────────────┘ └──────────────┘ └──────────────┘
|
|
173
|
+
│ │ │
|
|
174
|
+
▼ ▼ ▼
|
|
175
|
+
goals.json PRD + tasks Implemented
|
|
176
|
+
(structured) (detailed) (tested)
|
|
177
|
+
|
|
178
|
+
Alternative parallel execution:
|
|
179
|
+
┌──────────────┐
|
|
180
|
+
│ aur spawn │
|
|
181
|
+
│ │
|
|
182
|
+
│ Parallel │
|
|
183
|
+
│ execution │
|
|
184
|
+
│ (faster) │
|
|
185
|
+
└──────────────┘
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
**Primary workflow:**
|
|
189
|
+
- `aur goals` → SOAR decomposition with agent matching
|
|
190
|
+
- `/plan` → Generate PRD and tasks (Claude Code skill)
|
|
191
|
+
- `/implement` → Execute tasks sequentially, one by one
|
|
192
|
+
|
|
193
|
+
**Alternative:**
|
|
194
|
+
- `aur spawn tasks.md` → Execute tasks in parallel (faster, less control)
|
|
195
|
+
|
|
196
|
+
---
|
|
197
|
+
|
|
198
|
+
## Real Example
|
|
199
|
+
|
|
200
|
+
```bash
|
|
201
|
+
# 1. Index codebase
|
|
202
|
+
$ aur mem index .
|
|
203
|
+
✓ Indexed 2,431 chunks from 342 files
|
|
204
|
+
|
|
205
|
+
# 2. Decompose goal with SOAR
|
|
206
|
+
$ aur goals "Add Stripe payment processing" \
|
|
207
|
+
--context src/checkout/ \
|
|
208
|
+
--verbose
|
|
209
|
+
|
|
210
|
+
Using tool: claude (model: sonnet)
|
|
211
|
+
|
|
212
|
+
📋 Decomposing goal into subgoals...
|
|
213
|
+
Goal: Add Stripe payment processing
|
|
214
|
+
|
|
215
|
+
Memory search found 8 relevant files:
|
|
216
|
+
• src/checkout/cart.py (0.92)
|
|
217
|
+
• src/orders/models.py (0.87)
|
|
218
|
+
• src/api/payments.py (0.81)
|
|
219
|
+
|
|
220
|
+
🤖 Agent matching results:
|
|
221
|
+
✓ sg-1: Set up Stripe SDK (@full-stack-dev, 0.89)
|
|
222
|
+
✓ sg-2: Create payment endpoints (@full-stack-dev, 0.91)
|
|
223
|
+
✓ sg-3: Add webhook handlers (@full-stack-dev, 0.85)
|
|
224
|
+
✓ sg-4: Implement payment UI (@ux-expert, 0.78)
|
|
225
|
+
⚠️ sg-5: PCI compliance (@security-engineer, NOT FOUND)
|
|
226
|
+
|
|
227
|
+
Agent gaps detected:
|
|
228
|
+
• Missing @security-engineer for sg-5
|
|
229
|
+
• Suggested capabilities: ["PCI DSS", "security audit"]
|
|
230
|
+
• Fallback: @full-stack-dev (review required)
|
|
231
|
+
|
|
232
|
+
✅ Goals saved to .aurora/plans/0001-add-stripe-payment/goals.json
|
|
233
|
+
|
|
234
|
+
Next steps:
|
|
235
|
+
1. Review goals: cat .aurora/plans/0001-add-stripe-payment/goals.json
|
|
236
|
+
2. Generate PRD: cd .aurora/plans/0001-add-stripe-payment && /plan
|
|
237
|
+
3. Implement: /implement (sequential) or aur spawn tasks.md (parallel)
|
|
238
|
+
|
|
239
|
+
# 3. Navigate and generate PRD
|
|
240
|
+
$ cd .aurora/plans/0001-add-stripe-payment/
|
|
241
|
+
$ /plan # In Claude Code
|
|
242
|
+
|
|
243
|
+
✓ Generated prd.md (1,234 lines)
|
|
244
|
+
✓ Generated tasks.md (24 tasks)
|
|
245
|
+
|
|
246
|
+
# 4. Execute tasks sequentially (recommended)
|
|
247
|
+
$ /implement
|
|
248
|
+
|
|
249
|
+
Task 1/24: Set up Stripe SDK... COMPLETE ✓
|
|
250
|
+
Task 2/24: Create payment models... COMPLETE ✓
|
|
251
|
+
Task 3/24: Add API endpoints... COMPLETE ✓
|
|
252
|
+
...
|
|
253
|
+
Task 24/24: Update documentation... COMPLETE ✓
|
|
254
|
+
|
|
255
|
+
All tasks complete! ✓
|
|
256
|
+
|
|
257
|
+
# Alternative: Execute in parallel (faster)
|
|
258
|
+
$ aur spawn tasks.md --verbose
|
|
259
|
+
|
|
260
|
+
Spawning 5 tasks across 3 agents:
|
|
261
|
+
[@full-stack-dev] Task 1.0: Set up Stripe SDK... COMPLETE (45s)
|
|
262
|
+
[@full-stack-dev] Task 2.0: Create endpoints... COMPLETE (67s)
|
|
263
|
+
[@ux-expert] Task 4.0: Payment UI... COMPLETE (89s)
|
|
264
|
+
...
|
|
265
|
+
|
|
266
|
+
All tasks complete! ✓
|
|
267
|
+
```
|
|
268
|
+
|
|
269
|
+
---
|
|
270
|
+
|
|
271
|
+
## Key Features
|
|
272
|
+
|
|
273
|
+
### Memory System
|
|
274
|
+
- **ACT-R activation** - Code chunks strengthen/weaken based on usage
|
|
275
|
+
- **Hybrid retrieval** - BM25 + activation + optional semantic
|
|
276
|
+
- **Git-aware** - Respects .gitignore, tracks file changes
|
|
277
|
+
- **Multi-type storage** - Code, knowledge base, reasoning patterns
|
|
278
|
+
- **Sub-500ms search** - Fast retrieval on 10K+ chunks
|
|
279
|
+
|
|
280
|
+
### Planning Workflow (OpenSpec-Inspired)
|
|
281
|
+
- **`aur goals`** - SOAR decomposition with agent matching
|
|
282
|
+
- **`/plan` skill** - Generate PRD and tasks from goals.json
|
|
283
|
+
- **`/implement`** - Sequential task execution with specialized agents
|
|
284
|
+
- **Gap detection** - Identifies missing agent capabilities early
|
|
285
|
+
- **Memory-aware** - Uses indexed code to inform planning
|
|
286
|
+
|
|
287
|
+
### Agent Orchestration
|
|
288
|
+
- **CLI-agnostic** - Works with claude, cursor, aider, and 20+ tools
|
|
289
|
+
- **Local execution** - No cloud APIs required for core features
|
|
290
|
+
- **Sequential + parallel** - `/implement` (careful) or `aur spawn` (fast)
|
|
291
|
+
- **Specialized agents** - @full-stack-dev, @ux-expert, @qa-architect, etc.
|
|
292
|
+
|
|
293
|
+
### Configuration
|
|
294
|
+
- **Multi-tier resolution** - CLI flag → env var → project config → global config → default
|
|
295
|
+
- **Tool/model selection** - Per-command configuration
|
|
296
|
+
- **Project-local** - `.aurora/config.json` overrides global settings
|
|
297
|
+
|
|
298
|
+
---
|
|
299
|
+
|
|
300
|
+
## Installation
|
|
301
|
+
|
|
302
|
+
### Standard (Lightweight)
|
|
303
|
+
```bash
|
|
304
|
+
pip install aurora-actr # ~520KB, BM25 + activation only
|
|
305
|
+
```
|
|
306
|
+
|
|
307
|
+
### With Semantic Search (Optional)
|
|
308
|
+
```bash
|
|
309
|
+
pip install aurora-actr[ml] # +1.9GB, adds sentence-transformers
|
|
310
|
+
```
|
|
311
|
+
|
|
312
|
+
### Development
|
|
313
|
+
```bash
|
|
314
|
+
git clone https://github.com/amrhas82/aurora.git
|
|
315
|
+
cd aurora
|
|
316
|
+
./install.sh
|
|
317
|
+
```
|
|
318
|
+
|
|
319
|
+
---
|
|
320
|
+
|
|
321
|
+
## What Gets Indexed
|
|
322
|
+
|
|
323
|
+
Aurora indexes three types of chunks:
|
|
324
|
+
|
|
325
|
+
- **code** - Functions, classes, methods (tree-sitter AST parsing)
|
|
326
|
+
- **kb** - Markdown documentation (README.md, docs/, PRDs)
|
|
327
|
+
- **soar** - Reasoning patterns (auto-saved from `aur soar` queries)
|
|
328
|
+
|
|
329
|
+
**Default exclusions:** `.git/`, `venv/`, `node_modules/`, `tasks/`, `CHANGELOG.md`, `LICENSE*`, `build/`, `dist/`
|
|
330
|
+
|
|
331
|
+
**Custom exclusions:** Create `.auroraignore` (gitignore-style patterns):
|
|
332
|
+
|
|
333
|
+
```
|
|
334
|
+
# .auroraignore example
|
|
335
|
+
tests/**
|
|
336
|
+
docs/archive/**
|
|
337
|
+
*.tmp
|
|
338
|
+
```
|
|
339
|
+
|
|
340
|
+
---
|
|
341
|
+
|
|
342
|
+
## Retrieval Strategy
|
|
343
|
+
|
|
344
|
+
**Hybrid scoring (default, no ML required):**
|
|
345
|
+
- 40% BM25 keyword matching
|
|
346
|
+
- 30% ACT-R activation (usage frequency + recency)
|
|
347
|
+
- 30% Git signals (modification patterns)
|
|
348
|
+
|
|
349
|
+
**With ML option (`[ml]`):**
|
|
350
|
+
- 30% BM25 keyword matching
|
|
351
|
+
- 40% Semantic similarity (sentence-transformers)
|
|
352
|
+
- 30% ACT-R activation
|
|
353
|
+
|
|
354
|
+
**Speed:** Sub-500ms on 10K+ chunks.
|
|
355
|
+
|
|
356
|
+
---
|
|
357
|
+
|
|
358
|
+
## Commands
|
|
359
|
+
|
|
360
|
+
| Command | Purpose | Example |
|
|
361
|
+
|---------|---------|---------|
|
|
362
|
+
| `aur init` | Initialize project | `aur init` |
|
|
363
|
+
| `aur mem index` | Index codebase | `aur mem index .` |
|
|
364
|
+
| `aur mem search` | Search memory | `aur mem search "auth"` |
|
|
365
|
+
| `aur soar` | Answer questions | `aur soar "How does auth work?"` |
|
|
366
|
+
| `aur goals` | Decompose goals | `aur goals "Add feature"` |
|
|
367
|
+
| `aur spawn` | Execute tasks (parallel) | `aur spawn tasks.md` |
|
|
368
|
+
| `aur agents list` | List agents | `aur agents list` |
|
|
369
|
+
| `aur doctor` | Health check | `aur doctor` |
|
|
370
|
+
|
|
371
|
+
**Skills (in Claude Code):**
|
|
372
|
+
- `/plan` - Generate PRD and tasks from goals.json
|
|
373
|
+
- `/implement` - Execute tasks sequentially
|
|
374
|
+
|
|
375
|
+
[Full Command Reference →](docs/guides/COMMANDS.md)
|
|
376
|
+
|
|
377
|
+
---
|
|
378
|
+
|
|
379
|
+
## Architecture
|
|
380
|
+
|
|
381
|
+
### SOAR Pipeline (9 Phases)
|
|
382
|
+
|
|
383
|
+
**Two execution modes:**
|
|
384
|
+
|
|
385
|
+
**1. Query Mode (`aur soar`)** - Answer questions about code
|
|
386
|
+
- Uses all 9 phases to gather info and synthesize answers
|
|
387
|
+
- Executes research agents to collect data
|
|
388
|
+
- Returns natural language answer with citations
|
|
389
|
+
|
|
390
|
+
**2. Goals Mode (`aur goals`)** - Decompose goals for planning
|
|
391
|
+
- Uses phases 1-5, 8-9 (skips execution/synthesis)
|
|
392
|
+
- Matches subgoals to agents, detects gaps
|
|
393
|
+
- Returns structured goals.json for `/plan` skill
|
|
394
|
+
|
|
395
|
+
**9 Phases:**
|
|
396
|
+
1. **Assess** - Determine complexity (keyword + optional LLM)
|
|
397
|
+
2. **Retrieve** - Get relevant context from ACT-R memory
|
|
398
|
+
3. **Decompose** - Break goal into subgoals with agent assignments
|
|
399
|
+
4. **Verify** - Validate decomposition (self or adversarial)
|
|
400
|
+
5. **Route** - Match agents, detect capability gaps
|
|
401
|
+
6. **Collect** - Execute agents (query mode only)
|
|
402
|
+
7. **Synthesize** - Combine outputs (query mode only)
|
|
403
|
+
8. **Record** - Cache successful patterns
|
|
404
|
+
9. **Respond** - Format output (answer or goals.json)
|
|
405
|
+
|
|
406
|
+
### OpenSpec-Inspired Planning
|
|
407
|
+
|
|
408
|
+
Aurora's planning workflow is inspired by and adapted from [OpenSpec](https://github.com/openspec-framework/openspec):
|
|
409
|
+
|
|
410
|
+
**Core workflow:**
|
|
411
|
+
- **goals.json** - Structured goal representation with subgoals
|
|
412
|
+
- **PRD generation** - Detailed product requirements from goals
|
|
413
|
+
- **Task breakdown** - Actionable tasks with agent assignments
|
|
414
|
+
- **Implementation tracking** - Sequential execution with validation
|
|
415
|
+
|
|
416
|
+
**Aurora's extensions:**
|
|
417
|
+
- ACT-R memory integration for context-aware planning
|
|
418
|
+
- SOAR decomposition for systematic goal breakdown
|
|
419
|
+
- Agent capability matching with gap detection
|
|
420
|
+
- CLI-agnostic multi-agent orchestration
|
|
421
|
+
|
|
422
|
+
---
|
|
423
|
+
|
|
424
|
+
## Configuration
|
|
425
|
+
|
|
426
|
+
### Global Config (~/.aurora/config.json)
|
|
427
|
+
```json
|
|
428
|
+
{
|
|
429
|
+
"goals": {
|
|
430
|
+
"default_tool": "claude",
|
|
431
|
+
"default_model": "sonnet"
|
|
432
|
+
},
|
|
433
|
+
"memory": {
|
|
434
|
+
"index_on_save": true
|
|
435
|
+
},
|
|
436
|
+
"logging": {
|
|
437
|
+
"level": "INFO"
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
```
|
|
441
|
+
|
|
442
|
+
### Project Config (.aurora/config.json)
|
|
443
|
+
```json
|
|
444
|
+
{
|
|
445
|
+
"goals": {
|
|
446
|
+
"default_tool": "cursor",
|
|
447
|
+
"default_model": "opus"
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
```
|
|
451
|
+
|
|
452
|
+
### Environment Variables
|
|
453
|
+
```bash
|
|
454
|
+
export ANTHROPIC_API_KEY=sk-ant-...
|
|
455
|
+
export AURORA_GOALS_TOOL=claude
|
|
456
|
+
export AURORA_GOALS_MODEL=sonnet
|
|
457
|
+
export AURORA_LOGGING_LEVEL=DEBUG
|
|
458
|
+
```
|
|
459
|
+
|
|
460
|
+
**Resolution order:** CLI flag → env var → project config → global config → default
|
|
461
|
+
|
|
462
|
+
[Configuration Reference →](docs/reference/CONFIG_REFERENCE.md)
|
|
463
|
+
|
|
464
|
+
---
|
|
465
|
+
|
|
466
|
+
## Documentation
|
|
467
|
+
|
|
468
|
+
- **[Commands Reference](docs/guides/COMMANDS.md)** - Complete CLI command guide
|
|
469
|
+
- **[Tools Guide](docs/guides/TOOLS_GUIDE.md)** - Comprehensive tooling ecosystem
|
|
470
|
+
- **[Configuration Reference](docs/reference/CONFIG_REFERENCE.md)** - All settings and environment variables
|
|
471
|
+
- **[SOAR Architecture](docs/reference/SOAR_ARCHITECTURE.md)** - Technical pipeline details
|
|
472
|
+
- **[Planning Flow](docs/workflows/planning-flow.md)** - End-to-end workflow guide
|
|
473
|
+
- **[Goals Command](docs/commands/aur-goals.md)** - Full goals command reference
|
|
474
|
+
- **[ML Models Guide](docs/reference/ML_MODELS.md)** - Custom embedding model configuration
|
|
475
|
+
- **[Migration Guide](docs/reference/MIGRATION.md)** - Migrating from MCP tools
|
|
476
|
+
|
|
477
|
+
---
|
|
478
|
+
|
|
479
|
+
## Design Principles
|
|
480
|
+
|
|
481
|
+
1. **Memory-First** - ACT-R activation as cognitive foundation
|
|
482
|
+
2. **Local Execution** - No cloud APIs required for core features
|
|
483
|
+
3. **CLI-Agnostic** - Works with any tool, no vendor lock-in
|
|
484
|
+
4. **Systematic Over Magical** - Structured pipelines, not black boxes
|
|
485
|
+
5. **Honest Capabilities** - We decompose and orchestrate, we don't "reason deeply"
|
|
486
|
+
6. **OpenSpec-Inspired** - Proven planning workflow patterns
|
|
487
|
+
|
|
488
|
+
---
|
|
489
|
+
|
|
490
|
+
## Requirements
|
|
491
|
+
|
|
492
|
+
- Python 3.10+
|
|
493
|
+
- Git (for git-aware indexing)
|
|
494
|
+
- One or more CLI tools: claude, cursor, aider, etc.
|
|
495
|
+
- Optional: Anthropic API key (for semantic search with ML package)
|
|
496
|
+
|
|
497
|
+
**Disk space:**
|
|
498
|
+
- Base install: ~520KB
|
|
499
|
+
- With ML features: ~1.9GB (PyTorch + sentence-transformers)
|
|
500
|
+
|
|
501
|
+
---
|
|
502
|
+
|
|
503
|
+
## Credits
|
|
504
|
+
|
|
505
|
+
- **[OpenSpec](https://github.com/openspec-framework/openspec)** - Planning and implementation workflow patterns
|
|
506
|
+
- **ACT-R** - Cognitive architecture for memory modeling
|
|
507
|
+
- **SOAR** - Cognitive architecture for goal decomposition
|
|
508
|
+
- **Tree-sitter** - Code parsing
|
|
509
|
+
- **Anthropic Claude** - LLM capabilities (when using API)
|
|
510
|
+
|
|
511
|
+
---
|
|
512
|
+
|
|
513
|
+
## License
|
|
514
|
+
|
|
515
|
+
MIT License - See [LICENSE](LICENSE) for details.
|
|
516
|
+
|
|
517
|
+
---
|
|
518
|
+
|
|
519
|
+
## Contributing
|
|
520
|
+
|
|
521
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup and guidelines.
|