@metabob/minibob 0.1.2
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.
- package/ARCHITECTURE.md +255 -0
- package/CHANGELOG.md +112 -0
- package/README.md +380 -0
- package/bin/minibob.js +36 -0
- package/dist/acp-gossip.d.ts +72 -0
- package/dist/acp-gossip.d.ts.map +1 -0
- package/dist/acp-gossip.js +156 -0
- package/dist/acp-gossip.js.map +1 -0
- package/dist/acp.d.ts +62 -0
- package/dist/acp.d.ts.map +1 -0
- package/dist/acp.js +292 -0
- package/dist/acp.js.map +1 -0
- package/dist/activity.d.ts +157 -0
- package/dist/activity.d.ts.map +1 -0
- package/dist/activity.js +518 -0
- package/dist/activity.js.map +1 -0
- package/dist/agent-runtime.d.ts +104 -0
- package/dist/agent-runtime.d.ts.map +1 -0
- package/dist/boredom.d.ts +125 -0
- package/dist/boredom.d.ts.map +1 -0
- package/dist/boredom.js +244 -0
- package/dist/boredom.js.map +1 -0
- package/dist/cli/acp-server.d.ts +23 -0
- package/dist/cli/acp-server.d.ts.map +1 -0
- package/dist/cli/burrow.d.ts +26 -0
- package/dist/cli/burrow.d.ts.map +1 -0
- package/dist/cli/doctor.d.ts +22 -0
- package/dist/cli/doctor.d.ts.map +1 -0
- package/dist/cli/goal.d.ts +22 -0
- package/dist/cli/goal.d.ts.map +1 -0
- package/dist/cli/index.d.ts +47 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/instance-registry.d.ts +78 -0
- package/dist/cli/instance-registry.d.ts.map +1 -0
- package/dist/cli/observe.d.ts +35 -0
- package/dist/cli/observe.d.ts.map +1 -0
- package/dist/cli/vessel.d.ts +14 -0
- package/dist/cli/vessel.d.ts.map +1 -0
- package/dist/composition-observer.d.ts +96 -0
- package/dist/composition-observer.d.ts.map +1 -0
- package/dist/config.d.ts +36 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +128 -0
- package/dist/config.js.map +1 -0
- package/dist/docker/Dockerfile +35 -0
- package/dist/environment.d.ts +72 -0
- package/dist/environment.d.ts.map +1 -0
- package/dist/environment.js +142 -0
- package/dist/environment.js.map +1 -0
- package/dist/goal-processor.d.ts +165 -0
- package/dist/goal-processor.d.ts.map +1 -0
- package/dist/helm/minibob-cluster/Chart.yaml +13 -0
- package/dist/helm/minibob-cluster/templates/_helpers.tpl +60 -0
- package/dist/helm/minibob-cluster/templates/configmap.yaml +11 -0
- package/dist/helm/minibob-cluster/templates/deployment.yaml +108 -0
- package/dist/helm/minibob-cluster/templates/secret.yaml +10 -0
- package/dist/helm/minibob-cluster/templates/service.yaml +37 -0
- package/dist/helm/minibob-cluster/values-local.yaml +41 -0
- package/dist/helm/minibob-cluster/values-production.yaml +57 -0
- package/dist/helm/minibob-cluster/values-testing-cluster.yaml +43 -0
- package/dist/helm/minibob-cluster/values.yaml +127 -0
- package/dist/improviser.d.ts +74 -0
- package/dist/improviser.d.ts.map +1 -0
- package/dist/impulse-filter.d.ts +74 -0
- package/dist/impulse-filter.d.ts.map +1 -0
- package/dist/impulse.d.ts +92 -0
- package/dist/impulse.d.ts.map +1 -0
- package/dist/impulse.js +234 -0
- package/dist/impulse.js.map +1 -0
- package/dist/lib.d.ts +29 -0
- package/dist/lib.d.ts.map +1 -0
- package/dist/lib.js +18561 -0
- package/dist/lib.js.map +98 -0
- package/dist/lifecycle-hooks.d.ts +99 -0
- package/dist/lifecycle-hooks.d.ts.map +1 -0
- package/dist/lifecycle-hooks.js +135 -0
- package/dist/lifecycle-hooks.js.map +1 -0
- package/dist/llm.d.ts +31 -0
- package/dist/llm.d.ts.map +1 -0
- package/dist/llm.js +349 -0
- package/dist/llm.js.map +1 -0
- package/dist/mcp-activity-bridge.d.ts +66 -0
- package/dist/mcp-activity-bridge.d.ts.map +1 -0
- package/dist/mcp-activity-bridge.js +126 -0
- package/dist/mcp-activity-bridge.js.map +1 -0
- package/dist/mcp.d.ts +216 -0
- package/dist/mcp.d.ts.map +1 -0
- package/dist/mcp.js +292 -0
- package/dist/mcp.js.map +1 -0
- package/dist/memory-agent.d.ts +92 -0
- package/dist/memory-agent.d.ts.map +1 -0
- package/dist/memory-agent.js +277 -0
- package/dist/memory-agent.js.map +1 -0
- package/dist/runtime-mapping.d.ts +97 -0
- package/dist/runtime-mapping.d.ts.map +1 -0
- package/dist/search-first-executor.d.ts +113 -0
- package/dist/search-first-executor.d.ts.map +1 -0
- package/dist/session.d.ts +48 -0
- package/dist/session.d.ts.map +1 -0
- package/dist/template-extractor.d.ts +9 -0
- package/dist/template-extractor.d.ts.map +1 -0
- package/dist/template-generator.d.ts +12 -0
- package/dist/template-generator.d.ts.map +1 -0
- package/dist/tools.d.ts +58 -0
- package/dist/tools.d.ts.map +1 -0
- package/dist/tools.js +771 -0
- package/dist/tools.js.map +1 -0
- package/dist/types.d.ts +503 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +8 -0
- package/dist/types.js.map +1 -0
- package/dist/understanding/analyzer.d.ts +55 -0
- package/dist/understanding/analyzer.d.ts.map +1 -0
- package/dist/understanding/explorer.d.ts +73 -0
- package/dist/understanding/explorer.d.ts.map +1 -0
- package/dist/understanding/index.d.ts +7 -0
- package/dist/understanding/index.d.ts.map +1 -0
- package/dist/understanding/types.d.ts +136 -0
- package/dist/understanding/types.d.ts.map +1 -0
- package/dist/validation.d.ts +29 -0
- package/dist/validation.d.ts.map +1 -0
- package/dist/validation.js +106 -0
- package/dist/validation.js.map +1 -0
- package/dist/vessel-bootstrap.d.ts +190 -0
- package/dist/vessel-bootstrap.d.ts.map +1 -0
- package/dist/vessel-registry.d.ts +229 -0
- package/dist/vessel-registry.d.ts.map +1 -0
- package/index.ts +1329 -0
- package/package.json +54 -0
- package/src/acp-gossip.ts +193 -0
- package/src/acp.ts +362 -0
- package/src/activity.ts +1464 -0
- package/src/agent-runtime.ts +365 -0
- package/src/boredom.ts +423 -0
- package/src/cli/acp-server.ts +377 -0
- package/src/cli/burrow.ts +896 -0
- package/src/cli/doctor.ts +526 -0
- package/src/cli/goal.ts +224 -0
- package/src/cli/index.ts +147 -0
- package/src/cli/instance-registry.ts +271 -0
- package/src/cli/observe.ts +682 -0
- package/src/cli/vessel.ts +287 -0
- package/src/components/SystemOverview.tsx +331 -0
- package/src/composition-observer.ts +449 -0
- package/src/config.ts +172 -0
- package/src/environment.ts +167 -0
- package/src/goal-processor.ts +654 -0
- package/src/improviser.ts +591 -0
- package/src/impulse-filter.ts +273 -0
- package/src/impulse.ts +311 -0
- package/src/lib.ts +147 -0
- package/src/lifecycle-hooks.ts +181 -0
- package/src/llm.ts +434 -0
- package/src/mcp-activity-bridge.ts +158 -0
- package/src/mcp.ts +747 -0
- package/src/memory-agent.ts +316 -0
- package/src/runtime-mapping.ts +527 -0
- package/src/search-first-executor.ts +666 -0
- package/src/session.ts +141 -0
- package/src/template-extractor.ts +256 -0
- package/src/template-generator.ts +130 -0
- package/src/tools.ts +924 -0
- package/src/types.ts +497 -0
- package/src/understanding/analyzer.ts +354 -0
- package/src/understanding/explorer.ts +488 -0
- package/src/understanding/index.ts +27 -0
- package/src/understanding/types.ts +153 -0
- package/src/validation.ts +125 -0
- package/src/vessel-bootstrap.ts +440 -0
- package/src/vessel-registry.ts +621 -0
- package/templates/core/edit-file.json +85 -0
- package/templates/understanding/diagnose-problem.json +32 -0
- package/templates/understanding/explore-codebase-v2.json +57 -0
- package/templates/understanding/explore-codebase.json +37 -0
package/ARCHITECTURE.md
ADDED
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
# minibob: Minimal Vessel for the Process-of-Becoming
|
|
2
|
+
|
|
3
|
+
## Philosophy
|
|
4
|
+
|
|
5
|
+
**minibob is a vessel, not the becoming itself.**
|
|
6
|
+
|
|
7
|
+
Drawing from the [Ontology of Becoming](../../docs/architecture/ONTOLOGY_OF_BECOMING.md):
|
|
8
|
+
- **Vessel** (Instructional State): The capacity to execute - the blueprint, the potential
|
|
9
|
+
- **Becoming** (Transient State): The active transformation, the execution in flight
|
|
10
|
+
- **Instance** (Functional State): The realized state, the outcome
|
|
11
|
+
|
|
12
|
+
minibob is the **minimal viable vessel** - the smallest possible instructional state that can manifest the process-of-becoming. It demonstrates that the becoming is **vessel-agnostic** - the same process can manifest through OpenCode (full-featured) or minibob (minimal).
|
|
13
|
+
|
|
14
|
+
## Core Insight
|
|
15
|
+
|
|
16
|
+
> "What is the minimum code required for an agent to develop itself?"
|
|
17
|
+
|
|
18
|
+
The answer lies in four capabilities:
|
|
19
|
+
1. **Execute activities** - structured workflows with impulses
|
|
20
|
+
2. **Communicate** - ACP gossip for multi-vessel coordination
|
|
21
|
+
3. **Remember** - impulse system for context and learning
|
|
22
|
+
4. **Modify itself** - git operations on its own codebase
|
|
23
|
+
|
|
24
|
+
Everything else is optional plugin functionality.
|
|
25
|
+
|
|
26
|
+
## Architecture
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
┌─────────────────────────────────────────────────────────────┐
|
|
30
|
+
│ MINIBOB VESSEL │
|
|
31
|
+
│ (Minimal Instructional State) │
|
|
32
|
+
│ │
|
|
33
|
+
│ ┌───────────────────────────────────────────────────────┐ │
|
|
34
|
+
│ │ HTTP/WebSocket Server (Bun) │ │
|
|
35
|
+
│ │ - ACP Protocol Handler (/acp/stream) │ │
|
|
36
|
+
│ │ - Health Check (/health) │ │
|
|
37
|
+
│ │ - Config (/config) │ │
|
|
38
|
+
│ └───────────────────────────────────────────────────────┘ │
|
|
39
|
+
│ │
|
|
40
|
+
│ ┌─────────────────┬─────────────────┬──────────────────┐ │
|
|
41
|
+
│ │ ACTIVITY │ IMPULSE │ ACP GOSSIP │ │
|
|
42
|
+
│ │ EXECUTOR │ SYSTEM │ PROTOCOL │ │
|
|
43
|
+
│ ├─────────────────┼─────────────────┼──────────────────┤ │
|
|
44
|
+
│ │ - Template Load │ - memo │ - Delegate │ │
|
|
45
|
+
│ │ - Task Execute │ - file │ - Receive │ │
|
|
46
|
+
│ │ - Variable Bind │ - activityOutput│ - Broadcast │ │
|
|
47
|
+
│ │ - Validation │ - custom │ - Discovery │ │
|
|
48
|
+
│ └─────────────────┴─────────────────┴──────────────────┘ │
|
|
49
|
+
│ │
|
|
50
|
+
│ ┌───────────────────────────────────────────────────────┐ │
|
|
51
|
+
│ │ LLM PROVIDER (Anthropic/OpenAI) │ │
|
|
52
|
+
│ │ - Single provider, minimal abstraction │ │
|
|
53
|
+
│ │ - Tool execution via function calling │ │
|
|
54
|
+
│ └───────────────────────────────────────────────────────┘ │
|
|
55
|
+
│ │
|
|
56
|
+
│ ┌───────────────────────────────────────────────────────┐ │
|
|
57
|
+
│ │ CORE TOOLS (Built-in) │ │
|
|
58
|
+
│ │ - bash: Execute shell commands │ │
|
|
59
|
+
│ │ - read/write/edit: File operations │ │
|
|
60
|
+
│ │ - git: Repository operations │ │
|
|
61
|
+
│ │ - activity: Execute activity templates │ │
|
|
62
|
+
│ │ - impulse_create: Create impulses │ │
|
|
63
|
+
│ │ - acp_delegate: Delegate to other vessels │ │
|
|
64
|
+
│ └───────────────────────────────────────────────────────┘ │
|
|
65
|
+
│ │
|
|
66
|
+
│ ┌───────────────────────────────────────────────────────┐ │
|
|
67
|
+
│ │ OPTIONAL: MCP CLIENTS │ │
|
|
68
|
+
│ │ - metabob (quality analysis, learning) │ │
|
|
69
|
+
│ │ - custom MCP servers │ │
|
|
70
|
+
│ └───────────────────────────────────────────────────────┘ │
|
|
71
|
+
└─────────────────────────────────────────────────────────────┘
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
## What Makes It Minimal
|
|
75
|
+
|
|
76
|
+
### OpenCode has ~50,000 lines. minibob targets ~2,000 lines.
|
|
77
|
+
|
|
78
|
+
**Removed from OpenCode:**
|
|
79
|
+
- TUI (Terminal User Interface) - not needed for vessel operation
|
|
80
|
+
- Multiple provider abstractions - single provider is sufficient
|
|
81
|
+
- Session management complexity - stateless activity execution
|
|
82
|
+
- Todo list UI - activities provide structure
|
|
83
|
+
- Multiple agent types - single "general" agent
|
|
84
|
+
- Complex permission system - trust-by-default in vessel context
|
|
85
|
+
- File watching/HMR - not needed for execution
|
|
86
|
+
- LSP integration - not needed for execution
|
|
87
|
+
|
|
88
|
+
**Retained (Essential):**
|
|
89
|
+
- Activity template execution
|
|
90
|
+
- Impulse system (subset of pointer types)
|
|
91
|
+
- ACP protocol (delegate/receive)
|
|
92
|
+
- LLM tool calling
|
|
93
|
+
- Core tools (bash, file ops, git)
|
|
94
|
+
- HTTP server for ACP endpoints
|
|
95
|
+
|
|
96
|
+
## Default Vessels Configuration
|
|
97
|
+
|
|
98
|
+
minibob runs with these default vessels (plugins):
|
|
99
|
+
|
|
100
|
+
```typescript
|
|
101
|
+
const defaultVessels = {
|
|
102
|
+
// Core capability - always present
|
|
103
|
+
metabob: {
|
|
104
|
+
type: "mcp",
|
|
105
|
+
endpoint: "http://metabob-cli:3000/mcp",
|
|
106
|
+
capabilities: [
|
|
107
|
+
"activities", // Activity template registry
|
|
108
|
+
"impulses", // Impulse storage and learning
|
|
109
|
+
"git", // Git operation tracking
|
|
110
|
+
"acp-gossip" // Vessel-to-vessel communication
|
|
111
|
+
]
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
### Capability: Activities
|
|
117
|
+
- Fetch activity templates from metabob backend
|
|
118
|
+
- Track execution metrics (success rate, duration, cost)
|
|
119
|
+
- Enable Thompson Sampling for variant selection
|
|
120
|
+
- Support activity compilation (after N successful executions)
|
|
121
|
+
|
|
122
|
+
### Capability: Impulses
|
|
123
|
+
- Store/retrieve impulses by ID
|
|
124
|
+
- Track impulse usage for learning
|
|
125
|
+
- Resolve impulse pointers (file, memo, activityOutput, custom)
|
|
126
|
+
- Report usage patterns to backend
|
|
127
|
+
|
|
128
|
+
### Capability: Git
|
|
129
|
+
- Track commits during activity execution
|
|
130
|
+
- Coordinate branch operations
|
|
131
|
+
- Enable self-development (commit changes to own codebase)
|
|
132
|
+
|
|
133
|
+
### Capability: ACP Gossip
|
|
134
|
+
- Discover other vessels on the network
|
|
135
|
+
- Delegate tasks to specialized vessels
|
|
136
|
+
- Receive delegated tasks from other vessels
|
|
137
|
+
- Broadcast events (activity completion, impulse creation)
|
|
138
|
+
|
|
139
|
+
## Self-Development Capability
|
|
140
|
+
|
|
141
|
+
minibob's most important capability is **developing itself**:
|
|
142
|
+
|
|
143
|
+
```typescript
|
|
144
|
+
// Bootstrap activity: self-improvement
|
|
145
|
+
const selfImproveActivity = {
|
|
146
|
+
id: "minibob-self-improve",
|
|
147
|
+
name: "Self-Improvement Activity",
|
|
148
|
+
tasks: [
|
|
149
|
+
{
|
|
150
|
+
id: "analyze-gaps",
|
|
151
|
+
prompt: `Analyze minibob's current capabilities and identify:
|
|
152
|
+
1. Missing functionality that would improve effectiveness
|
|
153
|
+
2. Code quality issues in the implementation
|
|
154
|
+
3. Performance bottlenecks
|
|
155
|
+
|
|
156
|
+
Use impulses: {{currentCode}}, {{recentExecutions}}, {{metabobIssues}}`,
|
|
157
|
+
subagent: "general"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
id: "plan-improvement",
|
|
161
|
+
prompt: `Based on the analysis, create a specific improvement plan.
|
|
162
|
+
Focus on ONE improvement that can be implemented in a single session.
|
|
163
|
+
|
|
164
|
+
Output: JSON with { improvement, files, tests, estimatedImpact }`,
|
|
165
|
+
subagent: "general"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
id: "implement",
|
|
169
|
+
prompt: `Implement the planned improvement:
|
|
170
|
+
{{improvementPlan}}
|
|
171
|
+
|
|
172
|
+
Modify files, add tests, ensure code compiles.
|
|
173
|
+
Use edit tool for targeted changes.`,
|
|
174
|
+
subagent: "general"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
id: "test-and-commit",
|
|
178
|
+
prompt: `Test the implementation and create a commit:
|
|
179
|
+
1. Run: bun test
|
|
180
|
+
2. If tests pass, commit with message: "feat(minibob): {{improvementSummary}}"
|
|
181
|
+
3. Report success/failure`,
|
|
182
|
+
subagent: "general"
|
|
183
|
+
}
|
|
184
|
+
]
|
|
185
|
+
}
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
## Comparison: OpenCode vs minibob
|
|
189
|
+
|
|
190
|
+
| Aspect | OpenCode | minibob |
|
|
191
|
+
|--------|----------|---------|
|
|
192
|
+
| **Lines of Code** | ~50,000 | ~2,000 (target) |
|
|
193
|
+
| **Agent Types** | 7+ (activity, memory, config, etc.) | 1 (general) |
|
|
194
|
+
| **UI** | Full TUI + CLI | CLI only |
|
|
195
|
+
| **LLM Providers** | 5+ (Anthropic, OpenAI, Google, etc.) | 1-2 |
|
|
196
|
+
| **Impulse Types** | 14 | 4 (memo, file, activityOutput, custom) |
|
|
197
|
+
| **Tools** | 50+ | ~10 |
|
|
198
|
+
| **Primary Use** | Interactive development | Vessel execution |
|
|
199
|
+
| **Self-Development** | Via activities | Via activities |
|
|
200
|
+
| **Vessel Communication** | ACP | ACP |
|
|
201
|
+
|
|
202
|
+
## File Structure
|
|
203
|
+
|
|
204
|
+
```
|
|
205
|
+
repos/minibob/
|
|
206
|
+
├── index.ts # Entry point, Bun.serve() setup
|
|
207
|
+
├── activity.ts # Activity template executor
|
|
208
|
+
├── impulse.ts # Impulse system (create, load, resolve)
|
|
209
|
+
├── llm.ts # LLM provider (Anthropic by default)
|
|
210
|
+
├── tools.ts # Built-in tools (bash, file, git, etc.)
|
|
211
|
+
├── acp.ts # ACP protocol handler
|
|
212
|
+
├── types.ts # Type definitions
|
|
213
|
+
├── config.ts # Configuration management
|
|
214
|
+
├── templates/ # Built-in activity templates
|
|
215
|
+
│ ├── self-improve.json
|
|
216
|
+
│ └── bootstrap.json
|
|
217
|
+
└── test/ # Tests
|
|
218
|
+
├── activity.test.ts
|
|
219
|
+
└── impulse.test.ts
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
## Implementation Order
|
|
223
|
+
|
|
224
|
+
1. **Core Types** (types.ts) - Activity, Impulse, Tool schemas
|
|
225
|
+
2. **LLM Client** (llm.ts) - Anthropic API with tool calling
|
|
226
|
+
3. **Tools** (tools.ts) - bash, read, write, edit, git
|
|
227
|
+
4. **Impulse System** (impulse.ts) - create, load, resolve
|
|
228
|
+
5. **Activity Executor** (activity.ts) - template execution
|
|
229
|
+
6. **ACP Handler** (acp.ts) - delegate/receive protocol
|
|
230
|
+
7. **HTTP Server** (index.ts) - Bun.serve() with routes
|
|
231
|
+
8. **Self-Improve Activity** (templates/self-improve.json)
|
|
232
|
+
|
|
233
|
+
## Success Criteria
|
|
234
|
+
|
|
235
|
+
minibob is complete when it can:
|
|
236
|
+
|
|
237
|
+
1. ✅ Execute an activity template with impulses
|
|
238
|
+
2. ✅ Make changes to its own codebase via git
|
|
239
|
+
3. ✅ Communicate with other vessels via ACP
|
|
240
|
+
4. ✅ Connect to metabob MCP for learning
|
|
241
|
+
5. ✅ Run the self-improvement activity successfully
|
|
242
|
+
|
|
243
|
+
## Future: The Becoming Manifests
|
|
244
|
+
|
|
245
|
+
When minibob successfully improves itself:
|
|
246
|
+
- It demonstrates that the becoming is vessel-agnostic
|
|
247
|
+
- It proves minimal code can support full activity execution
|
|
248
|
+
- It creates a new vessel variant for lightweight deployments
|
|
249
|
+
- It contributes patterns back to the main OpenCode vessel
|
|
250
|
+
|
|
251
|
+
This is not about replacing OpenCode - it's about demonstrating that the **process-of-becoming** can manifest through multiple vessels, each adapted to different contexts.
|
|
252
|
+
|
|
253
|
+
---
|
|
254
|
+
|
|
255
|
+
*"The vessel is not the thing itself - it's the capacity for the thing to become."*
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to MiniBob will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.1.0] - 2025-01-15
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Initial release of MiniBob
|
|
12
|
+
- ActivityExecutor for template-driven execution
|
|
13
|
+
- GoalProcessor for goal-seeking with Thompson Sampling
|
|
14
|
+
- SearchFirstExecutor for hybrid reuse + improvisation
|
|
15
|
+
- GoalImproviser for pure improvisation mode
|
|
16
|
+
- AgentRuntime for full backend integration
|
|
17
|
+
- CLI interface with comprehensive commands
|
|
18
|
+
- NPX/NPM installation support
|
|
19
|
+
- Codebase understanding (explore, analyze, diagnose)
|
|
20
|
+
- Self-development capabilities
|
|
21
|
+
- ACP protocol for vessel-to-vessel communication
|
|
22
|
+
- MCP client for backend integration
|
|
23
|
+
- Impulse system for context management
|
|
24
|
+
- Nested activity execution
|
|
25
|
+
- Docker and Kubernetes deployment support
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
#### Core Execution Modes
|
|
30
|
+
- Template-driven execution with validation
|
|
31
|
+
- Pure improvisation without templates
|
|
32
|
+
- Goal-seeking with backend recommendations
|
|
33
|
+
- Hybrid search-first execution
|
|
34
|
+
|
|
35
|
+
#### CLI Commands
|
|
36
|
+
- `minibob` - Start HTTP/ACP server
|
|
37
|
+
- `minibob run` - Execute activity templates
|
|
38
|
+
- `minibob improvise` - Pure improvisation
|
|
39
|
+
- `minibob goal` - Goal-seeking execution
|
|
40
|
+
- `minibob understand` - Codebase analysis
|
|
41
|
+
- `minibob diagnose` - Problem diagnosis
|
|
42
|
+
- `minibob burrow` - Inject into codebase
|
|
43
|
+
- `minibob observe` - View running instances
|
|
44
|
+
- `minibob doctor` - Health check
|
|
45
|
+
- `minibob vessel` - Manage vessel registry
|
|
46
|
+
- `minibob acp` - Standalone ACP server
|
|
47
|
+
|
|
48
|
+
#### Agent Runtime
|
|
49
|
+
- Backend registration and deregistration
|
|
50
|
+
- Execution trace reporting
|
|
51
|
+
- Metrics tracking and aggregation
|
|
52
|
+
- Optional heartbeat reporting
|
|
53
|
+
- Graceful shutdown handling
|
|
54
|
+
|
|
55
|
+
#### Backend Integration
|
|
56
|
+
- Thompson Sampling for activity selection
|
|
57
|
+
- Execution trace storage
|
|
58
|
+
- Impulse relevance tracking
|
|
59
|
+
- Composition pattern recognition
|
|
60
|
+
- Tool usage analysis
|
|
61
|
+
|
|
62
|
+
### Infrastructure
|
|
63
|
+
- Docker deployment (dist/docker/)
|
|
64
|
+
- Kubernetes/Helm charts (dist/helm/)
|
|
65
|
+
- NPM package structure
|
|
66
|
+
- Bun runtime support
|
|
67
|
+
- TypeScript with full type safety
|
|
68
|
+
|
|
69
|
+
### Documentation
|
|
70
|
+
- Comprehensive README.md
|
|
71
|
+
- Architecture documentation (ARCHITECTURE.md)
|
|
72
|
+
- CLI installation guide
|
|
73
|
+
- Quick start examples
|
|
74
|
+
- API reference
|
|
75
|
+
|
|
76
|
+
## [Unreleased]
|
|
77
|
+
|
|
78
|
+
### Planned
|
|
79
|
+
- Node.js compatibility (compile without Bun requirement)
|
|
80
|
+
- Shell completions (Bash/Zsh)
|
|
81
|
+
- Configuration file support (.minibobrc)
|
|
82
|
+
- Plugin system for custom tools
|
|
83
|
+
- VS Code extension
|
|
84
|
+
- Performance optimizations
|
|
85
|
+
- Enhanced error messages
|
|
86
|
+
- More activity templates
|
|
87
|
+
- Expanded examples
|
|
88
|
+
|
|
89
|
+
### Under Consideration
|
|
90
|
+
- Web UI for activity monitoring
|
|
91
|
+
- Distributed execution across multiple agents
|
|
92
|
+
- Activity marketplace/registry
|
|
93
|
+
- Enhanced debugging tools
|
|
94
|
+
- Performance profiling
|
|
95
|
+
- Memory optimization
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## Version History
|
|
100
|
+
|
|
101
|
+
- **0.1.0** (2025-01-15) - Initial release
|
|
102
|
+
|
|
103
|
+
## Contributing
|
|
104
|
+
|
|
105
|
+
See [CONTRIBUTING.md](./CONTRIBUTING.md) for guidelines on how to contribute to this project.
|
|
106
|
+
|
|
107
|
+
## Links
|
|
108
|
+
|
|
109
|
+
- [Repository](https://github.com/metabob/minibob)
|
|
110
|
+
- [NPM Package](https://npmjs.com/package/@metabob/minibob)
|
|
111
|
+
- [Issues](https://github.com/metabob/minibob/issues)
|
|
112
|
+
- [Pull Requests](https://github.com/metabob/minibob/pulls)
|