agentic-forge-core 1.1.0__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.
- agentic_forge_core-1.1.0/.gitignore +75 -0
- agentic_forge_core-1.1.0/CHANGELOG.md +264 -0
- agentic_forge_core-1.1.0/PKG-INFO +798 -0
- agentic_forge_core-1.1.0/README.md +742 -0
- agentic_forge_core-1.1.0/pyproject.toml +109 -0
- agentic_forge_core-1.1.0/src/agentforge/__init__.py +4 -0
- agentic_forge_core-1.1.0/src/agentforge/adapters/README.md +35 -0
- agentic_forge_core-1.1.0/src/agentforge/adapters/__init__.py +5 -0
- agentic_forge_core-1.1.0/src/agentforge/adapters/aava.py +308 -0
- agentic_forge_core-1.1.0/src/agentforge/adapters/aava_discovery.py +136 -0
- agentic_forge_core-1.1.0/src/agentforge/adapters/anthropic_sdk.py +132 -0
- agentic_forge_core-1.1.0/src/agentforge/adapters/autogen.py +95 -0
- agentic_forge_core-1.1.0/src/agentforge/adapters/azure_openai.py +167 -0
- agentic_forge_core-1.1.0/src/agentforge/adapters/base.py +114 -0
- agentic_forge_core-1.1.0/src/agentforge/adapters/crewai.py +94 -0
- agentic_forge_core-1.1.0/src/agentforge/adapters/custom.py +200 -0
- agentic_forge_core-1.1.0/src/agentforge/adapters/langchain.py +124 -0
- agentic_forge_core-1.1.0/src/agentforge/adapters/langgraph.py +103 -0
- agentic_forge_core-1.1.0/src/agentforge/adapters/openai_sdk.py +130 -0
- agentic_forge_core-1.1.0/src/agentforge/adapters/retry.py +66 -0
- agentic_forge_core-1.1.0/src/agentforge/adapters/system.py +50 -0
- agentic_forge_core-1.1.0/src/agentforge/cli.py +671 -0
- agentic_forge_core-1.1.0/src/agentforge/core/__init__.py +5 -0
- agentic_forge_core-1.1.0/src/agentforge/core/agent_runner.py +247 -0
- agentic_forge_core-1.1.0/src/agentforge/core/bootstrap.py +152 -0
- agentic_forge_core-1.1.0/src/agentforge/core/config.py +108 -0
- agentic_forge_core-1.1.0/src/agentforge/core/context/__init__.py +0 -0
- agentic_forge_core-1.1.0/src/agentforge/core/context/assembler.py +122 -0
- agentic_forge_core-1.1.0/src/agentforge/core/context/compressor.py +60 -0
- agentic_forge_core-1.1.0/src/agentforge/core/context/guard.py +156 -0
- agentic_forge_core-1.1.0/src/agentforge/core/cost.py +117 -0
- agentic_forge_core-1.1.0/src/agentforge/core/diagnostics.py +66 -0
- agentic_forge_core-1.1.0/src/agentforge/core/exceptions.py +13 -0
- agentic_forge_core-1.1.0/src/agentforge/core/health.py +179 -0
- agentic_forge_core-1.1.0/src/agentforge/core/logging_config.py +103 -0
- agentic_forge_core-1.1.0/src/agentforge/core/spec/__init__.py +5 -0
- agentic_forge_core-1.1.0/src/agentforge/core/spec/changelog.py +306 -0
- agentic_forge_core-1.1.0/src/agentforge/core/spec/diff.py +101 -0
- agentic_forge_core-1.1.0/src/agentforge/core/spec/file_lock.py +64 -0
- agentic_forge_core-1.1.0/src/agentforge/core/spec/parser.py +183 -0
- agentic_forge_core-1.1.0/src/agentforge/core/spec/validator.py +147 -0
- agentic_forge_core-1.1.0/src/agentforge/db/__init__.py +0 -0
- agentic_forge_core-1.1.0/src/agentforge/db/connection.py +121 -0
- agentic_forge_core-1.1.0/src/agentforge/db/models.py +175 -0
- agentic_forge_core-1.1.0/src/agentforge/db/repositories.py +180 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/__init__.py +0 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/auto_eval/__init__.py +0 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/auto_eval/candidate_generator.py +305 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/auto_eval/eval_expander.py +487 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/auto_eval/failure_miner.py +382 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/auto_eval/pending_store.py +71 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/auto_eval/quality_scorer.py +291 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/auto_eval/schemas.py +273 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/grader.py +223 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/grader_audit.py +130 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/held_out.py +100 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/multi_objective/__init__.py +0 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/multi_objective/multi_scorer.py +273 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/multi_objective/objectives.py +144 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/multi_objective/pareto.py +245 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/multi_objective/schemas.py +184 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/runner.py +432 -0
- agentic_forge_core-1.1.0/src/agentforge/eval/schemas.py +240 -0
- agentic_forge_core-1.1.0/src/agentforge/llm/__init__.py +50 -0
- agentic_forge_core-1.1.0/src/agentforge/llm/aava_client.py +174 -0
- agentic_forge_core-1.1.0/src/agentforge/llm/prompts.py +50 -0
- agentic_forge_core-1.1.0/src/agentforge/loop/__init__.py +3 -0
- agentic_forge_core-1.1.0/src/agentforge/loop/budget.py +73 -0
- agentic_forge_core-1.1.0/src/agentforge/loop/git_manager.py +426 -0
- agentic_forge_core-1.1.0/src/agentforge/loop/proposer.py +232 -0
- agentic_forge_core-1.1.0/src/agentforge/loop/runner.py +555 -0
- agentic_forge_core-1.1.0/src/agentforge/loop/session.py +191 -0
- agentic_forge_core-1.1.0/src/agentforge/mcp/server.py +78 -0
- agentic_forge_core-1.1.0/src/agentforge/mcp.py +74 -0
- agentic_forge_core-1.1.0/src/agentforge/memory/__init__.py +1 -0
- agentic_forge_core-1.1.0/src/agentforge/memory/circuit_breaker.py +137 -0
- agentic_forge_core-1.1.0/src/agentforge/memory/consolidator.py +62 -0
- agentic_forge_core-1.1.0/src/agentforge/memory/embedder.py +225 -0
- agentic_forge_core-1.1.0/src/agentforge/memory/episodic.py +90 -0
- agentic_forge_core-1.1.0/src/agentforge/memory/json_store.py +109 -0
- agentic_forge_core-1.1.0/src/agentforge/memory/semantic.py +184 -0
- agentic_forge_core-1.1.0/src/agentforge/memory/store.py +222 -0
- agentic_forge_core-1.1.0/src/agentforge/memory/tools.py +58 -0
- agentic_forge_core-1.1.0/src/agentforge/models/__init__.py +0 -0
- agentic_forge_core-1.1.0/src/agentforge/models/request_schemas.py +110 -0
- agentic_forge_core-1.1.0/src/agentforge/models/response_schemas.py +106 -0
- agentic_forge_core-1.1.0/src/agentforge/models/state_schemas.py +241 -0
- agentic_forge_core-1.1.0/src/agentforge/orchestrator/__init__.py +0 -0
- agentic_forge_core-1.1.0/src/agentforge/orchestrator/dependency.py +199 -0
- agentic_forge_core-1.1.0/src/agentforge/orchestrator/fleet_status.py +87 -0
- agentic_forge_core-1.1.0/src/agentforge/orchestrator/learning.py +230 -0
- agentic_forge_core-1.1.0/src/agentforge/orchestrator/meta.py +356 -0
- agentic_forge_core-1.1.0/src/agentforge/orchestrator/scheduler.py +131 -0
- agentic_forge_core-1.1.0/src/agentforge/scripts/__init__.py +0 -0
- agentic_forge_core-1.1.0/src/agentforge/scripts/aava_pull.py +174 -0
- agentic_forge_core-1.1.0/src/agentforge/scripts/aava_push.py +77 -0
- agentic_forge_core-1.1.0/src/agentforge/scripts/init_agent.py +56 -0
- agentic_forge_core-1.1.0/src/agentforge/scripts/init_db.py +16 -0
- agentic_forge_core-1.1.0/src/agentforge/scripts/run_sql_wizard_eval.py +38 -0
- agentic_forge_core-1.1.0/src/agentforge/scripts/sync_sessions_to_db.py +84 -0
- agentic_forge_core-1.1.0/src/agentforge/scripts/test_aava_adapter.py +70 -0
- agentic_forge_core-1.1.0/src/agentforge/scripts/test_azure_adapter.py +56 -0
- agentic_forge_core-1.1.0/src/agentforge/scripts/test_azure_eval.py +45 -0
- agentic_forge_core-1.1.0/src/agentforge/scripts/test_azure_final_report.py +79 -0
- agentic_forge_core-1.1.0/src/agentforge/scripts/test_azure_full_loop.py +130 -0
- agentic_forge_core-1.1.0/src/agentforge/scripts/test_azure_git.py +74 -0
- agentic_forge_core-1.1.0/src/agentforge/scripts/test_azure_verify.py +124 -0
- agentic_forge_core-1.1.0/src/agentforge/services/__init__.py +0 -0
- agentic_forge_core-1.1.0/src/agentforge/services/brief_generation_service.py +87 -0
- agentic_forge_core-1.1.0/src/agentforge/services/design_system_generation_service.py +86 -0
- agentic_forge_core-1.1.0/src/agentforge/services/generation/__init__.py +0 -0
- agentic_forge_core-1.1.0/src/agentforge/services/generation/avaplus_generation.py +351 -0
- agentic_forge_core-1.1.0/src/agentforge/services/generation/base_generation.py +11 -0
- agentic_forge_core-1.1.0/src/agentforge/services/orchestration/__init__.py +0 -0
- agentic_forge_core-1.1.0/src/agentforge/services/orchestration/context_builder.py +95 -0
- agentic_forge_core-1.1.0/src/agentforge/services/orchestration/executor.py +102 -0
- agentic_forge_core-1.1.0/src/agentforge/services/orchestration/orchestrator.py +218 -0
- agentic_forge_core-1.1.0/src/agentforge/services/orchestration/planner.py +119 -0
- agentic_forge_core-1.1.0/src/agentforge/services/orchestration/reviewer.py +16 -0
- agentic_forge_core-1.1.0/src/agentforge/services/prd_generation_service.py +131 -0
- agentic_forge_core-1.1.0/src/agentforge/services/project_query_service.py +73 -0
- agentic_forge_core-1.1.0/src/agentforge/utils/__init__.py +0 -0
- agentic_forge_core-1.1.0/src/agentforge/utils/api_client.py +62 -0
- agentic_forge_core-1.1.0/src/agentforge/utils/logger.py +17 -0
- agentic_forge_core-1.1.0/src/agentforge/utils/retry_config.py +16 -0
- agentic_forge_core-1.1.0/src/agentforge/utils/retry_utils.py +38 -0
- agentic_forge_core-1.1.0/src/agentforge/utils/text_parser.py +94 -0
- agentic_forge_core-1.1.0/src/agentforge/utils/theme.py +129 -0
- agentic_forge_core-1.1.0/src/agentforge/utils/token_counter.py +36 -0
- agentic_forge_core-1.1.0/src/agentforge.egg-info/PKG-INFO +794 -0
- agentic_forge_core-1.1.0/src/agentforge.egg-info/SOURCES.txt +126 -0
- agentic_forge_core-1.1.0/src/agentforge.egg-info/dependency_links.txt +1 -0
- agentic_forge_core-1.1.0/src/agentforge.egg-info/entry_points.txt +2 -0
- agentic_forge_core-1.1.0/src/agentforge.egg-info/requires.txt +53 -0
- agentic_forge_core-1.1.0/src/agentforge.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# Python-generated files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[oc]
|
|
4
|
+
build/
|
|
5
|
+
dist/
|
|
6
|
+
wheels/
|
|
7
|
+
*.egg-info
|
|
8
|
+
|
|
9
|
+
# Virtual environments
|
|
10
|
+
.venv
|
|
11
|
+
worktrees/
|
|
12
|
+
results/
|
|
13
|
+
queue/
|
|
14
|
+
|
|
15
|
+
# Agent prompt files (generated per-session by launchers)
|
|
16
|
+
CLAUDE.md
|
|
17
|
+
AGENTS.md
|
|
18
|
+
MINDFORGE.md
|
|
19
|
+
|
|
20
|
+
# Experimental code/artifacts
|
|
21
|
+
dev/
|
|
22
|
+
|
|
23
|
+
# Results file
|
|
24
|
+
results.tsv
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
autoresearch-diagrams/
|
|
28
|
+
autoresearch
|
|
29
|
+
|
|
30
|
+
env/
|
|
31
|
+
|
|
32
|
+
env/
|
|
33
|
+
|
|
34
|
+
env.example
|
|
35
|
+
.env
|
|
36
|
+
.env*
|
|
37
|
+
*.local
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
api-curl.md
|
|
41
|
+
api-curl.local
|
|
42
|
+
|
|
43
|
+
planner-agent-curl.md
|
|
44
|
+
|
|
45
|
+
pure-agent-api-curl.md
|
|
46
|
+
.gstack/
|
|
47
|
+
|
|
48
|
+
# AgentForge specific
|
|
49
|
+
.cache/
|
|
50
|
+
agentforge.db*
|
|
51
|
+
.planning/
|
|
52
|
+
!docs/exec-plans/
|
|
53
|
+
!docs/product-specs/
|
|
54
|
+
!docs/design-docs/
|
|
55
|
+
!docs/generated/
|
|
56
|
+
!agents/
|
|
57
|
+
!loop/
|
|
58
|
+
!eval/
|
|
59
|
+
!src/
|
|
60
|
+
|
|
61
|
+
.claude/
|
|
62
|
+
|
|
63
|
+
.mindforge/
|
|
64
|
+
.agents/
|
|
65
|
+
|
|
66
|
+
agents/
|
|
67
|
+
|
|
68
|
+
bin/
|
|
69
|
+
|
|
70
|
+
MINDFORGE.md
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
.npmrc
|
|
74
|
+
|
|
75
|
+
.npm-cache/
|
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
### d3e1e48 - 2026-03-16
|
|
2
|
+
**feat: Implement new dashboard pages and a suite of UI components, including system health, agent cards, and various Aceternity effects.**
|
|
3
|
+
- Author: sairam0424
|
|
4
|
+
- Date: Mon Mar 16 22:17:25 2026 +0530
|
|
5
|
+
|
|
6
|
+
### 6541c52 - 2026-03-16
|
|
7
|
+
**feat: Implement session synchronization to database and update dashboard components to display live loop data.****
|
|
8
|
+
- Author: sairam0424
|
|
9
|
+
- Date: Mon Mar 16 16:14:40 2026 +0530
|
|
10
|
+
|
|
11
|
+
### 5487ed8 - 2026-03-16
|
|
12
|
+
**[AgentForge] snapshot before session 20260316 | score=86.4%**
|
|
13
|
+
- Author: sairam0424
|
|
14
|
+
- Date: Mon Mar 16 15:52:07 2026 +0530
|
|
15
|
+
|
|
16
|
+
### 5df8cd5 - 2026-03-16
|
|
17
|
+
**[AgentForge] snapshot before session 20260316 | score=86.4%**
|
|
18
|
+
- Author: sairam0424
|
|
19
|
+
- Date: Mon Mar 16 15:39:49 2026 +0530
|
|
20
|
+
|
|
21
|
+
### 2e0e0bc - 2026-03-16
|
|
22
|
+
**[AgentForge] snapshot before session 20260316 | score=86.4%**
|
|
23
|
+
- Author: sairam0424
|
|
24
|
+
- Date: Mon Mar 16 15:38:18 2026 +0530
|
|
25
|
+
|
|
26
|
+
### abd497d - 2026-03-16
|
|
27
|
+
**feat: add SQL Wizard agent, User Guide, and fix CLI environment loading**
|
|
28
|
+
- Author: sairam0424
|
|
29
|
+
- Date: Mon Mar 16 15:38:00 2026 +0530
|
|
30
|
+
|
|
31
|
+
### f023c50 - 2026-03-16
|
|
32
|
+
**[AgentForge] snapshot before session 20260316 | score=86.4%**
|
|
33
|
+
- Author: sairam0424
|
|
34
|
+
- Date: Mon Mar 16 15:37:43 2026 +0530
|
|
35
|
+
|
|
36
|
+
### ad4c00c - 2026-03-16
|
|
37
|
+
**chore: clean up verification scripts and fix eval suite loading**
|
|
38
|
+
- Author: sairam0424
|
|
39
|
+
- Date: Mon Mar 16 15:29:51 2026 +0530
|
|
40
|
+
|
|
41
|
+
### e063bf8 - 2026-03-16
|
|
42
|
+
**fix: resolve model reference in Grader._grade_llm**
|
|
43
|
+
- Author: sairam0424
|
|
44
|
+
- Date: Mon Mar 16 15:25:02 2026 +0530
|
|
45
|
+
|
|
46
|
+
### 4a62e94 - 2026-03-16
|
|
47
|
+
**docs: finalize test-azure-agent AGENT.md with the 96% score and healthy Example 3**
|
|
48
|
+
- Author: sairam0424
|
|
49
|
+
- Date: Mon Mar 16 15:24:16 2026 +0530
|
|
50
|
+
|
|
51
|
+
### 9cf968c - 2026-03-16
|
|
52
|
+
**feat: enable Azure OpenAI for Proposer and Grader, fix max_tokens parameter**
|
|
53
|
+
- Author: sairam0424
|
|
54
|
+
- Date: Mon Mar 16 15:23:45 2026 +0530
|
|
55
|
+
|
|
56
|
+
### 7370269 - 2026-03-16
|
|
57
|
+
**[AgentForge] test-azure-agent | REVERT | iter=13 | reason=score_did_not_improve**
|
|
58
|
+
- Author: sairam0424
|
|
59
|
+
- Date: Mon Mar 16 15:22:46 2026 +0530
|
|
60
|
+
|
|
61
|
+
### 1218b2f - 2026-03-16
|
|
62
|
+
**[AgentForge] test-azure-agent | REVERT | iter=12 | reason=score_did_not_improve**
|
|
63
|
+
- Author: sairam0424
|
|
64
|
+
- Date: Mon Mar 16 15:22:27 2026 +0530
|
|
65
|
+
|
|
66
|
+
### 20a0fbe - 2026-03-16
|
|
67
|
+
**[AgentForge] test-azure-agent | REVERT | iter=10 | reason=score_did_not_improve**
|
|
68
|
+
- Author: sairam0424
|
|
69
|
+
- Date: Mon Mar 16 15:22:03 2026 +0530
|
|
70
|
+
|
|
71
|
+
### cf35bc8 - 2026-03-16
|
|
72
|
+
**[AgentForge] test-azure-agent | REVERT | iter=9 | reason=score_did_not_improve**
|
|
73
|
+
- Author: sairam0424
|
|
74
|
+
- Date: Mon Mar 16 15:21:41 2026 +0530
|
|
75
|
+
|
|
76
|
+
### 6ee37c7 - 2026-03-16
|
|
77
|
+
**[AgentForge] test-azure-agent | iter=8 | score=92.3→96.2 (+3.8%)**
|
|
78
|
+
- Author: sairam0424
|
|
79
|
+
- Date: Mon Mar 16 15:21:18 2026 +0530
|
|
80
|
+
|
|
81
|
+
### d70c568 - 2026-03-16
|
|
82
|
+
**[AgentForge] test-azure-agent | REVERT | iter=7 | reason=score_did_not_improve**
|
|
83
|
+
- Author: sairam0424
|
|
84
|
+
- Date: Mon Mar 16 15:20:58 2026 +0530
|
|
85
|
+
|
|
86
|
+
### 16df886 - 2026-03-16
|
|
87
|
+
**[AgentForge] test-azure-agent | REVERT | iter=6 | reason=score_did_not_improve**
|
|
88
|
+
- Author: sairam0424
|
|
89
|
+
- Date: Mon Mar 16 15:20:38 2026 +0530
|
|
90
|
+
|
|
91
|
+
### 34ab163 - 2026-03-16
|
|
92
|
+
**[AgentForge] test-azure-agent | REVERT | iter=5 | reason=score_did_not_improve**
|
|
93
|
+
- Author: sairam0424
|
|
94
|
+
- Date: Mon Mar 16 15:20:19 2026 +0530
|
|
95
|
+
|
|
96
|
+
### 34ba706 - 2026-03-16
|
|
97
|
+
**[AgentForge] test-azure-agent | REVERT | iter=4 | reason=score_did_not_improve**
|
|
98
|
+
- Author: sairam0424
|
|
99
|
+
- Date: Mon Mar 16 15:19:59 2026 +0530
|
|
100
|
+
|
|
101
|
+
### b471523 - 2026-03-16
|
|
102
|
+
**[AgentForge] test-azure-agent | REVERT | iter=3 | reason=score_did_not_improve**
|
|
103
|
+
- Author: sairam0424
|
|
104
|
+
- Date: Mon Mar 16 15:19:42 2026 +0530
|
|
105
|
+
|
|
106
|
+
### 0ebba05 - 2026-03-16
|
|
107
|
+
**[AgentForge] test-azure-agent | REVERT | iter=2 | reason=score_did_not_improve**
|
|
108
|
+
- Author: sairam0424
|
|
109
|
+
- Date: Mon Mar 16 15:19:23 2026 +0530
|
|
110
|
+
|
|
111
|
+
### f12f452 - 2026-03-16
|
|
112
|
+
**[AgentForge] test-azure-agent | REVERT | iter=1 | reason=score_did_not_improve**
|
|
113
|
+
- Author: sairam0424
|
|
114
|
+
- Date: Mon Mar 16 15:19:05 2026 +0530
|
|
115
|
+
|
|
116
|
+
### d1b458d - 2026-03-16
|
|
117
|
+
**[AgentForge] snapshot before session 20260316 | score=92.3%**
|
|
118
|
+
- Author: sairam0424
|
|
119
|
+
- Date: Mon Mar 16 15:18:48 2026 +0530
|
|
120
|
+
|
|
121
|
+
### 2b53ce2 - 2026-03-16
|
|
122
|
+
**[AgentForge] snapshot before session 20260316 | score=23.1%**
|
|
123
|
+
- Author: sairam0424
|
|
124
|
+
- Date: Mon Mar 16 15:18:09 2026 +0530
|
|
125
|
+
|
|
126
|
+
### 39b24c0 - 2026-03-16
|
|
127
|
+
**[AgentForge] snapshot before session 20260316 | score=23.1%**
|
|
128
|
+
- Author: sairam0424
|
|
129
|
+
- Date: Mon Mar 16 06:17:29 2026 +0530
|
|
130
|
+
|
|
131
|
+
### 57edcce - 2026-03-16
|
|
132
|
+
**chore: restore missing LoopRunner import**
|
|
133
|
+
- Author: sairam0424
|
|
134
|
+
- Date: Mon Mar 16 06:17:17 2026 +0530
|
|
135
|
+
|
|
136
|
+
### e929066 - 2026-03-16
|
|
137
|
+
**chore: fix full loop test script schema**
|
|
138
|
+
- Author: sairam0424
|
|
139
|
+
- Date: Mon Mar 16 06:17:00 2026 +0530
|
|
140
|
+
|
|
141
|
+
### ac7f802 - 2026-03-16
|
|
142
|
+
**chore: fix git test script attributes**
|
|
143
|
+
- Author: sairam0424
|
|
144
|
+
- Date: Mon Mar 16 06:16:07 2026 +0530
|
|
145
|
+
|
|
146
|
+
### d4dad3a - 2026-03-16
|
|
147
|
+
**feat: integrate Azure OpenAI adapter and E2E validation suite**
|
|
148
|
+
- Author: sairam0424
|
|
149
|
+
- Date: Mon Mar 16 06:15:28 2026 +0530
|
|
150
|
+
|
|
151
|
+
### 146b5e5 - 2026-03-16
|
|
152
|
+
**chore: Parameterize database, MinIO, and Grafana passwords in `.env.example` and `docker-compose.yml`, rename the `db` service to `postgres`, and remove the `loki` service.**
|
|
153
|
+
- Author: sairam0424
|
|
154
|
+
- Date: Mon Mar 16 06:06:35 2026 +0530
|
|
155
|
+
|
|
156
|
+
### 1054da0 - 2026-03-16
|
|
157
|
+
**feat: Implement agent sharing functionality and integrate Loki, Promtail, and Prometheus alerts for enhanced monitoring.**
|
|
158
|
+
- Author: sairam0424
|
|
159
|
+
- Date: Mon Mar 16 06:03:09 2026 +0530
|
|
160
|
+
|
|
161
|
+
### f987f4b - 2026-03-16
|
|
162
|
+
**feat: Add a new dashboard with frontend, API, and infrastructure for live telemetry and monitoring.**
|
|
163
|
+
- Author: sairam0424
|
|
164
|
+
- Date: Mon Mar 16 05:43:34 2026 +0530
|
|
165
|
+
|
|
166
|
+
### 3fc61d5 - 2026-03-16
|
|
167
|
+
**feat: Implement Redis-backed `TransferQueue` for synchronizing learning transfers per agent and update database URL setting name.**
|
|
168
|
+
- Author: sairam0424
|
|
169
|
+
- Date: Mon Mar 16 05:10:31 2026 +0530
|
|
170
|
+
|
|
171
|
+
### 41d05ad - 2026-03-16
|
|
172
|
+
**feat: Implement fleet-wide task health monitoring and budget control, and add CLI commands for verse validation and learning audit.**
|
|
173
|
+
- Author: sairam0424
|
|
174
|
+
- Date: Mon Mar 16 01:03:11 2026 +0530
|
|
175
|
+
|
|
176
|
+
### b978fbc - 2026-03-16
|
|
177
|
+
**feat: Implement cross-agent learning transfer with spec similarity, transactional application, and hint generation.**
|
|
178
|
+
- Author: sairam0424
|
|
179
|
+
- Date: Mon Mar 16 00:56:32 2026 +0530
|
|
180
|
+
|
|
181
|
+
### 52ea549 - 2026-03-15
|
|
182
|
+
**feat: Add agent orchestration with dependency resolution, task scheduling, and learning transfer capabilities.**
|
|
183
|
+
- Author: sairam0424
|
|
184
|
+
- Date: Sun Mar 15 23:49:37 2026 +0530
|
|
185
|
+
|
|
186
|
+
### 30e68e1 - 2026-03-15
|
|
187
|
+
**feat: Implement a memory circuit breaker, enhance memory management with semantic deletion and episodic deduplication, and add context observability metrics.**
|
|
188
|
+
- Author: sairam0424
|
|
189
|
+
- Date: Sun Mar 15 23:30:35 2026 +0530
|
|
190
|
+
|
|
191
|
+
### 9f42939 - 2026-03-15
|
|
192
|
+
**feat: Implement incremental semantic memory indexing with file-based content hashing, add memory consolidation, and introduce context observability metrics.**
|
|
193
|
+
- Author: sairam0424
|
|
194
|
+
- Date: Sun Mar 15 23:26:12 2026 +0530
|
|
195
|
+
|
|
196
|
+
### e6a8007 - 2026-03-15
|
|
197
|
+
**feat: Introduce a comprehensive memory system with episodic and semantic modules, context management, and supporting database infrastructure.**
|
|
198
|
+
- Author: sairam0424
|
|
199
|
+
- Date: Sun Mar 15 23:12:01 2026 +0530
|
|
200
|
+
|
|
201
|
+
### 1680fea - 2026-03-15
|
|
202
|
+
**feat: Add iteration rate limiting, proposer context truncation, graceful interruption, and pre-flight Git snapshots.**
|
|
203
|
+
- Author: sairam0424
|
|
204
|
+
- Date: Sun Mar 15 16:38:03 2026 +0530
|
|
205
|
+
|
|
206
|
+
### fb501ce - 2026-03-15
|
|
207
|
+
**feat: Add loop remediation features including resumability, budget exhaustion, and pause functionality with improved session management.**
|
|
208
|
+
- Author: sairam0424
|
|
209
|
+
- Date: Sun Mar 15 16:25:48 2026 +0530
|
|
210
|
+
|
|
211
|
+
### a5220de - 2026-03-15
|
|
212
|
+
**feat: Introduce agent self-improvement loop with proposal generation, session management, and CLI commands.**
|
|
213
|
+
- Author: sairam0424
|
|
214
|
+
- Date: Sun Mar 15 16:21:32 2026 +0530
|
|
215
|
+
|
|
216
|
+
### 7d91533 - 2026-03-15
|
|
217
|
+
**feat: Add `eval-audit` CLI command for grader consistency and implement chronic assertion failure tracking.**
|
|
218
|
+
- Author: sairam0424
|
|
219
|
+
- Date: Sun Mar 15 15:57:06 2026 +0530
|
|
220
|
+
|
|
221
|
+
### 8a08645 - 2026-03-15
|
|
222
|
+
**feat: Upgrade evaluation system with held-out case support, chronic assertion failure tracking, and enhanced schema validation.**
|
|
223
|
+
- Author: sairam0424
|
|
224
|
+
- Date: Sun Mar 15 15:55:42 2026 +0530
|
|
225
|
+
|
|
226
|
+
### f7b7957 - 2026-03-15
|
|
227
|
+
**feat: Implement agent evaluation framework with new schemas, runner, and grader, alongside general project updates.**
|
|
228
|
+
- Author: sairam0424
|
|
229
|
+
- Date: Sun Mar 15 15:43:28 2026 +0530
|
|
230
|
+
|
|
231
|
+
### 95cb5e8 - 2026-03-15
|
|
232
|
+
**Update project configuration, scripts, documentation, and tests across various modules.**
|
|
233
|
+
- Author: sairam0424
|
|
234
|
+
- Date: Sun Mar 15 15:16:56 2026 +0530
|
|
235
|
+
|
|
236
|
+
### f7cbaa2 - 2026-03-15
|
|
237
|
+
**feat: Initialize `autoresearch` as a Git repository and update various project files, including core logic, configuration, dependencies, and documentation.**
|
|
238
|
+
- Author: sairam0424
|
|
239
|
+
- Date: Sun Mar 15 15:10:25 2026 +0530
|
|
240
|
+
|
|
241
|
+
### f7a7875 - 2026-03-15
|
|
242
|
+
**feat: Implement spec diffing, changelog generation, and Git management utilities with enhanced specification validation.**
|
|
243
|
+
- Author: sairam0424
|
|
244
|
+
- Date: Sun Mar 15 15:09:39 2026 +0530
|
|
245
|
+
|
|
246
|
+
### 01985b4 - 2026-03-15
|
|
247
|
+
**feat: Initialize new core modules for diagnostics, cost, health, logging, and file locking, enhance adapters with retry logic, and update spec validation.**
|
|
248
|
+
- Author: sairam0424
|
|
249
|
+
- Date: Sun Mar 15 14:47:11 2026 +0530
|
|
250
|
+
|
|
251
|
+
### 3fe363a - 2026-03-15
|
|
252
|
+
**feat: Redact sensitive keys from adapter payloads and update spec parser tests to use a canonical spec.**
|
|
253
|
+
- Author: sairam0424
|
|
254
|
+
- Date: Sun Mar 15 02:25:17 2026 +0530
|
|
255
|
+
|
|
256
|
+
### b4d48b5 - 2026-03-15
|
|
257
|
+
**feat: Establish AgentForge core framework with AGENT.md parsing, various agent framework adapters, and agent runner.**
|
|
258
|
+
- Author: sairamugge
|
|
259
|
+
- Date: Sun Mar 15 02:23:01 2026 +0530
|
|
260
|
+
|
|
261
|
+
### 803a668 - 2026-03-15
|
|
262
|
+
**feat: Add initial README.md detailing the AgentForge project, its features, and how it works.**
|
|
263
|
+
- Author: sairamugge
|
|
264
|
+
- Date: Sun Mar 15 01:03:50 2026 +0530
|