workermill 0.1.9 → 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 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,9 @@ 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
114
123
 
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
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