Created 10 detailed GitHub issues covering: - Project activation and management UI (#1-2) - Worker node coordination and visualization (#3-4) - Automated GitHub repository scanning (#5) - Intelligent model-to-issue matching (#6) - Multi-model task execution system (#7) - N8N workflow integration (#8) - Hive-Bzzz P2P bridge (#9) - Peer assistance protocol (#10) Each issue includes detailed specifications, acceptance criteria, technical implementation notes, and dependency mapping. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
163 lines
5.1 KiB
JavaScript
163 lines
5.1 KiB
JavaScript
import { printDiffOrStringify } from './diff.js';
|
|
import { f as format, s as stringify } from './chunk-_commonjsHelpers.js';
|
|
import '@vitest/pretty-format';
|
|
import 'tinyrainbow';
|
|
import './helpers.js';
|
|
import 'loupe';
|
|
|
|
const IS_RECORD_SYMBOL = "@@__IMMUTABLE_RECORD__@@";
|
|
const IS_COLLECTION_SYMBOL = "@@__IMMUTABLE_ITERABLE__@@";
|
|
function isImmutable(v) {
|
|
return v && (v[IS_COLLECTION_SYMBOL] || v[IS_RECORD_SYMBOL]);
|
|
}
|
|
const OBJECT_PROTO = Object.getPrototypeOf({});
|
|
function getUnserializableMessage(err) {
|
|
if (err instanceof Error) {
|
|
return `<unserializable>: ${err.message}`;
|
|
}
|
|
if (typeof err === "string") {
|
|
return `<unserializable>: ${err}`;
|
|
}
|
|
return "<unserializable>";
|
|
}
|
|
// https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm
|
|
function serializeValue(val, seen = new WeakMap()) {
|
|
if (!val || typeof val === "string") {
|
|
return val;
|
|
}
|
|
if (val instanceof Error && "toJSON" in val && typeof val.toJSON === "function") {
|
|
const jsonValue = val.toJSON();
|
|
if (jsonValue && jsonValue !== val && typeof jsonValue === "object") {
|
|
if (typeof val.message === "string") {
|
|
safe(() => jsonValue.message ?? (jsonValue.message = val.message));
|
|
}
|
|
if (typeof val.stack === "string") {
|
|
safe(() => jsonValue.stack ?? (jsonValue.stack = val.stack));
|
|
}
|
|
if (typeof val.name === "string") {
|
|
safe(() => jsonValue.name ?? (jsonValue.name = val.name));
|
|
}
|
|
if (val.cause != null) {
|
|
safe(() => jsonValue.cause ?? (jsonValue.cause = serializeValue(val.cause, seen)));
|
|
}
|
|
}
|
|
return serializeValue(jsonValue, seen);
|
|
}
|
|
if (typeof val === "function") {
|
|
return `Function<${val.name || "anonymous"}>`;
|
|
}
|
|
if (typeof val === "symbol") {
|
|
return val.toString();
|
|
}
|
|
if (typeof val !== "object") {
|
|
return val;
|
|
}
|
|
if (typeof Buffer !== "undefined" && val instanceof Buffer) {
|
|
return `<Buffer(${val.length}) ...>`;
|
|
}
|
|
if (typeof Uint8Array !== "undefined" && val instanceof Uint8Array) {
|
|
return `<Uint8Array(${val.length}) ...>`;
|
|
}
|
|
// cannot serialize immutables as immutables
|
|
if (isImmutable(val)) {
|
|
return serializeValue(val.toJSON(), seen);
|
|
}
|
|
if (val instanceof Promise || val.constructor && val.constructor.prototype === "AsyncFunction") {
|
|
return "Promise";
|
|
}
|
|
if (typeof Element !== "undefined" && val instanceof Element) {
|
|
return val.tagName;
|
|
}
|
|
if (typeof val.asymmetricMatch === "function") {
|
|
return `${val.toString()} ${format(val.sample)}`;
|
|
}
|
|
if (typeof val.toJSON === "function") {
|
|
return serializeValue(val.toJSON(), seen);
|
|
}
|
|
if (seen.has(val)) {
|
|
return seen.get(val);
|
|
}
|
|
if (Array.isArray(val)) {
|
|
// eslint-disable-next-line unicorn/no-new-array -- we need to keep sparse arrays ([1,,3])
|
|
const clone = new Array(val.length);
|
|
seen.set(val, clone);
|
|
val.forEach((e, i) => {
|
|
try {
|
|
clone[i] = serializeValue(e, seen);
|
|
} catch (err) {
|
|
clone[i] = getUnserializableMessage(err);
|
|
}
|
|
});
|
|
return clone;
|
|
} else {
|
|
// Objects with `Error` constructors appear to cause problems during worker communication
|
|
// using `MessagePort`, so the serialized error object is being recreated as plain object.
|
|
const clone = Object.create(null);
|
|
seen.set(val, clone);
|
|
let obj = val;
|
|
while (obj && obj !== OBJECT_PROTO) {
|
|
Object.getOwnPropertyNames(obj).forEach((key) => {
|
|
if (key in clone) {
|
|
return;
|
|
}
|
|
try {
|
|
clone[key] = serializeValue(val[key], seen);
|
|
} catch (err) {
|
|
// delete in case it has a setter from prototype that might throw
|
|
delete clone[key];
|
|
clone[key] = getUnserializableMessage(err);
|
|
}
|
|
});
|
|
obj = Object.getPrototypeOf(obj);
|
|
}
|
|
return clone;
|
|
}
|
|
}
|
|
function safe(fn) {
|
|
try {
|
|
return fn();
|
|
} catch {}
|
|
}
|
|
function normalizeErrorMessage(message) {
|
|
return message.replace(/__(vite_ssr_import|vi_import)_\d+__\./g, "");
|
|
}
|
|
function processError(_err, diffOptions, seen = new WeakSet()) {
|
|
if (!_err || typeof _err !== "object") {
|
|
return { message: String(_err) };
|
|
}
|
|
const err = _err;
|
|
if (err.showDiff || err.showDiff === undefined && err.expected !== undefined && err.actual !== undefined) {
|
|
err.diff = printDiffOrStringify(err.actual, err.expected, {
|
|
...diffOptions,
|
|
...err.diffOptions
|
|
});
|
|
}
|
|
if ("expected" in err && typeof err.expected !== "string") {
|
|
err.expected = stringify(err.expected, 10);
|
|
}
|
|
if ("actual" in err && typeof err.actual !== "string") {
|
|
err.actual = stringify(err.actual, 10);
|
|
}
|
|
// some Error implementations don't allow rewriting message
|
|
try {
|
|
if (typeof err.message === "string") {
|
|
err.message = normalizeErrorMessage(err.message);
|
|
}
|
|
} catch {}
|
|
// some Error implementations may not allow rewriting cause
|
|
// in most cases, the assignment will lead to "err.cause = err.cause"
|
|
try {
|
|
if (!seen.has(err) && typeof err.cause === "object") {
|
|
seen.add(err);
|
|
err.cause = processError(err.cause, diffOptions, seen);
|
|
}
|
|
} catch {}
|
|
try {
|
|
return serializeValue(err);
|
|
} catch (e) {
|
|
return serializeValue(new Error(`Failed to fully serialize error: ${e === null || e === void 0 ? void 0 : e.message}\nInner error message: ${err === null || err === void 0 ? void 0 : err.message}`));
|
|
}
|
|
}
|
|
|
|
export { processError, serializeValue as serializeError, serializeValue };
|