workermill 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -942,7 +942,7 @@ Focus on writing clean, production-ready code.`;
942
942
  }
943
943
 
944
944
  // src/index.ts
945
- var VERSION = "0.1.0";
945
+ var VERSION = "0.1.1";
946
946
  var program = new Command().name("workermill").description("AI coding agent with multi-expert orchestration").version(VERSION).option("--provider <provider>", "Override default provider").option("--model <model>", "Override model").option("--trust", "Skip all tool permission prompts").option("--resume", "Resume the last conversation").option("--plan", "Start in plan mode (read-only tools)").option("--auto-revise", "Auto-revise on failed reviews without prompting").option("--max-revisions <n>", "Max review\u2192revise cycles (default: 2)", parseInt).option("--critic", "Run separate critic pass on plan before execution").option("--full-disk", "Allow tools to access files outside working directory (default: restricted to cwd)").action(async (options) => {
947
947
  let config = loadConfig();
948
948
  if (!config) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "workermill",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "AI coding agent with multi-expert orchestration. Works with any LLM provider.",
5
5
  "type": "module",
6
6
  "bin": {