@gaberrb/polypus 0.4.19 → 0.4.21

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/dist/index.js CHANGED
@@ -211,7 +211,7 @@ var en = {
211
211
  ].join("\n"),
212
212
  // swarm
213
213
  "swarm.noAgents": "No agents configured. Run `polypus setup` or `polypus add-agent` first.",
214
- "swarm.needsAgents": "Swarm mode needs at least {min} configured agents (you have {have}). Add more with `polypus add-agent`, or use `polypus run` for a single agent.",
214
+ "swarm.needsAgents": "Swarm mode needs at least {min} configured agent (you have {have}). Add more with `polypus add-agent`, or use `polypus run` for a single agent.",
215
215
  "swarm.status": "swarm agents=[{agents}] workspace={workspace}",
216
216
  "swarm.bypassNote": "Workers run in bypass mode inside isolated git worktrees; branches are merged at the end.",
217
217
  "swarm.cancelling": "cancelling swarm \u2014 finishing in-flight workers, then merging what committed\u2026",
@@ -481,7 +481,7 @@ var ptBR = {
481
481
  "Qualquer outra coisa \xE9 enviada ao agente como tarefa."
482
482
  ].join("\n"),
483
483
  "swarm.noAgents": "Nenhum agente configurado. Rode `polypus setup` ou `polypus add-agent` primeiro.",
484
- "swarm.needsAgents": "O modo swarm precisa de pelo menos {min} agentes configurados (voc\xEA tem {have}). Adicione mais com `polypus add-agent`, ou use `polypus run` para um agente s\xF3.",
484
+ "swarm.needsAgents": "O modo swarm precisa de pelo menos {min} agente configurado (voc\xEA tem {have}). Adicione mais com `polypus add-agent`, ou use `polypus run` para um agente s\xF3.",
485
485
  "swarm.status": "swarm agentes=[{agents}] workspace={workspace}",
486
486
  "swarm.bypassNote": "Os workers rodam em modo bypass dentro de git worktrees isoladas; os branches s\xE3o mesclados no final.",
487
487
  "swarm.cancelling": "cancelando o swarm \u2014 encerrando os workers em andamento e mesclando o que commitou\u2026",
@@ -4275,7 +4275,7 @@ function listenForCancel(controller) {
4275
4275
  }
4276
4276
 
4277
4277
  // src/cli/commands/swarm.ts
4278
- var MIN_SWARM_AGENTS = 3;
4278
+ var MIN_SWARM_AGENTS = 1;
4279
4279
  function canSwarm(agentCount) {
4280
4280
  return agentCount >= MIN_SWARM_AGENTS;
4281
4281
  }