@h-rig/cli 0.0.6-alpha.4 → 0.0.6-alpha.40

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 (47) hide show
  1. package/dist/bin/rig.js +3947 -1190
  2. package/dist/src/commands/_cli-format.js +369 -0
  3. package/dist/src/commands/_connection-state.js +1 -3
  4. package/dist/src/commands/_doctor-checks.js +13 -27
  5. package/dist/src/commands/_help-catalog.js +445 -0
  6. package/dist/src/commands/_operator-surface.js +220 -0
  7. package/dist/src/commands/_operator-view.js +942 -56
  8. package/dist/src/commands/_parsers.js +0 -2
  9. package/dist/src/commands/_pi-frontend.js +906 -0
  10. package/dist/src/commands/_pi-install.js +4 -3
  11. package/dist/src/commands/_pi-worker-bridge-extension.js +826 -0
  12. package/dist/src/commands/_policy.js +0 -2
  13. package/dist/src/commands/_preflight.js +32 -109
  14. package/dist/src/commands/_run-driver-helpers.js +21 -2
  15. package/dist/src/commands/_server-client.js +152 -31
  16. package/dist/src/commands/_snapshot-upload.js +8 -23
  17. package/dist/src/commands/_task-picker.js +44 -16
  18. package/dist/src/commands/agent.js +8 -9
  19. package/dist/src/commands/browser.js +4 -6
  20. package/dist/src/commands/connect.js +132 -25
  21. package/dist/src/commands/dist.js +4 -6
  22. package/dist/src/commands/doctor.js +13 -27
  23. package/dist/src/commands/github.js +10 -25
  24. package/dist/src/commands/inbox.js +351 -31
  25. package/dist/src/commands/init.js +298 -71
  26. package/dist/src/commands/inspect.js +237 -23
  27. package/dist/src/commands/inspector.js +2 -4
  28. package/dist/src/commands/pi.js +168 -0
  29. package/dist/src/commands/plugin.js +81 -22
  30. package/dist/src/commands/profile-and-review.js +8 -10
  31. package/dist/src/commands/queue.js +2 -3
  32. package/dist/src/commands/remote.js +18 -20
  33. package/dist/src/commands/repo-git-harness.js +6 -8
  34. package/dist/src/commands/run.js +1240 -123
  35. package/dist/src/commands/server.js +222 -33
  36. package/dist/src/commands/setup.js +17 -37
  37. package/dist/src/commands/task-report-bug.js +5 -7
  38. package/dist/src/commands/task-run-driver.js +649 -71
  39. package/dist/src/commands/task.js +1679 -252
  40. package/dist/src/commands/test.js +3 -5
  41. package/dist/src/commands/workspace.js +4 -6
  42. package/dist/src/commands.js +3927 -1164
  43. package/dist/src/index.js +3940 -1186
  44. package/dist/src/launcher.js +5 -3
  45. package/dist/src/report-bug.js +3 -3
  46. package/dist/src/runner.js +5 -19
  47. package/package.json +6 -4
@@ -9,8 +9,6 @@ import { resolve } from "path";
9
9
  import { EventBus } from "@rig/runtime/control-plane/runtime/events";
10
10
  import { CliError } from "@rig/runtime/control-plane/errors";
11
11
  import { evaluate, loadPolicy, resolveAction } from "@rig/runtime/control-plane/runtime/guard";
12
- import { PluginManager } from "@rig/runtime/control-plane/runtime/plugins";
13
- import { loadRuntimeContextFromEnv } from "@rig/runtime/control-plane/runtime/context";
14
12
  import { buildBinary } from "@rig/runtime/control-plane/runtime/isolation";
15
13
  import { CliError as CliError2 } from "@rig/runtime/control-plane/errors";
16
14