Skip to content

Commit ad42208

Browse files
author
Your Name
committed
feat: autonomous execution foundations
- Implement file validation and tracking in editor and tools - Add explicit success criteria to planner prompt - Create model capability catalog and refactor recommender - Implement OpenTelemetry-based telemetry and usage tracking - Add unit tests for catalog and telemetry - Add documentation and blog post
1 parent 81e7b1b commit ad42208

30 files changed

+1096
-229
lines changed

.golangci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1+
version: "2"
2+
13
run:
24
timeout: 5m
35

46
linters:
57
enable:
6-
- errcheck
7-
- gosimple
88
- govet
99
- ineffassign
1010
- staticcheck
1111
- unused
12+
disable:
13+
- errcheck
1214

1315
issues:
1416
exclude-rules:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ chu implement plan.md --auto # Autonomous (fully automated)
4747
- ✅ Choose your control level (interactive or autonomous)
4848
- ✅ Lower costs through better planning
4949

50-
📖 **[Read the Complete Workflow Guide](docs/workflow-guide.md)**
50+
**[Read the Complete Workflow Guide](docs/workflow-guide.md)**
5151

5252
## Quick Start
5353

@@ -197,7 +197,7 @@ chu chat "fix bug in authentication"
197197

198198
## Usage
199199

200-
**📖 [Complete Workflow Guide](docs/workflow-guide.md)** - Learn the full research → plan → implement workflow
200+
**[Complete Workflow Guide](docs/workflow-guide.md)** - Learn the full research → plan → implement workflow
201201

202202
### Chat Mode
203203

docs/_posts/2025-11-24-complete-workflow-guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -233,10 +233,10 @@ Implementation itself works for any language (LLM-based), but build/test verific
233233

234234
## See Also
235235

236-
- [📖 Complete Workflow Guide (docs)](../workflow-guide.md)
237-
- [💰 Cost Optimization Guide](2024-11-22-cost-tracking-optimization.md)
238-
- [⚙️ Groq Model Configs](2025-11-18-groq-optimal-configs.md)
239-
- [🏠 Local Setup with Ollama](2024-11-19-ollama-local-setup.md)
236+
- [Complete Workflow Guide (docs)](../workflow-guide.md)
237+
- [Cost Optimization Guide](2024-11-22-cost-tracking-optimization.md)
238+
- [Groq Model Configs](2025-11-18-groq-optimal-configs.md)
239+
- [Local Setup with Ollama](2024-11-19-ollama-local-setup.md)
240240

241241
---
242242

docs/_posts/2025-11-25-ensemble-optimization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ This is how we move from "Artificial Intelligence" to **"Optimized Intelligence"
6565

6666
## References
6767

68-
[^1]: Henzi, A., Ziegel, J. F., & Gneiting, T. (2021). The pie sharing problem: Unbiased sampling of N+1 summative weights. *Environmental Modelling & Software*, 145, 105185. [https://doi.org/10.1016/j.envsoft.2021.105185](https://doi.org/10.1016/j.envsoft.2021.105185) (Creative Commons license)
68+
[^1]: Henzi, A., Ziegel, J. F., & Gneiting, T. (2021). The pie sharing problem: Unbiased sampling of N+1 summative weights. *Environmental Modelling & Software*, 145, 105185. [https://doi.org/10.1016/j.envsoft.2021.105185](https://doi.org/10.1016/j.envsoft.2021.105185)
6969

7070
[^2]: Liu, Z., Wang, Y., Vaidya, S., Ruehle, F., Halverson, J., Soljačić, M., Hou, T. Y., & Tegmark, M. (2024). KAN: Kolmogorov-Arnold Networks. arXiv:2404.19756 [cs.LG]. [https://arxiv.org/abs/2404.19756](https://arxiv.org/abs/2404.19756)
7171

docs/_posts/2025-11-26-intelligent-auto-recovery.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
layout: post
33
title: "Intelligent Efficiency: chu do Finds The Optimal Path"
44
date: 2025-11-26
5-
categories: features ml
5+
author: Jader Correa
6+
description: "chu do uses intelligent auto-recovery to find the optimal model path. Evaluates cost, speed, reliability across backends with real-time learning from execution history."
7+
tags: [features, ml, auto-recovery, intelligence, optimization]
68
---
79

810
# Intelligent Efficiency: `chu do` Finds The Optimal Path

0 commit comments

Comments
 (0)