evil-omo 3.11.7 → 3.12.2

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 (29) hide show
  1. package/dist/cli/config-manager/bun-install.d.ts +2 -0
  2. package/dist/cli/index.js +302 -182
  3. package/dist/config/schema/background-task.d.ts +6 -0
  4. package/dist/config/schema/evil-omo-config.d.ts +6 -0
  5. package/dist/config/schema/hooks.d.ts +1 -0
  6. package/dist/create-hooks.d.ts +1 -0
  7. package/dist/evil-omo.schema.json +24 -0
  8. package/dist/features/background-agent/constants.d.ts +5 -1
  9. package/dist/features/background-agent/loop-detector.d.ts +16 -0
  10. package/dist/features/background-agent/manager.d.ts +1 -0
  11. package/dist/features/background-agent/session-status-classifier.d.ts +2 -0
  12. package/dist/features/background-agent/types.d.ts +7 -0
  13. package/dist/features/builtin-commands/templates/start-work.d.ts +1 -1
  14. package/dist/hooks/index.d.ts +1 -0
  15. package/dist/hooks/ralph-loop/pending-verification-handler.d.ts +1 -0
  16. package/dist/hooks/todo-continuation-enforcer/session-state.d.ts +1 -1
  17. package/dist/hooks/todo-description-override/description.d.ts +1 -0
  18. package/dist/hooks/todo-description-override/hook.d.ts +8 -0
  19. package/dist/hooks/todo-description-override/index.d.ts +1 -0
  20. package/dist/index.js +988 -509
  21. package/dist/plugin/hooks/create-core-hooks.d.ts +1 -0
  22. package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +2 -1
  23. package/dist/shared/connected-providers-cache.d.ts +26 -29
  24. package/dist/shared/plugin-identity.d.ts +2 -1
  25. package/dist/shared/shell-env.d.ts +27 -0
  26. package/dist/tools/delegate-task/model-selection.d.ts +2 -0
  27. package/dist/tools/hashline-edit/tool-description.d.ts +1 -1
  28. package/dist/tools/look-at/constants.d.ts +1 -1
  29. package/package.json +12 -12
@@ -1,6 +1,8 @@
1
1
  type BunInstallOutputMode = "inherit" | "pipe";
2
2
  interface RunBunInstallOptions {
3
3
  outputMode?: BunInstallOutputMode;
4
+ /** Workspace directory to install to. Defaults to cache dir if not provided. */
5
+ workspaceDir?: string;
4
6
  }
5
7
  export interface BunInstallResult {
6
8
  success: boolean;