nexus-agents 2.59.0 → 2.61.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/dist/chunk-FDNWRZNJ.js +22 -0
- package/dist/chunk-FDNWRZNJ.js.map +1 -0
- package/dist/{chunk-L3NHOUEX.js → chunk-FEWWXGFE.js} +30 -30
- package/dist/{chunk-L3NHOUEX.js.map → chunk-FEWWXGFE.js.map} +1 -1
- package/dist/{chunk-ZOQQGA3L.js → chunk-KNAPTURC.js} +2 -2
- package/dist/{chunk-7USAZET2.js → chunk-NB6IYTMN.js} +9 -7
- package/dist/{chunk-7USAZET2.js.map → chunk-NB6IYTMN.js.map} +1 -1
- package/dist/{chunk-V2Z7EHSY.js → chunk-TRWIEUI2.js} +167 -173
- package/dist/chunk-TRWIEUI2.js.map +1 -0
- package/dist/cli.d.ts +3 -1
- package/dist/cli.js +279 -114
- package/dist/cli.js.map +1 -1
- package/dist/{consensus-vote-HDM6HA5Z.js → consensus-vote-PRLGGUNY.js} +3 -2
- package/dist/index.js +11 -10
- package/dist/index.js.map +1 -1
- package/dist/nexus-data-dir-M6DYKIHJ.js +12 -0
- package/dist/{registry-command-S46JJ2SX.js → registry-command-TTXAUCOK.js} +7 -5
- package/dist/registry-command-TTXAUCOK.js.map +1 -0
- package/dist/{setup-command-QAGEWX7G.js → setup-command-QJGB34JY.js} +4 -3
- package/dist/setup-command-QJGB34JY.js.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-V2Z7EHSY.js.map +0 -1
- package/dist/registry-command-S46JJ2SX.js.map +0 -1
- /package/dist/{chunk-ZOQQGA3L.js.map → chunk-KNAPTURC.js.map} +0 -0
- /package/dist/{consensus-vote-HDM6HA5Z.js.map → consensus-vote-PRLGGUNY.js.map} +0 -0
- /package/dist/{setup-command-QAGEWX7G.js.map → nexus-data-dir-M6DYKIHJ.js.map} +0 -0
package/dist/cli.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ declare const EXIT_CODES: {
|
|
|
38
38
|
/**
|
|
39
39
|
* CLI command types that can be executed.
|
|
40
40
|
*/
|
|
41
|
-
type CliCommand = 'server' | 'help' | 'version' | 'hello' | 'config' | 'expert' | 'workflow' | 'doctor' | 'verify' | 'review' | 'routing-audit' | 'orchestrate' | 'system-review' | 'vote' | 'index' | 'research' | 'validation' | 'learning-metrics' | 'swe-bench' | 'atbench' | 'setup' | 'hooks' | 'demo' | 'sprint' | 'session' | 'evaluate' | 'issue' | 'fitness-audit' | 'release-notes' | 'release-validate' | 'release-announce' | 'scaffold' | 'visualize' | 'capabilities' | 'status' | 'memory-benchmark' | 'auth' | 'scenario' | 'warm-up' | 'e2e-eval' | 'routing-ab' | 'memory-eval' | 'health' | 'validate' | 'registry';
|
|
41
|
+
type CliCommand = 'server' | 'help' | 'version' | 'hello' | 'config' | 'expert' | 'workflow' | 'doctor' | 'verify' | 'review' | 'routing-audit' | 'orchestrate' | 'system-review' | 'vote' | 'index' | 'research' | 'validation' | 'learning-metrics' | 'swe-bench' | 'atbench' | 'setup' | 'hooks' | 'demo' | 'sprint' | 'session' | 'evaluate' | 'issue' | 'fitness-audit' | 'release-notes' | 'release-validate' | 'release-announce' | 'scaffold' | 'visualize' | 'capabilities' | 'status' | 'memory-benchmark' | 'auth' | 'scenario' | 'warm-up' | 'e2e-eval' | 'routing-ab' | 'memory-eval' | 'health' | 'init' | 'validate' | 'registry';
|
|
42
42
|
/**
|
|
43
43
|
* Parsed CLI arguments and command.
|
|
44
44
|
*/
|
|
@@ -106,6 +106,8 @@ interface ParsedCliArgs {
|
|
|
106
106
|
deep: boolean;
|
|
107
107
|
json?: boolean;
|
|
108
108
|
source?: string;
|
|
109
|
+
portable?: boolean;
|
|
110
|
+
gitignore?: boolean;
|
|
109
111
|
};
|
|
110
112
|
positionals: string[];
|
|
111
113
|
}
|