workspacecord 1.1.2 → 1.1.4

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 (26) hide show
  1. package/dist/{archive-manager-XM3UPOY2.js → archive-manager-FJU7YEEH.js} +4 -4
  2. package/dist/{attachment-cli-IGQBB6YJ.js → attachment-cli-AT4HXAGU.js} +2 -2
  3. package/dist/{chunk-54DP53ZK.js → chunk-5EMN2IL5.js} +29 -3
  4. package/dist/{chunk-L2ZJXV6H.js → chunk-66B64WL3.js} +1 -1
  5. package/dist/{chunk-QWPKAUSV.js → chunk-C4L34VJK.js} +8287 -7421
  6. package/dist/chunk-JR4B4L7I.js +5301 -0
  7. package/dist/{chunk-UEX7U2KW.js → chunk-MJ5JKFGS.js} +911 -232
  8. package/dist/{chunk-ZAQV2RZS.js → chunk-NNTMVOTM.js} +1054 -1310
  9. package/dist/{chunk-COXPTYH5.js → chunk-PWMEOBXG.js} +4 -4
  10. package/dist/{chunk-I6EOCCQV.js → chunk-SNPFYUQ3.js} +713 -628
  11. package/dist/{chunk-GMYN4SYT.js → chunk-SV7EHL3B.js} +3 -3
  12. package/dist/cli-framework-YF3LPLMT.js +18 -0
  13. package/dist/cli.js +10 -10
  14. package/dist/{codex-launcher-VDQ5VZPT.js → codex-launcher-CLGG4CVY.js} +1 -1
  15. package/dist/{codex-provider-NYI7KBGO.js → codex-provider-VLOS5QB6.js} +18 -4
  16. package/dist/{config-cli-RQR2ZRQ5.js → config-cli-7G5YWKJU.js} +2 -2
  17. package/dist/{panel-adapter-QTDL3S6O.js → panel-adapter-CLI4WDII.js} +4 -4
  18. package/dist/{project-cli-6P6ZWDR6.js → project-cli-ALKDLRMZ.js} +2 -2
  19. package/dist/{project-registry-OEVPECMS.js → project-registry-ZO3KSS25.js} +2 -2
  20. package/dist/sdk-C3D6X4EB.js +55 -0
  21. package/dist/{session-local-registration-RIO5EPZ5.js → session-local-registration-RL2A3QZB.js} +3 -3
  22. package/dist/{setup-KOS7SRSL.js → setup-GP3MML2R.js} +1 -1
  23. package/package.json +3 -3
  24. package/dist/chunk-RK6EIZOL.js +0 -589
  25. package/dist/cli-framework-SQM2465A.js +0 -18
  26. package/dist/sdk-V7A7IF7F.js +0 -43
@@ -3,10 +3,10 @@ import {
3
3
  createSession,
4
4
  getSessionByProviderSession,
5
5
  updateSession
6
- } from "./chunk-RK6EIZOL.js";
6
+ } from "./chunk-JR4B4L7I.js";
7
7
  import {
8
8
  resolvePath
9
- } from "./chunk-UEX7U2KW.js";
9
+ } from "./chunk-MJ5JKFGS.js";
10
10
 
11
11
  // ../bot/src/session-local-registration.ts
12
12
  import { sep } from "path";
@@ -33,7 +33,7 @@ async function registerLocalSession(params, guild) {
33
33
  } = params;
34
34
  const effectiveProviderSessionId = provider === "claude" && subagent?.parentProviderSessionId && subagent.agentId ? buildClaudeSubagentProviderSessionId(subagent.parentProviderSessionId, subagent.agentId) : providerSessionId;
35
35
  const effectiveAgentLabel = subagent?.agentType || labelHint || effectiveProviderSessionId.slice(0, 12);
36
- const { isArchivedProviderSession } = await import("./archive-manager-XM3UPOY2.js");
36
+ const { isArchivedProviderSession } = await import("./archive-manager-FJU7YEEH.js");
37
37
  if (isArchivedProviderSession(provider, effectiveProviderSessionId)) {
38
38
  console.log(
39
39
  `[registerLocalSession] Skip archived ${provider} session ${effectiveProviderSessionId} (source: ${discoverySource})`
@@ -45,7 +45,7 @@ async function registerLocalSession(params, guild) {
45
45
  updateLocalObservation(existing.id, { discoverySource, cwd, remoteHumanControl });
46
46
  return { session: existing, isNewlyCreated: false };
47
47
  }
48
- const { getProjectByPath, getAllRegisteredProjects } = await import("./project-registry-OEVPECMS.js");
48
+ const { getProjectByPath, getAllRegisteredProjects } = await import("./project-registry-ZO3KSS25.js");
49
49
  const { ChannelType, ThreadAutoArchiveDuration } = await import("discord.js");
50
50
  const normalizedCwd = resolvePath(cwd);
51
51
  let project = getProjectByPath(normalizedCwd);