nexus-agents 2.81.1 → 2.81.2
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.
- package/dist/{chunk-VTSGQFEZ.js → chunk-37ZXD5B6.js} +33 -3
- package/dist/{chunk-VTSGQFEZ.js.map → chunk-37ZXD5B6.js.map} +1 -1
- package/dist/{chunk-ZE7DKR6I.js → chunk-6KO6LO3L.js} +3 -3
- package/dist/{chunk-E7R2OSEQ.js → chunk-MRCURXAX.js} +2 -2
- package/dist/cli.js +3 -3
- package/dist/index.js +2 -2
- package/dist/{setup-command-TTBRUSP7.js → setup-command-JBTK3LGD.js} +3 -3
- package/package.json +1 -1
- /package/dist/{chunk-ZE7DKR6I.js.map → chunk-6KO6LO3L.js.map} +0 -0
- /package/dist/{chunk-E7R2OSEQ.js.map → chunk-MRCURXAX.js.map} +0 -0
- /package/dist/{setup-command-TTBRUSP7.js.map → setup-command-JBTK3LGD.js.map} +0 -0
|
@@ -77,7 +77,7 @@ import {
|
|
|
77
77
|
DEFAULT_TASK_TTL_MS,
|
|
78
78
|
DEFAULT_TOOL_RATE_LIMITS,
|
|
79
79
|
clampTaskTtl
|
|
80
|
-
} from "./chunk-
|
|
80
|
+
} from "./chunk-6KO6LO3L.js";
|
|
81
81
|
import {
|
|
82
82
|
getAvailabilityCache,
|
|
83
83
|
resolveFallback
|
|
@@ -36374,6 +36374,36 @@ function createRegistryError(code, message, paperId, cause) {
|
|
|
36374
36374
|
}
|
|
36375
36375
|
return error;
|
|
36376
36376
|
}
|
|
36377
|
+
function paperEntryToResearchPaper(entry) {
|
|
36378
|
+
return {
|
|
36379
|
+
title: entry.title,
|
|
36380
|
+
authors: [...entry.authors],
|
|
36381
|
+
source: entry.source,
|
|
36382
|
+
arxiv_id: entry.arxiv_id,
|
|
36383
|
+
url: entry.url,
|
|
36384
|
+
publication_date: entry.publication_date,
|
|
36385
|
+
venue: entry.venue,
|
|
36386
|
+
topics: [...entry.topics],
|
|
36387
|
+
tags: [...entry.tags],
|
|
36388
|
+
reviewed_date: entry.reviewed_date,
|
|
36389
|
+
reviewed_in: entry.reviewed_in,
|
|
36390
|
+
summary: entry.summary,
|
|
36391
|
+
key_findings: [...entry.key_findings],
|
|
36392
|
+
relevance: entry.relevance,
|
|
36393
|
+
techniques_extracted: [...entry.techniques_extracted],
|
|
36394
|
+
related_issues: [...entry.related_issues],
|
|
36395
|
+
implementation_status: entry.implementation_status,
|
|
36396
|
+
rigor_tags: entry.rigor_tags ? [...entry.rigor_tags] : [],
|
|
36397
|
+
...entry.venue_tier !== void 0 ? { venue_tier: entry.venue_tier } : {},
|
|
36398
|
+
...entry.quality_score !== void 0 ? { quality_score: entry.quality_score } : {},
|
|
36399
|
+
...entry.evidence_tier !== void 0 ? { evidence_tier: entry.evidence_tier } : {},
|
|
36400
|
+
...entry.citation_count !== void 0 ? { citation_count: entry.citation_count } : {},
|
|
36401
|
+
...entry.has_code !== void 0 ? { has_code: entry.has_code } : {},
|
|
36402
|
+
...entry.code_url !== void 0 ? { code_url: entry.code_url } : {},
|
|
36403
|
+
...entry.quality_notes !== void 0 ? { quality_notes: entry.quality_notes } : {},
|
|
36404
|
+
...entry.last_quality_check !== void 0 ? { last_quality_check: entry.last_quality_check } : {}
|
|
36405
|
+
};
|
|
36406
|
+
}
|
|
36377
36407
|
function generateRegistryEntry(metadata, topic) {
|
|
36378
36408
|
if (metadata.id === "" || metadata.title === "") {
|
|
36379
36409
|
return {
|
|
@@ -36409,7 +36439,7 @@ function generateRegistryEntry(metadata, topic) {
|
|
|
36409
36439
|
related_issues: [],
|
|
36410
36440
|
implementation_status: "not-started"
|
|
36411
36441
|
};
|
|
36412
|
-
const paperForScoring = entry;
|
|
36442
|
+
const paperForScoring = paperEntryToResearchPaper(entry);
|
|
36413
36443
|
const qualityScore = computeQualityScore(paperForScoring);
|
|
36414
36444
|
const evidenceTier = computeEvidenceTier({ ...paperForScoring, quality_score: qualityScore });
|
|
36415
36445
|
const scoredEntry = {
|
|
@@ -50271,4 +50301,4 @@ export {
|
|
|
50271
50301
|
detectBackend,
|
|
50272
50302
|
createTaskTracker
|
|
50273
50303
|
};
|
|
50274
|
-
//# sourceMappingURL=chunk-
|
|
50304
|
+
//# sourceMappingURL=chunk-37ZXD5B6.js.map
|