aurora-actr 0.3.1__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.
- aurora/__init__.py +11 -0
- aurora/cli/__init__.py +42 -0
- aurora/cli/py.typed +0 -0
- aurora/context_code/__init__.py +42 -0
- aurora/context_code/py.typed +0 -0
- aurora/core/__init__.py +56 -0
- aurora/core/py.typed +0 -0
- aurora/mcp/__init__.py +10 -0
- aurora/mcp/config.py +116 -0
- aurora/mcp/server.py +385 -0
- aurora/mcp/tools.py +1198 -0
- aurora/reasoning/__init__.py +42 -0
- aurora/reasoning/py.typed +0 -0
- aurora/scripts/__init__.py +1 -0
- aurora/scripts/uninstall.py +105 -0
- aurora/soar/__init__.py +42 -0
- aurora/soar/py.typed +0 -0
- aurora/testing/__init__.py +42 -0
- aurora/testing/py.typed +0 -0
- aurora_actr-0.3.1.dist-info/METADATA +480 -0
- aurora_actr-0.3.1.dist-info/RECORD +24 -0
- aurora_actr-0.3.1.dist-info/WHEEL +5 -0
- aurora_actr-0.3.1.dist-info/entry_points.txt +4 -0
- aurora_actr-0.3.1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,480 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aurora-actr
|
|
3
|
+
Version: 0.3.1
|
|
4
|
+
Summary: AURORA: Adaptive Unified Reasoning and Orchestration Architecture with MCP Integration
|
|
5
|
+
Home-page: https://github.com/aurora/aurora
|
|
6
|
+
Author: AURORA Team
|
|
7
|
+
Author-email: AURORA Team <aurora@example.com>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
Project-URL: Homepage, https://github.com/yourusername/aurora
|
|
10
|
+
Project-URL: Documentation, https://github.com/yourusername/aurora/blob/main/README.md
|
|
11
|
+
Project-URL: Repository, https://github.com/yourusername/aurora
|
|
12
|
+
Project-URL: Issues, https://github.com/yourusername/aurora/issues
|
|
13
|
+
Project-URL: Changelog, https://github.com/yourusername/aurora/blob/main/CHANGELOG.md
|
|
14
|
+
Keywords: aurora,actr,cognitive-architecture,semantic-search,mcp,reasoning,soar
|
|
15
|
+
Classifier: Development Status :: 3 - Alpha
|
|
16
|
+
Classifier: Intended Audience :: Developers
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
23
|
+
Requires-Python: >=3.10
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
Requires-Dist: aurora-core
|
|
26
|
+
Requires-Dist: aurora-context-code
|
|
27
|
+
Requires-Dist: aurora-soar
|
|
28
|
+
Requires-Dist: aurora-reasoning
|
|
29
|
+
Requires-Dist: aurora-cli
|
|
30
|
+
Requires-Dist: aurora-testing
|
|
31
|
+
Requires-Dist: aurora-planning
|
|
32
|
+
Provides-Extra: ml
|
|
33
|
+
Requires-Dist: sentence-transformers>=2.2.0; extra == "ml"
|
|
34
|
+
Requires-Dist: torch>=2.0.0; extra == "ml"
|
|
35
|
+
Provides-Extra: mcp
|
|
36
|
+
Requires-Dist: fastmcp>=0.1.0; extra == "mcp"
|
|
37
|
+
Provides-Extra: all
|
|
38
|
+
Requires-Dist: sentence-transformers>=2.2.0; extra == "all"
|
|
39
|
+
Requires-Dist: torch>=2.0.0; extra == "all"
|
|
40
|
+
Requires-Dist: fastmcp>=0.1.0; extra == "all"
|
|
41
|
+
Provides-Extra: dev
|
|
42
|
+
Requires-Dist: pytest>=7.4.0; extra == "dev"
|
|
43
|
+
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
|
|
44
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
45
|
+
Requires-Dist: pytest-benchmark>=4.0.0; extra == "dev"
|
|
46
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
47
|
+
Requires-Dist: mypy>=1.5.0; extra == "dev"
|
|
48
|
+
Requires-Dist: types-jsonschema>=4.0.0; extra == "dev"
|
|
49
|
+
Requires-Dist: bandit>=1.7.5; extra == "dev"
|
|
50
|
+
Requires-Dist: memory-profiler>=0.61.0; extra == "dev"
|
|
51
|
+
Requires-Dist: aurora-testing; extra == "dev"
|
|
52
|
+
Dynamic: author
|
|
53
|
+
Dynamic: home-page
|
|
54
|
+
Dynamic: requires-python
|
|
55
|
+
|
|
56
|
+
# AURORA
|
|
57
|
+
|
|
58
|
+
**Adaptive Unified Reasoning and Orchestration Architecture**
|
|
59
|
+
|
|
60
|
+
A cognitive architecture framework that brings intelligent memory, reasoning, and orchestration capabilities to AI systems. Built on cognitive science principles (ACT-R, SOAR), AURORA enables AI agents to maintain persistent context, learn from experience, and coordinate complex tasks efficiently.
|
|
61
|
+
|
|
62
|
+
[](https://www.python.org/downloads/)
|
|
63
|
+
[](https://opensource.org/licenses/MIT)
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Features
|
|
68
|
+
|
|
69
|
+
**MCP Server Integration**
|
|
70
|
+
- Native Claude Code CLI integration via Model Context Protocol
|
|
71
|
+
- 7 powerful tools for seamless codebase search, analysis, and intelligent querying
|
|
72
|
+
- No API key required - MCP tools provide context to Claude Code CLI's built-in LLM
|
|
73
|
+
- Conversation-driven development workflow directly from your terminal
|
|
74
|
+
|
|
75
|
+
**Cognitive Reasoning**
|
|
76
|
+
- ACT-R activation-based memory (frequency, recency, semantic similarity)
|
|
77
|
+
- SOAR-inspired 9-phase orchestration pipeline for complex reasoning
|
|
78
|
+
- Intelligent query assessment with automatic escalation
|
|
79
|
+
|
|
80
|
+
**Semantic Memory & Context**
|
|
81
|
+
- Persistent memory with sentence-transformer embeddings
|
|
82
|
+
- Hybrid retrieval (60% activation + 40% semantic similarity)
|
|
83
|
+
- Multi-tier caching for sub-500ms retrieval on 10K+ chunks
|
|
84
|
+
|
|
85
|
+
**Retrieval Quality Handling**
|
|
86
|
+
- Intelligent detection of no match / weak match / good match scenarios
|
|
87
|
+
- Interactive prompts when retrieval quality is low (give users control)
|
|
88
|
+
- Automatic groundedness scoring (prevents hallucination on weak context)
|
|
89
|
+
- Non-interactive mode for CI/CD and automation (`--non-interactive` flag)
|
|
90
|
+
|
|
91
|
+
**Decision Matrix**:
|
|
92
|
+
| Scenario | Chunks | Groundedness | Action |
|
|
93
|
+
|----------|--------|--------------|--------|
|
|
94
|
+
| **No match** | 0 | N/A | Auto-proceed with general knowledge |
|
|
95
|
+
| **Weak match** | >0 | <0.7 OR <3 high-quality | Prompt user (interactive) / auto-continue (non-interactive) |
|
|
96
|
+
| **Good match** | >0 | ≥0.7 AND ≥3 high-quality | Auto-proceed with retrieved context |
|
|
97
|
+
|
|
98
|
+
*See [CLI_USAGE_GUIDE.md](docs/cli/CLI_USAGE_GUIDE.md#retrieval-quality-handling) for detailed examples*
|
|
99
|
+
|
|
100
|
+
**Agent Orchestration**
|
|
101
|
+
- Discover and coordinate multiple AI agents by capability
|
|
102
|
+
- Parallel and sequential task execution
|
|
103
|
+
- Support for local, remote, and MCP-based agents
|
|
104
|
+
|
|
105
|
+
**Code Understanding**
|
|
106
|
+
- Tree-sitter powered parsing for Python (extensible to other languages)
|
|
107
|
+
- Intelligent chunking with complexity analysis
|
|
108
|
+
- Dependency tracking and docstring extraction
|
|
109
|
+
|
|
110
|
+
**Production Ready**
|
|
111
|
+
- Cross-platform support (Windows, macOS, Linux)
|
|
112
|
+
- Cost tracking and budget enforcement
|
|
113
|
+
- Comprehensive error handling with actionable messages
|
|
114
|
+
- Retry logic with exponential backoff
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
## Installation
|
|
119
|
+
|
|
120
|
+
**From PyPI (Recommended)**
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
# Install with all features
|
|
124
|
+
pip install aurora-actr[all]
|
|
125
|
+
|
|
126
|
+
# Or minimal installation (no ML dependencies)
|
|
127
|
+
pip install aurora-actr
|
|
128
|
+
|
|
129
|
+
# Verify installation
|
|
130
|
+
aur --verify
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
**From Source**
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
git clone https://github.com/aurora-project/aurora.git
|
|
137
|
+
cd aurora
|
|
138
|
+
pip install -e ".[all]"
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
**Note:** Package is published as `aurora-actr` on PyPI, but import as `from aurora.core import ...`
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Quick Start
|
|
146
|
+
|
|
147
|
+
### MCP Server with Claude Code CLI (Primary Workflow)
|
|
148
|
+
|
|
149
|
+
AURORA integrates with Claude Code CLI via the Model Context Protocol, enabling you to search and analyze your codebase directly from your development sessions.
|
|
150
|
+
|
|
151
|
+
#### 1. Install and Initialize AURORA
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
pip install aurora-actr[all]
|
|
155
|
+
cd /path/to/your/project
|
|
156
|
+
aur init
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
The unified `aur init` command runs 3 steps:
|
|
160
|
+
- **Step 1:** Sets up Git (if needed) and creates project structure
|
|
161
|
+
- **Step 2:** Indexes your codebase for semantic search
|
|
162
|
+
- **Step 3:** Configures AI coding tools (Claude Code, Universal, etc.)
|
|
163
|
+
|
|
164
|
+
**Note:** No API keys required for initialization. AURORA uses environment variables for standalone CLI commands.
|
|
165
|
+
|
|
166
|
+
#### 2. Set API Key (For Standalone CLI Only)
|
|
167
|
+
|
|
168
|
+
MCP tools don't require API keys, but standalone commands do:
|
|
169
|
+
|
|
170
|
+
```bash
|
|
171
|
+
# Add to ~/.bashrc or ~/.zshrc
|
|
172
|
+
export ANTHROPIC_API_KEY=sk-ant-...
|
|
173
|
+
source ~/.bashrc
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
#### 3. Use with Claude Code CLI
|
|
177
|
+
|
|
178
|
+
Restart Claude Code CLI and AURORA's tools are available in your sessions:
|
|
179
|
+
|
|
180
|
+
- *"Search my codebase for authentication logic"* → `aurora_search`
|
|
181
|
+
- *"Find all usages of the DatabaseConnection class"* → `aurora_search`
|
|
182
|
+
- *"Show me error handling in payment processing"* → `aurora_context`
|
|
183
|
+
- *"What does the UserService module do?"* → `aurora_context`
|
|
184
|
+
- *"Compare our API patterns with best practices"* → `aurora_query` (auto-escalates to SOAR)
|
|
185
|
+
|
|
186
|
+
Claude Code CLI automatically uses AURORA's tools to search your indexed codebase and provide contextual answers.
|
|
187
|
+
|
|
188
|
+
**Important:** MCP tools do NOT require API keys. They provide context/search results that Claude Code CLI's built-in LLM processes. No additional API costs beyond your Claude subscription.
|
|
189
|
+
|
|
190
|
+
**See:** [MCP Setup Guide](docs/MCP_SETUP.md) for detailed configuration and troubleshooting.
|
|
191
|
+
|
|
192
|
+
---
|
|
193
|
+
|
|
194
|
+
### Standalone CLI Usage
|
|
195
|
+
|
|
196
|
+
Use AURORA's CLI directly for queries, memory management, and autonomous reasoning.
|
|
197
|
+
|
|
198
|
+
**Note:** CLI commands like `aur query` require an `ANTHROPIC_API_KEY` environment variable (they run LLM inference directly). For API-key-free usage, use MCP integration instead.
|
|
199
|
+
|
|
200
|
+
#### Basic Queries
|
|
201
|
+
|
|
202
|
+
```bash
|
|
203
|
+
# Simple query (fast direct LLM) - requires API key
|
|
204
|
+
aur query "What is a Python decorator?"
|
|
205
|
+
|
|
206
|
+
# Complex query (full AURORA pipeline with context) - requires API key
|
|
207
|
+
aur query "How does the authentication system work?"
|
|
208
|
+
|
|
209
|
+
# Force specific mode - requires API key
|
|
210
|
+
aur query "Explain classes" --force-aurora --verbose
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
#### Memory Management
|
|
214
|
+
|
|
215
|
+
```bash
|
|
216
|
+
# Index current directory - no API key required
|
|
217
|
+
aur mem index
|
|
218
|
+
|
|
219
|
+
# Search indexed code - no API key required
|
|
220
|
+
aur mem search "authentication"
|
|
221
|
+
|
|
222
|
+
# View statistics - no API key required
|
|
223
|
+
aur mem stats
|
|
224
|
+
|
|
225
|
+
# Advanced search - no API key required
|
|
226
|
+
aur mem search "database" --limit 10 --show-content --format json
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
#### Headless Mode (Autonomous Reasoning)
|
|
230
|
+
|
|
231
|
+
```bash
|
|
232
|
+
# Run autonomous experiment
|
|
233
|
+
aur headless experiment.md
|
|
234
|
+
|
|
235
|
+
# Custom budget and iterations
|
|
236
|
+
aur headless experiment.md --budget 10.0 --max-iter 20
|
|
237
|
+
|
|
238
|
+
# Dry run (validation only)
|
|
239
|
+
aur headless experiment.md --dry-run
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
**Safety features:** Git branch enforcement, budget limits, iteration caps
|
|
243
|
+
|
|
244
|
+
#### Verification and Diagnostics
|
|
245
|
+
|
|
246
|
+
```bash
|
|
247
|
+
# Check installation health
|
|
248
|
+
aur --verify
|
|
249
|
+
|
|
250
|
+
# Check MCP server status
|
|
251
|
+
aurora-mcp status
|
|
252
|
+
|
|
253
|
+
# View help
|
|
254
|
+
aur --help
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
**CLI Features:**
|
|
258
|
+
- Automatic escalation (direct LLM vs AURORA pipeline)
|
|
259
|
+
- Hybrid search (activation + semantic)
|
|
260
|
+
- Configuration management (env vars, config files)
|
|
261
|
+
- Rich terminal output with progress bars
|
|
262
|
+
- Installation verification and diagnostics
|
|
263
|
+
|
|
264
|
+
---
|
|
265
|
+
|
|
266
|
+
## Usage Examples
|
|
267
|
+
|
|
268
|
+
### Example 1: Codebase Q&A with Claude Desktop
|
|
269
|
+
|
|
270
|
+
**Scenario:** You're working on a large codebase and need to quickly understand authentication logic.
|
|
271
|
+
|
|
272
|
+
1. Initialize AURORA in your project: `aur init`
|
|
273
|
+
2. Open Claude Desktop
|
|
274
|
+
3. Ask: *"Find all authentication-related functions and explain the flow"*
|
|
275
|
+
4. Claude uses AURORA to search, retrieve relevant code, and explain the implementation
|
|
276
|
+
|
|
277
|
+
**Benefits:** No manual file hunting, contextual understanding, instant answers
|
|
278
|
+
|
|
279
|
+
### Example 2: Autonomous Code Analysis
|
|
280
|
+
|
|
281
|
+
**Scenario:** You want to analyze code quality across your project autonomously.
|
|
282
|
+
|
|
283
|
+
1. Create experiment file: `analyze_code_quality.md`
|
|
284
|
+
2. Run: `aur headless analyze_code_quality.md`
|
|
285
|
+
3. AURORA executes reasoning loop, analyzes code, generates report
|
|
286
|
+
4. Safety controls prevent unwanted changes
|
|
287
|
+
|
|
288
|
+
**Benefits:** Hands-free analysis, systematic coverage, safety guarantees
|
|
289
|
+
|
|
290
|
+
### Example 3: Multi-Agent Orchestration
|
|
291
|
+
|
|
292
|
+
**Scenario:** Complex task requiring multiple AI capabilities (code generation, review, testing).
|
|
293
|
+
|
|
294
|
+
```python
|
|
295
|
+
from aurora_soar import SOAROrchestrator, AgentRegistry
|
|
296
|
+
from aurora_reasoning import AnthropicClient
|
|
297
|
+
|
|
298
|
+
# Initialize orchestrator with agent registry
|
|
299
|
+
orchestrator = SOAROrchestrator(
|
|
300
|
+
store=store,
|
|
301
|
+
agent_registry=AgentRegistry(),
|
|
302
|
+
reasoning_llm=AnthropicClient()
|
|
303
|
+
)
|
|
304
|
+
|
|
305
|
+
# Execute complex query - AURORA decomposes, routes to agents, synthesizes
|
|
306
|
+
result = orchestrator.execute(
|
|
307
|
+
query="Implement JWT authentication with tests and security review"
|
|
308
|
+
)
|
|
309
|
+
|
|
310
|
+
print(f"Agents used: {result['metadata']['agents_used']}")
|
|
311
|
+
print(f"Confidence: {result['confidence']:.2f}")
|
|
312
|
+
```
|
|
313
|
+
|
|
314
|
+
**Benefits:** Coordinated multi-agent execution, automatic routing, cost tracking
|
|
315
|
+
|
|
316
|
+
---
|
|
317
|
+
|
|
318
|
+
## Python API
|
|
319
|
+
|
|
320
|
+
Quick examples for programmatic use:
|
|
321
|
+
|
|
322
|
+
**Parse and Store Code**
|
|
323
|
+
|
|
324
|
+
```python
|
|
325
|
+
from aurora_core.store import SQLiteStore
|
|
326
|
+
from aurora_context_code import PythonParser
|
|
327
|
+
|
|
328
|
+
store = SQLiteStore("aurora.db")
|
|
329
|
+
parser = PythonParser()
|
|
330
|
+
chunks = parser.parse_file("example.py")
|
|
331
|
+
|
|
332
|
+
for chunk in chunks:
|
|
333
|
+
store.save_chunk(chunk)
|
|
334
|
+
```
|
|
335
|
+
|
|
336
|
+
**Context Retrieval with Scoring**
|
|
337
|
+
|
|
338
|
+
```python
|
|
339
|
+
from aurora_core.context import CodeContextProvider
|
|
340
|
+
|
|
341
|
+
provider = CodeContextProvider(store, parser_registry)
|
|
342
|
+
results = provider.retrieve("authentication logic", max_results=5)
|
|
343
|
+
|
|
344
|
+
for chunk in results:
|
|
345
|
+
print(f"{chunk.metadata['name']} (score: {chunk.metadata['_score']:.2f})")
|
|
346
|
+
```
|
|
347
|
+
|
|
348
|
+
**SOAR Orchestrator**
|
|
349
|
+
|
|
350
|
+
```python
|
|
351
|
+
from aurora_soar import SOAROrchestrator
|
|
352
|
+
|
|
353
|
+
orchestrator = SOAROrchestrator(store, agent_registry, reasoning_llm)
|
|
354
|
+
result = orchestrator.execute(query="Analyze security vulnerabilities")
|
|
355
|
+
```
|
|
356
|
+
|
|
357
|
+
**Full API documentation:** [API Reference](docs/architecture/API_CONTRACTS_v1.0.md)
|
|
358
|
+
|
|
359
|
+
---
|
|
360
|
+
|
|
361
|
+
## Architecture
|
|
362
|
+
|
|
363
|
+
AURORA is organized as a Python monorepo with modular packages:
|
|
364
|
+
|
|
365
|
+
**Core Packages:**
|
|
366
|
+
|
|
367
|
+
- **aurora-core** - Storage, chunks, configuration, context providers, cost tracking
|
|
368
|
+
- **aurora-context-code** - Code parsing (Python via tree-sitter, extensible)
|
|
369
|
+
- **aurora-soar** - Agent registry, 9-phase orchestration pipeline
|
|
370
|
+
- **aurora-reasoning** - LLM integration (Anthropic, OpenAI, Ollama), reasoning logic
|
|
371
|
+
- **aurora-testing** - Testing utilities, fixtures, mocks, benchmarks
|
|
372
|
+
|
|
373
|
+
**Key Architecture Patterns:**
|
|
374
|
+
|
|
375
|
+
- **9-Phase SOAR Pipeline:** Assess → Retrieve → Decompose → Verify → Route → Collect → Synthesize → Record → Respond
|
|
376
|
+
- **ACT-R Memory Activation:** Frequency, recency, semantic similarity, context boost
|
|
377
|
+
- **Hybrid Retrieval:** 60% activation scoring + 40% semantic similarity
|
|
378
|
+
- **Multi-Tier Caching:** Hot cache (LRU) + persistent cache + activation scores (10min TTL)
|
|
379
|
+
- **Cost Optimization:** Keyword-based assessment bypasses LLM for 60-70% of simple queries
|
|
380
|
+
|
|
381
|
+
**Performance:**
|
|
382
|
+
|
|
383
|
+
- Simple query latency: <2s (achieved: 0.002s)
|
|
384
|
+
- Complex query latency: <10s
|
|
385
|
+
- Memory usage: <100MB for 10K chunks (achieved: 39MB)
|
|
386
|
+
- Retrieval: <500ms for 10K chunks
|
|
387
|
+
|
|
388
|
+
**Detailed architecture:** [SOAR Architecture](docs/architecture/SOAR_ARCHITECTURE.md), [Verification Checkpoints](docs/reports/quality/VERIFICATION_CHECKPOINTS.md)
|
|
389
|
+
|
|
390
|
+
---
|
|
391
|
+
|
|
392
|
+
## Documentation
|
|
393
|
+
|
|
394
|
+
**Getting Started**
|
|
395
|
+
- [MCP Setup Guide](docs/MCP_SETUP.md) - Claude Desktop integration
|
|
396
|
+
- [Quick Start](docs/cli/QUICK_START.md) - Get started in 5 minutes
|
|
397
|
+
- [CLI Usage Guide](docs/cli/CLI_USAGE_GUIDE.md) - Comprehensive command reference
|
|
398
|
+
- [Troubleshooting Guide](docs/TROUBLESHOOTING.md) - Common issues and solutions
|
|
399
|
+
|
|
400
|
+
**Architecture & Design**
|
|
401
|
+
- [SOAR Architecture](docs/architecture/SOAR_ARCHITECTURE.md) - 9-phase pipeline details
|
|
402
|
+
- [Verification Checkpoints](docs/reports/quality/VERIFICATION_CHECKPOINTS.md) - Scoring and thresholds
|
|
403
|
+
- [Agent Integration Guide](docs/architecture/AGENT_INTEGRATION.md) - Agent formats and execution
|
|
404
|
+
- [Cost Tracking Guide](docs/guides/COST_TRACKING_GUIDE.md) - Budget management
|
|
405
|
+
- [Prompt Engineering Guide](docs/development/PROMPT_ENGINEERING_GUIDE.md) - Template design
|
|
406
|
+
|
|
407
|
+
**Development**
|
|
408
|
+
- [Pre-Push Validation](docs/development/PRE_PUSH_VALIDATION.md) - Local CI/CD checks before pushing
|
|
409
|
+
- [API Contracts](docs/architecture/API_CONTRACTS_v1.0.md) - API reference
|
|
410
|
+
- [Migration Guide](docs/development/PHASE4_MIGRATION_GUIDE.md) - Upgrade guide
|
|
411
|
+
- [Code Review Report](docs/reports/quality/CODE_REVIEW_REPORT_v1.0.0-phase3.md) - Quality analysis
|
|
412
|
+
- [Security Audit](docs/reports/security/SECURITY_AUDIT_REPORT_v1.0.0-phase3.md) - Security review
|
|
413
|
+
|
|
414
|
+
**Project History**
|
|
415
|
+
- [Release Notes](RELEASE_NOTES_v1.0.0-phase3.md) - Version history
|
|
416
|
+
- [Phase Archives](docs/phases/phase3/PHASE3_ARCHIVE_MANIFEST.md) - Development phases
|
|
417
|
+
|
|
418
|
+
---
|
|
419
|
+
|
|
420
|
+
## Development
|
|
421
|
+
|
|
422
|
+
**Setup Development Environment**
|
|
423
|
+
|
|
424
|
+
```bash
|
|
425
|
+
# Clone and install with dev dependencies
|
|
426
|
+
git clone https://github.com/aurora-project/aurora.git
|
|
427
|
+
cd aurora
|
|
428
|
+
make install-dev
|
|
429
|
+
|
|
430
|
+
# Run quality checks
|
|
431
|
+
make quality-check
|
|
432
|
+
```
|
|
433
|
+
|
|
434
|
+
**Common Commands**
|
|
435
|
+
|
|
436
|
+
```bash
|
|
437
|
+
make test # Run all tests (1,766+ tests, 97% pass rate)
|
|
438
|
+
make test-unit # Unit tests only
|
|
439
|
+
make lint # Ruff linter
|
|
440
|
+
make format # Format code
|
|
441
|
+
make type-check # MyPy type checker (100% type safety)
|
|
442
|
+
make benchmark # Performance benchmarks
|
|
443
|
+
make coverage # HTML coverage report (81%+ coverage)
|
|
444
|
+
```
|
|
445
|
+
|
|
446
|
+
**Code Quality Standards**
|
|
447
|
+
|
|
448
|
+
- **Linting:** Ruff with comprehensive rules
|
|
449
|
+
- **Type Checking:** MyPy strict mode (zero type errors)
|
|
450
|
+
- **Test Coverage:** 81%+ coverage maintained
|
|
451
|
+
- **Security:** Bandit security scanning
|
|
452
|
+
- **Performance:** Benchmarks for critical operations
|
|
453
|
+
|
|
454
|
+
**Contributing**
|
|
455
|
+
|
|
456
|
+
Contributions welcome! Please ensure:
|
|
457
|
+
|
|
458
|
+
1. All tests pass (`make test`)
|
|
459
|
+
2. Code is formatted (`make format`)
|
|
460
|
+
3. Type checking passes (`make type-check`)
|
|
461
|
+
4. New features include tests
|
|
462
|
+
5. Documentation updated
|
|
463
|
+
|
|
464
|
+
---
|
|
465
|
+
|
|
466
|
+
## License
|
|
467
|
+
|
|
468
|
+
MIT License - see [LICENSE](LICENSE) for details.
|
|
469
|
+
|
|
470
|
+
---
|
|
471
|
+
|
|
472
|
+
## Contact
|
|
473
|
+
|
|
474
|
+
For questions, issues, or discussions:
|
|
475
|
+
- **GitHub Issues:** [aurora-project/aurora/issues](https://github.com/aurora-project/aurora/issues)
|
|
476
|
+
- **Discussions:** [aurora-project/aurora/discussions](https://github.com/aurora-project/aurora/discussions)
|
|
477
|
+
|
|
478
|
+
---
|
|
479
|
+
|
|
480
|
+
**AURORA** - Intelligent AI systems with persistent memory and cognitive reasoning
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
aurora/__init__.py,sha256=iIXCyE3IT7Yb6Jtw4x-_LCN2HHE865LBsu4_0wRrdCY,362
|
|
2
|
+
aurora/cli/__init__.py,sha256=L8lJ1sJsPVTuWGN4LmNVeVlzt0VVcVcVsXKASVaqHXA,1345
|
|
3
|
+
aurora/cli/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
aurora/context_code/__init__.py,sha256=Avco79Ql15oDXM6qVpuL--4aPwOzXJaiOWwLswmgjfk,1436
|
|
5
|
+
aurora/context_code/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
aurora/core/__init__.py,sha256=V3GSOUKVG-Ndvh7L5OriwhUFSGEsUIYw2ZHZO9PsXsA,1572
|
|
7
|
+
aurora/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
aurora/mcp/__init__.py,sha256=mi0CFxdxMF0H8F9f2JAoEWKhnSTwbewz3z1xVkDzNlU,246
|
|
9
|
+
aurora/mcp/config.py,sha256=xp7AJYgEuIWeNDFTdlBrGIh9XwVQAN7e0QsnF4aJtnk,3133
|
|
10
|
+
aurora/mcp/server.py,sha256=OZcjjIyEpbKXG-h2pC4VhX43tohkdlsH3FLY442Gh7E,14292
|
|
11
|
+
aurora/mcp/tools.py,sha256=EIV_UaPhMEkMibQkwlEb_5n_hMoDPqNq-wnUv7bKMdA,45004
|
|
12
|
+
aurora/reasoning/__init__.py,sha256=zkWd0CPUzLu4i-BEqe1rPLA7xtpLpGI3c_g88WOkGoU,1412
|
|
13
|
+
aurora/reasoning/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
aurora/scripts/__init__.py,sha256=esVwOJ8SzCztBsvHIyzyHCUXNxQQRhd8F-8Yefg1P8s,30
|
|
15
|
+
aurora/scripts/uninstall.py,sha256=uHOQePZ0zoGDJIPSREusMzcP7vBGIDix1MPI8FWXee8,3026
|
|
16
|
+
aurora/soar/__init__.py,sha256=wbIjqeVDbZ-LCvONPoQRz_LXFpaPUacpFnQkHZlDbxo,1359
|
|
17
|
+
aurora/soar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
aurora/testing/__init__.py,sha256=_V-zLhCIVzDaMPGDu5kxKoyV1wCqLc14Ty944GFL70g,1351
|
|
19
|
+
aurora/testing/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
+
aurora_actr-0.3.1.dist-info/METADATA,sha256=upDwtNtnYP96771A3NuE8fLQ2cVsQgGxmtk4wBWAUFo,16169
|
|
21
|
+
aurora_actr-0.3.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
22
|
+
aurora_actr-0.3.1.dist-info/entry_points.txt,sha256=6DE9XYGxdB0F_bPtpOaihmzzbW1adfEzdaiMWyUMUoE,129
|
|
23
|
+
aurora_actr-0.3.1.dist-info/top_level.txt,sha256=_VPZyby2U0daT4zxBQyOTduleUKBlGa_eQkjEGBjNyE,7
|
|
24
|
+
aurora_actr-0.3.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
aurora
|