codesesh 1.0.9 → 1.0.10

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 (37) hide show
  1. package/README.md +3 -0
  2. package/dist/{chunk-MOZLVHCC.js → chunk-2LXZFMSH.js} +10 -2
  3. package/dist/{chunk-MOZLVHCC.js.map → chunk-2LXZFMSH.js.map} +1 -1
  4. package/dist/{chunk-5YY675UR.js → chunk-543OWZIC.js} +2 -2
  5. package/dist/{chunk-CIMPLUT6.js → chunk-56FKVL5K.js} +5 -5
  6. package/dist/{chunk-QFG33PKR.js → chunk-CYZ6OC6J.js} +2 -2
  7. package/dist/{chunk-RDTQ2WPR.js → chunk-DWY4HWVI.js} +2 -2
  8. package/dist/{chunk-ZLU7ODBV.js → chunk-R6QKSHPH.js} +2 -2
  9. package/dist/{chunk-ZDH2BKQK.js → chunk-WRVILHZR.js} +366 -25
  10. package/dist/chunk-WRVILHZR.js.map +1 -0
  11. package/dist/{discovery-MS2ZSMZ5.js → discovery-NTMSA6UE.js} +5 -5
  12. package/dist/index.js +36 -9
  13. package/dist/index.js.map +1 -1
  14. package/dist/project-identity-worker.js +4 -4
  15. package/dist/scan-refresh-worker.js +6 -6
  16. package/dist/search-index-worker.js +6 -6
  17. package/dist/session-detail-worker.js +6 -6
  18. package/dist/smart-tag-worker.js +3 -3
  19. package/dist/web/assets/{DetailLanding-Dgb2Qg8H.js → DetailLanding-D1FLK4EW.js} +1 -1
  20. package/dist/web/assets/{InteractiveReceipt-SckXLiPB.js → InteractiveReceipt-C7FJhzdv.js} +1 -1
  21. package/dist/web/assets/{OverviewScreen-D44AMeDu.js → OverviewScreen-DX7F_6dH.js} +1 -1
  22. package/dist/web/assets/{PrismHighlighter-D7JLjKja.js → PrismHighlighter-DZ2CWVc0.js} +1 -1
  23. package/dist/web/assets/{Projects-DVHOqH2Z.js → Projects-B_7w5TDw.js} +1 -1
  24. package/dist/web/assets/{SearchResultsPanel-B1WEw9Q5.js → SearchResultsPanel-BMBhKuPS.js} +1 -1
  25. package/dist/web/assets/SessionDetail-wJYzzF0i.js +53 -0
  26. package/dist/web/assets/{index-BIpTq_7T.js → index-DUcpWdzX.js} +2 -2
  27. package/dist/web/icon/agent/minimax-code.svg +1 -0
  28. package/dist/web/index.html +1 -1
  29. package/package.json +1 -1
  30. package/dist/chunk-ZDH2BKQK.js.map +0 -1
  31. package/dist/web/assets/SessionDetail-J00I4QfE.js +0 -53
  32. /package/dist/{chunk-5YY675UR.js.map → chunk-543OWZIC.js.map} +0 -0
  33. /package/dist/{chunk-CIMPLUT6.js.map → chunk-56FKVL5K.js.map} +0 -0
  34. /package/dist/{chunk-QFG33PKR.js.map → chunk-CYZ6OC6J.js.map} +0 -0
  35. /package/dist/{chunk-RDTQ2WPR.js.map → chunk-DWY4HWVI.js.map} +0 -0
  36. /package/dist/{chunk-ZLU7ODBV.js.map → chunk-R6QKSHPH.js.map} +0 -0
  37. /package/dist/{discovery-MS2ZSMZ5.js.map → discovery-NTMSA6UE.js.map} +0 -0
package/README.md CHANGED
@@ -58,9 +58,12 @@ Your browser will open at `http://localhost:4521` with all your sessions ready t
58
58
  | DSH | ✅ Supported |
59
59
  | DeepChat | ✅ Supported |
60
60
  | Cherry Studio | ✅ Supported |
61
+ | MiniMax Code | ✅ Supported |
61
62
 
62
63
  <!-- repo-fact:agents:end -->
63
64
 
65
+ MiniMax Code supports CLI 0.4.12 `v2/sqlite/runtime-state.sqlite`, including session trees, reasoning, tools, and usage. Discovery selects the first database under `~/.minimax` or `~/.minimax-code`; `MINIMAX_DATA_DIR` takes precedence over `MAVIS_DATA_DIR`. Refresh detects updates and removals as well as new messages. Media retains available references; legacy ledger layouts and Desktop compatibility are unverified. See the [integration design](../../docs/minimax-code-integration.md).
66
+
64
67
  DeepChat supports the current unencrypted `app_db/agent.db`, including native and ACP sessions.
65
68
  Set `DEEPCHAT_USER_DATA_DIR` to override its user data directory. Legacy `chat.db`,
66
69
  SQLCipher-encrypted databases, and resume commands are not supported. ACP sessions are counted
@@ -1921,7 +1921,7 @@ function normalizeMessageParts(value) {
1921
1921
  });
1922
1922
  }
1923
1923
 
1924
- // ../core/dist/chunk-UEAC7FPA.mjs
1924
+ // ../core/dist/chunk-VOIZHT6Z.mjs
1925
1925
  var AGENT_CATALOG = [
1926
1926
  {
1927
1927
  name: "claudecode",
@@ -1996,6 +1996,14 @@ var AGENT_CATALOG = [
1996
1996
  resumeCommandPrefix: null,
1997
1997
  toolStrategy: "custom"
1998
1998
  },
1999
+ {
2000
+ name: "minimax-code",
2001
+ displayName: "MiniMax Code",
2002
+ icon: "/icon/agent/minimax-code.svg",
2003
+ sourceKind: "sqlite",
2004
+ resumeCommandPrefix: "mcode --session",
2005
+ toolStrategy: "custom"
2006
+ },
1999
2007
  {
2000
2008
  name: "dsh",
2001
2009
  displayName: "DSH",
@@ -2112,4 +2120,4 @@ export {
2112
2120
  AGENT_CATALOG,
2113
2121
  getAgentCatalogEntry
2114
2122
  };
2115
- //# sourceMappingURL=chunk-MOZLVHCC.js.map
2123
+ //# sourceMappingURL=chunk-2LXZFMSH.js.map