infra-kit 0.1.111 → 0.1.113

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 (85) hide show
  1. package/.eslintcache +1 -1
  2. package/.omc/state/agent-replay-127837d3-a000-4656-9453-2324ab353723.jsonl +5 -0
  3. package/.omc/state/agent-replay-15c409af-24fa-4026-88d3-a82dd1e68b87.jsonl +11 -0
  4. package/.omc/state/agent-replay-74afa912-1443-4011-b4f2-db9f055cdd9f.jsonl +3 -0
  5. package/.omc/state/agent-replay-8dd0ad2f-3a90-4158-b9de-ec8e19a7c983.jsonl +3 -0
  6. package/.omc/state/idle-notif-cooldown.json +1 -1
  7. package/.omc/state/sessions/127837d3-a000-4656-9453-2324ab353723/mission-state.json +61 -0
  8. package/.omc/state/sessions/127837d3-a000-4656-9453-2324ab353723/pre-tool-advisory-throttle.json +22 -0
  9. package/.omc/state/sessions/127837d3-a000-4656-9453-2324ab353723/skill-active-state.json +15 -0
  10. package/.omc/state/sessions/127837d3-a000-4656-9453-2324ab353723/subagent-tracking-state.json +26 -0
  11. package/.omc/state/sessions/15c409af-24fa-4026-88d3-a82dd1e68b87/last-tool-error-state.json +7 -0
  12. package/.omc/state/sessions/15c409af-24fa-4026-88d3-a82dd1e68b87/mission-state.json +89 -0
  13. package/.omc/state/sessions/15c409af-24fa-4026-88d3-a82dd1e68b87/pre-tool-advisory-throttle.json +34 -0
  14. package/.omc/state/sessions/15c409af-24fa-4026-88d3-a82dd1e68b87/ralph-state.json +13 -0
  15. package/.omc/state/sessions/15c409af-24fa-4026-88d3-a82dd1e68b87/skill-active-state.json +15 -0
  16. package/.omc/state/sessions/15c409af-24fa-4026-88d3-a82dd1e68b87/subagent-tracking-state.json +44 -0
  17. package/.omc/state/sessions/15c409af-24fa-4026-88d3-a82dd1e68b87/ultrawork-state.json +11 -0
  18. package/.omc/state/sessions/74afa912-1443-4011-b4f2-db9f055cdd9f/pre-tool-advisory-throttle.json +18 -0
  19. package/.omc/state/sessions/74afa912-1443-4011-b4f2-db9f055cdd9f/skill-active-state.json +15 -0
  20. package/.omc/state/sessions/74afa912-1443-4011-b4f2-db9f055cdd9f/subagent-tracking-state.json +17 -0
  21. package/.omc/state/sessions/8dd0ad2f-3a90-4158-b9de-ec8e19a7c983/pre-tool-advisory-throttle.json +14 -0
  22. package/.omc/state/sessions/8dd0ad2f-3a90-4158-b9de-ec8e19a7c983/ralph-state.json +13 -0
  23. package/.omc/state/sessions/8dd0ad2f-3a90-4158-b9de-ec8e19a7c983/subagent-tracking-state.json +17 -0
  24. package/.omc/state/sessions/8dd0ad2f-3a90-4158-b9de-ec8e19a7c983/ultrawork-state.json +11 -0
  25. package/.turbo/turbo-build.log +3 -4
  26. package/.turbo/turbo-eslint-check.log +1 -2
  27. package/.turbo/turbo-prettier-check.log +1 -2
  28. package/.turbo/turbo-prettier-fix.log +1 -2
  29. package/.turbo/turbo-test.log +25 -18
  30. package/.turbo/turbo-ts-check.log +1 -2
  31. package/dist/cli.js +64 -56
  32. package/dist/cli.js.map +4 -4
  33. package/dist/mcp.js +39 -39
  34. package/dist/mcp.js.map +4 -4
  35. package/package.json +1 -1
  36. package/src/.omc/state/agent-replay-8dd0ad2f-3a90-4158-b9de-ec8e19a7c983.jsonl +11 -0
  37. package/src/.omc/state/idle-notif-cooldown.json +3 -0
  38. package/src/.omc/state/sessions/8dd0ad2f-3a90-4158-b9de-ec8e19a7c983/mission-state.json +79 -0
  39. package/src/.omc/state/sessions/8dd0ad2f-3a90-4158-b9de-ec8e19a7c983/pre-tool-advisory-throttle.json +22 -0
  40. package/src/.omc/state/sessions/8dd0ad2f-3a90-4158-b9de-ec8e19a7c983/ralph-state.json +13 -0
  41. package/src/.omc/state/sessions/8dd0ad2f-3a90-4158-b9de-ec8e19a7c983/subagent-tracking-state.json +26 -0
  42. package/src/.omc/state/sessions/8dd0ad2f-3a90-4158-b9de-ec8e19a7c983/ultrawork-state.json +11 -0
  43. package/src/commands/doctor/.omc/state/sessions/8dd0ad2f-3a90-4158-b9de-ec8e19a7c983/pre-tool-advisory-throttle.json +14 -0
  44. package/src/commands/doctor/__tests__/check-ide-installed.test.ts +142 -0
  45. package/src/commands/doctor/doctor.ts +98 -1
  46. package/src/commands/gh-release-deliver/gh-release-deliver.ts +32 -1
  47. package/src/commands/init/.omc/state/sessions/8dd0ad2f-3a90-4158-b9de-ec8e19a7c983/pre-tool-advisory-throttle.json +18 -0
  48. package/src/commands/init/__tests__/migrate-config.test.ts +132 -1
  49. package/src/commands/init/init.ts +19 -6
  50. package/src/commands/init/migrate-config.ts +104 -0
  51. package/src/commands/worktrees-add/index.ts +1 -2
  52. package/src/commands/worktrees-add/worktrees-add.ts +24 -60
  53. package/src/commands/worktrees-open/worktrees-open.ts +55 -68
  54. package/src/commands/worktrees-reload/__tests__/reload-cmux.test.ts +119 -0
  55. package/src/commands/worktrees-reload/index.ts +1 -0
  56. package/src/commands/worktrees-reload/worktrees-reload.ts +229 -0
  57. package/src/commands/worktrees-remove/worktrees-remove.ts +2 -44
  58. package/src/commands/worktrees-sync/worktrees-sync.ts +2 -44
  59. package/src/entry/cli.ts +32 -11
  60. package/src/integrations/cursor/index.ts +1 -0
  61. package/src/integrations/cursor/open-cursor-workspace.ts +70 -0
  62. package/src/integrations/ide/__tests__/ide-facade.test.ts +242 -0
  63. package/src/integrations/ide/add-ide-worktree-folders.ts +79 -0
  64. package/src/integrations/ide/index.ts +6 -0
  65. package/src/integrations/ide/open-ide-workspace.ts +51 -0
  66. package/src/integrations/ide/provider-label.ts +24 -0
  67. package/src/integrations/ide/remove-ide-worktree-folders.ts +80 -0
  68. package/src/integrations/ide/types.ts +32 -0
  69. package/src/integrations/zed/__tests__/open-zed-workspace.test.ts +85 -0
  70. package/src/integrations/zed/add-folders-to-zed-workspace.ts +30 -0
  71. package/src/integrations/zed/index.ts +2 -0
  72. package/src/integrations/zed/open-zed-workspace.ts +57 -0
  73. package/src/lib/assert-never/assert-never.ts +15 -0
  74. package/src/lib/assert-never/index.ts +1 -0
  75. package/src/lib/git-utils/__tests__/git-primitives.test.ts +122 -1
  76. package/src/lib/git-utils/git-utils.ts +35 -0
  77. package/src/lib/git-utils/index.ts +2 -0
  78. package/src/lib/infra-kit-config/.omc/state/sessions/8dd0ad2f-3a90-4158-b9de-ec8e19a7c983/pre-tool-advisory-throttle.json +18 -0
  79. package/src/lib/infra-kit-config/__tests__/infra-kit-config.test.ts +172 -9
  80. package/src/lib/infra-kit-config/index.ts +2 -1
  81. package/src/lib/infra-kit-config/infra-kit-config.ts +80 -22
  82. package/src/lib/package-config/.omc/state/sessions/dde22a92-a0e9-4948-905d-25c9a812ab35/last-tool-error-state.json +7 -0
  83. package/src/lib/package-config/.omc/state/sessions/dde22a92-a0e9-4948-905d-25c9a812ab35/pre-tool-advisory-throttle.json +10 -0
  84. package/src/mcp/tools/index.ts +2 -0
  85. package/tsconfig.tsbuildinfo +1 -1
