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 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
- "architect": "anthropic",
103
- "reviewer": "anthropic"
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
- ## 15 Built-in Personas
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
- architect, backend_developer, frontend_developer, fullstack_developer, devops_engineer, qa_engineer, security_engineer, database_engineer, mobile_developer, data_engineer, ml_engineer, tech_writer, tech_lead, planner, critic
134
+ Custom personas can be added per-project in `.workermill/personas/` or globally in `~/.workermill/personas/`.
116
135
 
117
136
  ## Requirements
118
137