workermill 0.1.8 → 0.2.0
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/README.md +14 -5
- package/dist/{chunk-3KIFXIBC.js → chunk-VC6VNVEY.js} +214 -468
- package/dist/index.js +1707 -690
- package/dist/{orchestrator-NMTZUS23.js → orchestrator-5I7BGPC7.js} +597 -162
- package/package.json +7 -1
- package/personas/planner.md +1 -1
- package/dist/chunk-2NTK7H4W.js +0 -10
- package/dist/chunk-LVCJZJJH.js +0 -29
- package/dist/terminal-ILMO7Z3P.js +0 -17
- package/personas/ml_engineer.md +0 -32
- /package/personas/{data_engineer.md → data_ml_engineer.md} +0 -0
- /package/personas/{reviewer.md → tech_lead.md} +0 -0
package/README.md
CHANGED
|
@@ -90,17 +90,26 @@ Config stored at `~/.workermill/cli.json` (global) and `.workermill/config.json`
|
|
|
90
90
|
"providers": {
|
|
91
91
|
"ollama": {
|
|
92
92
|
"model": "qwen3-coder:30b",
|
|
93
|
-
"host": "http://localhost:11434"
|
|
93
|
+
"host": "http://localhost:11434",
|
|
94
|
+
"contextLength": 65536
|
|
94
95
|
},
|
|
95
96
|
"anthropic": {
|
|
96
97
|
"model": "claude-sonnet-4-6",
|
|
97
98
|
"apiKey": "{env:ANTHROPIC_API_KEY}"
|
|
99
|
+
},
|
|
100
|
+
"openai": {
|
|
101
|
+
"model": "gpt-5.4",
|
|
102
|
+
"apiKey": "{env:OPENAI_API_KEY}"
|
|
103
|
+
},
|
|
104
|
+
"google": {
|
|
105
|
+
"model": "gemini-3.1-pro",
|
|
106
|
+
"apiKey": "{env:GOOGLE_API_KEY}"
|
|
98
107
|
}
|
|
99
108
|
},
|
|
100
109
|
"default": "ollama",
|
|
101
110
|
"routing": {
|
|
102
|
-
"
|
|
103
|
-
"
|
|
111
|
+
"tech_lead": "anthropic",
|
|
112
|
+
"planner": "anthropic"
|
|
104
113
|
},
|
|
105
114
|
"review": {
|
|
106
115
|
"maxRevisions": 2,
|
|
@@ -110,9 +119,9 @@ Config stored at `~/.workermill/cli.json` (global) and `.workermill/config.json`
|
|
|
110
119
|
}
|
|
111
120
|
```
|
|
112
121
|
|
|
113
|
-
##
|
|
122
|
+
## 12 Built-in Personas
|
|
114
123
|
|
|
115
|
-
|
|
124
|
+
backend_developer, frontend_developer, devops_engineer, qa_engineer, security_engineer, data_ml_engineer, mobile_developer, tech_writer, architect, tech_lead, planner, critic
|
|
116
125
|
|
|
117
126
|
## Requirements
|
|
118
127
|
|