cc-claw 0.3.10 → 0.4.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.
@@ -72,7 +72,7 @@ Typical workflow:
72
72
  description: z.string().optional().describe("Short description of what this agent does"),
73
73
  model: z.string().optional().describe("Model override for the sub-agent"),
74
74
  skills: z.array(z.string()).optional().describe("Skills to inject into the sub-agent"),
75
- permMode: z.string().optional().describe("Permission mode: yolo, safe, readonly, plan (defaults to chat's mode)"),
75
+ permMode: z.string().optional().describe("Permission mode: yolo, safe, plan (defaults to chat's mode)"),
76
76
  role: z.string().optional().describe("Agent role. Presets: worker, reviewer, planner, researcher, writer, analyst, debugger, critic, synthesizer. Custom roles accepted as labels."),
77
77
  persona: z.string().optional().describe("Custom system prompt for the agent. Replaces the role's default prompt while preserving orchestrator tools and task."),
78
78
  allowedTools: z.array(z.string()).optional().describe("Restrict agent to specific tools (Claude-only). E.g., ['Read', 'Grep', 'Glob']"),