different-ai/openwork · error

GitHub discovery response was incomplete.

Error message

GitHub discovery response was incomplete.

What it means

Error "GitHub discovery response was incomplete." thrown in different-ai/openwork.

Source

Thrown at ee/apps/den-web/app/(den)/dashboard/_components/integration-data.tsx:773

        : [];
      const treeSummary = item && isRecord(item.treeSummary)
        ? {
            scannedEntryCount: typeof item.treeSummary.scannedEntryCount === "number" ? item.treeSummary.scannedEntryCount : 0,
            strategy: asString(item.treeSummary.strategy) ?? "git-tree-recursive",
            truncated: Boolean(item.treeSummary.truncated),
          }
        : { scannedEntryCount: 0, strategy: "git-tree-recursive", truncated: false };
      const warnings = item && Array.isArray(item.warnings)
        ? item.warnings.flatMap((entry) => {
            const normalized = asString(entry);
            return normalized ? [normalized] : [];
          })
        : [];

      const autoImportNewPlugins = item ? Boolean(item.autoImportNewPlugins) : false;

      if (!connectorInstanceIdValue || !connectorTargetId || !repositoryFullName || !sourceRevisionRef || !classification) {
        throw new Error("GitHub discovery response was incomplete.");
      }

      return {
        autoImportNewPlugins,
        classification,
        connectorInstanceId: connectorInstanceIdValue,
        connectorTargetId,
        discoveredPlugins,
        repositoryFullName,
        sourceRevisionRef,
        steps,
        treeSummary,
        warnings,
      };
    },
  });
}

View on GitHub (pinned to 2b7df46e8a)

When it happens

Trigger: Thrown at ee/apps/den-web/app/(den)/dashboard/_components/integration-data.tsx:773 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of different-ai/openwork@2b7df46e8a (2026-09-01). Data as JSON: /api/errors/02229a1fe01987b5. Report an issue: GitHub.