@@ -0,0 +1,7 @@
1
+ {
2
+ "tool_name": "Bash",
3
+ "tool_input_preview": "{\"command\":\"rtk ls -1 infra-kit.config.ts apps/*/*/infra-kit.config.* packages/*/infra-kit.config.* vendor/packages/*/infra-kit.config.* vendor/configs/*/infra-kit.config.* 2>/dev/null\",\"description\":...",
4
+ "error": "Exit code 1\n(eval):1: no matches found: apps/*/*/infra-kit.config.*",
5
+ "timestamp": "2026-06-20T09:23:27.849Z",
6
+ "retry_count": 1
7
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "version": 1,
3
+ "entries": {
4
+ "79a93d4a2f8f50b95f852280616242fee1855dc99a3c75211917f55e72e95fae": {
5
+ "last_emitted_at_ms": 1781947394826,
6
+ "message": "Use parallel execution for independent tasks. Use run_in_background for long operations (npm install, builds, tests)."
7
+ }
8
+ },
9
+ "updated_at": "2026-06-20T09:23:14.826Z"
10
+ }
@@ -16,6 +16,7 @@ import { versionMcpTool } from 'src/commands/version'
16
16
  import { worktreesAddMcpTool } from 'src/commands/worktrees-add'
17
17
  import { worktreesListMcpTool } from 'src/commands/worktrees-list'
18
18
  import { worktreesOpenMcpTool } from 'src/commands/worktrees-open'
19
+ import { worktreesReloadMcpTool } from 'src/commands/worktrees-reload'
19
20
  import { worktreesRemoveMcpTool } from 'src/commands/worktrees-remove'
20
21
  import { worktreesSyncMcpTool } from 'src/commands/worktrees-sync'
21
22
  import { createToolHandler } from 'src/lib/tool-handler'
@@ -37,6 +38,7 @@ const tools = [
37
38
  worktreesAddMcpTool,
38
39
  worktreesListMcpTool,
39
40
  worktreesOpenMcpTool,
41
+ worktreesReloadMcpTool,
40
42
  worktreesRemoveMcpTool,
41
43
  worktreesSyncMcpTool,
42
44
  ]