nexus-agents 2.27.0 → 2.28.0
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/LICENSE +27 -0
- package/dist/{chunk-6QLUXEA6.js → chunk-E7EX2KQJ.js} +2 -2
- package/dist/{chunk-WF5CWL2N.js → chunk-L2SHSW4T.js} +6 -6
- package/dist/chunk-L2SHSW4T.js.map +1 -0
- package/dist/{chunk-RNQRE45M.js → chunk-LKSTILEE.js} +6 -5
- package/dist/{chunk-RNQRE45M.js.map → chunk-LKSTILEE.js.map} +1 -1
- package/dist/{chunk-WZACXZGT.js → chunk-QZEAD6AG.js} +1908 -1900
- package/dist/chunk-QZEAD6AG.js.map +1 -0
- package/dist/{chunk-4LM3YGJF.js → chunk-UGNLR4NZ.js} +2 -2
- package/dist/{chunk-VL7L56MU.js → chunk-YSDUVCCZ.js} +4 -4
- package/dist/cli.js +20 -20
- package/dist/cli.js.map +1 -1
- package/dist/{dist-Y5F6UM2N.js → dist-H5XNXVAV.js} +1384 -1295
- package/dist/dist-H5XNXVAV.js.map +1 -0
- package/dist/{doctor-deep-EN3V4PXO.js → doctor-deep-BDE2PHVX.js} +3 -3
- package/dist/index.d.ts +2549 -8292
- package/dist/index.js +18 -8
- package/dist/index.js.map +1 -1
- package/dist/{setup-command-ZN7DSP53.js → setup-command-SS7LMN7Y.js} +5 -5
- package/dist/setup-config-DSMOOLVW.js +9 -0
- package/package.json +26 -27
- package/dist/chunk-WF5CWL2N.js.map +0 -1
- package/dist/chunk-WZACXZGT.js.map +0 -1
- package/dist/dist-Y5F6UM2N.js.map +0 -1
- package/dist/setup-config-ZOJUDXNP.js +0 -9
- /package/dist/{chunk-6QLUXEA6.js.map → chunk-E7EX2KQJ.js.map} +0 -0
- /package/dist/{chunk-4LM3YGJF.js.map → chunk-UGNLR4NZ.js.map} +0 -0
- /package/dist/{chunk-VL7L56MU.js.map → chunk-YSDUVCCZ.js.map} +0 -0
- /package/dist/{doctor-deep-EN3V4PXO.js.map → doctor-deep-BDE2PHVX.js.map} +0 -0
- /package/dist/{setup-command-ZN7DSP53.js.map → setup-command-SS7LMN7Y.js.map} +0 -0
- /package/dist/{setup-config-ZOJUDXNP.js.map → setup-config-DSMOOLVW.js.map} +0 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 William Zujkowski
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
This project is inspired by and incorporates concepts from claude-team-mcp,
|
|
26
|
+
which is also licensed under the MIT License. Attribution is preserved per
|
|
27
|
+
the terms of the original license.
|
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
TASK_CATEGORIES,
|
|
3
3
|
getAdaptiveBonus,
|
|
4
4
|
getOutcomeStore
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-L2SHSW4T.js";
|
|
6
6
|
|
|
7
7
|
// src/cli/doctor-deep.ts
|
|
8
8
|
var CLI_NAMES = ["claude", "gemini", "codex", "opencode"];
|
|
@@ -106,4 +106,4 @@ export {
|
|
|
106
106
|
runDeepDiagnostics,
|
|
107
107
|
formatDeepDiagnostics
|
|
108
108
|
};
|
|
109
|
-
//# sourceMappingURL=chunk-
|
|
109
|
+
//# sourceMappingURL=chunk-E7EX2KQJ.js.map
|
|
@@ -1160,7 +1160,7 @@ var PreferenceRouterConfigSchema = z2.object({
|
|
|
1160
1160
|
minDataPoints: z2.number().int().positive().default(10),
|
|
1161
1161
|
maxDataPoints: z2.number().int().positive().default(1e4),
|
|
1162
1162
|
enableOnlineLearning: z2.boolean().default(true),
|
|
1163
|
-
domainThresholds: z2.record(z2.number().min(0).max(1)).optional()
|
|
1163
|
+
domainThresholds: z2.record(z2.string(), z2.number().min(0).max(1)).optional()
|
|
1164
1164
|
});
|
|
1165
1165
|
|
|
1166
1166
|
// src/core/trace-pricing.ts
|
|
@@ -1608,15 +1608,15 @@ var ArtifactTypeSchema = z3.enum([
|
|
|
1608
1608
|
ArtifactType.INTENT
|
|
1609
1609
|
]);
|
|
1610
1610
|
var ArtifactMetadataSchema = z3.object({
|
|
1611
|
-
createdAt: z3.
|
|
1611
|
+
createdAt: z3.iso.datetime({ message: "createdAt must be ISO 8601 format" }),
|
|
1612
1612
|
createdBy: z3.string().min(1, "createdBy is required"),
|
|
1613
|
-
parentId: z3.
|
|
1613
|
+
parentId: z3.uuid().optional(),
|
|
1614
1614
|
taskId: z3.string().min(1, "taskId is required"),
|
|
1615
1615
|
traceId: z3.string().optional()
|
|
1616
1616
|
});
|
|
1617
1617
|
function createArtifactSchema(dataSchema) {
|
|
1618
1618
|
return z3.object({
|
|
1619
|
-
id: z3.
|
|
1619
|
+
id: z3.uuid(),
|
|
1620
1620
|
type: ArtifactTypeSchema,
|
|
1621
1621
|
schemaVersion: z3.string().regex(/^\d+\.\d+\.\d+$/, "schemaVersion must be semver"),
|
|
1622
1622
|
data: dataSchema,
|
|
@@ -5592,7 +5592,7 @@ import { z as z8 } from "zod";
|
|
|
5592
5592
|
var StageConfigSchema = z8.object({
|
|
5593
5593
|
enabled: z8.boolean().default(true),
|
|
5594
5594
|
priority: z8.number().int().min(0).max(100).default(50),
|
|
5595
|
-
options: z8.record(z8.unknown()).optional()
|
|
5595
|
+
options: z8.record(z8.string(), z8.unknown()).optional()
|
|
5596
5596
|
});
|
|
5597
5597
|
var RoutingOutcomeSchema = z8.object({
|
|
5598
5598
|
selectedCli: CliNameSchema,
|
|
@@ -10551,4 +10551,4 @@ export {
|
|
|
10551
10551
|
ParseError,
|
|
10552
10552
|
OrchestratorError
|
|
10553
10553
|
};
|
|
10554
|
-
//# sourceMappingURL=chunk-
|
|
10554
|
+
//# sourceMappingURL=chunk-L2SHSW4T.js.map
|