workermill 0.1.9 → 0.3.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 +24 -5
- package/dist/{chunk-3KIFXIBC.js → chunk-NGQKIYVB.js} +253 -469
- package/dist/index.js +1762 -687
- package/dist/{orchestrator-NMTZUS23.js → orchestrator-2M4BCHQR.js} +563 -158
- package/package.json +7 -1
- package/personas/architect.md +51 -0
- package/personas/backend_developer.md +51 -0
- package/personas/critic.md +65 -16
- package/personas/data_ml_engineer.md +83 -0
- package/personas/devops_engineer.md +51 -0
- package/personas/frontend_developer.md +51 -0
- package/personas/mobile_developer.md +51 -0
- package/personas/planner.md +105 -16
- package/personas/qa_engineer.md +51 -0
- package/personas/security_engineer.md +51 -0
- package/personas/tech_lead.md +125 -0
- package/personas/tech_writer.md +51 -0
- package/dist/chunk-2NTK7H4W.js +0 -10
- package/dist/chunk-LVCJZJJH.js +0 -29
- package/dist/terminal-ILMO7Z3P.js +0 -17
- package/personas/data_engineer.md +0 -32
- package/personas/ml_engineer.md +0 -32
- package/personas/reviewer.md +0 -30
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,19 @@ Config stored at `~/.workermill/cli.json` (global) and `.workermill/config.json`
|
|
|
110
119
|
}
|
|
111
120
|
```
|
|
112
121
|
|
|
113
|
-
##
|
|
122
|
+
## 12 Built-in Personas
|
|
123
|
+
|
|
124
|
+
backend_developer, frontend_developer, devops_engineer, qa_engineer, security_engineer, data_ml_engineer, mobile_developer, tech_writer, architect, tech_lead, planner, critic
|
|
125
|
+
|
|
126
|
+
All worker personas include production-hardened rules:
|
|
127
|
+
- **Real services, not mocks** — Docker containers for databases, caches, queues. Tests run against real services.
|
|
128
|
+
- **Version trust** — Never downgrades language/runtime versions (training data is outdated)
|
|
129
|
+
- **Learning markers** — Reports codebase discoveries with `::learning::` markers for team visibility
|
|
130
|
+
- **Right-sized plans** — Planner matches plan complexity to task complexity (1 step for simple, 3-5 for complex)
|
|
131
|
+
- **Approval bias** — Tech lead only blocks on real functional/security issues, not cosmetic preferences
|
|
132
|
+
- **File overlap detection** — Critic catches parallel merge conflicts before they happen
|
|
114
133
|
|
|
115
|
-
|
|
134
|
+
Custom personas can be added per-project in `.workermill/personas/` or globally in `~/.workermill/personas/`.
|
|
116
135
|
|
|
117
136
|
## Requirements
|
|
118
137
|
|