hypha-debugger 0.1.0 → 0.1.1

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.
@@ -36,7 +36,24 @@ export declare class HyphaDebugger {
36
36
  constructor(config: DebuggerConfig);
37
37
  start(): Promise<DebugSession>;
38
38
  destroy(): Promise<void>;
39
+ /**
40
+ * Generate token, build service URL, update overlay instructions, and
41
+ * return a DebugSession.
42
+ */
43
+ private updateSession;
44
+ /**
45
+ * Build a stable, predictable service URL.
46
+ * Strips the clientId prefix so the URL uses only the bare service name.
47
+ * Callers append ?_mode=last to resolve the most recent instance.
48
+ */
39
49
  private buildServiceUrl;
50
+ private getHyphaModule;
40
51
  private getConnectToServer;
52
+ private buildServiceDefinition;
53
+ private createGetSkillMd;
54
+ /** Build the instruction block for the overlay panel. */
55
+ private buildInstructionBlock;
56
+ /** Wrap a service function with logging and kwargs-to-positional-args support. */
57
+ private wrapFn;
41
58
  private summarizeArgs;
42
59
  }