@nexusclawhq/cli 0.3.2 → 0.3.4
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/CHANGELOG.md +9 -0
- package/dist/build-info.json +4 -4
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/candidate-fixture-mismatch-evidence.d.ts +82 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/candidate-fixture-mismatch-evidence.js +123 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/candidate-fixture-mismatch-evidence.js.map +1 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/contract-schemas.d.ts +6 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/contract-schemas.js +241 -1
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/contract-schemas.js.map +1 -1
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/index.d.ts +2 -1
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/index.js +8 -1
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/index.js.map +1 -1
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/release-evidence.types.d.ts +5 -3
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.d.ts +6 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js +10 -4
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js.map +1 -1
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/index.d.ts +12 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.d.ts +6 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js +10 -4
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js.map +1 -1
- package/dist/nexus-cli/src/cli.js +21 -1
- package/dist/nexus-cli/src/cli.js.map +1 -1
- package/dist/nexus-cli/src/commands/employee/code.js +40 -14
- package/dist/nexus-cli/src/commands/employee/code.js.map +1 -1
- package/dist/nexus-cli/src/commands/org/list.js +4 -0
- package/dist/nexus-cli/src/commands/org/list.js.map +1 -1
- package/dist/nexus-cli/src/commands/source/pull.js +38 -19
- package/dist/nexus-cli/src/commands/source/pull.js.map +1 -1
- package/dist/nexus-cli/src/commands/source/source-sync.e2e.test.js +32 -0
- package/dist/nexus-cli/src/commands/source/source-sync.e2e.test.js.map +1 -1
- package/dist/nexus-cli/src/commands/workspace/index.js +56 -19
- package/dist/nexus-cli/src/commands/workspace/index.js.map +1 -1
- package/dist/nexus-cli/src/services/ai-authoring-context-v2.d.ts +1 -1
- package/dist/nexus-cli/src/services/ai-authoring-context-v2.js +13 -8
- package/dist/nexus-cli/src/services/ai-authoring-context-v2.js.map +1 -1
- package/dist/nexus-cli/src/services/ai-authoring-context-v2.pack.e2e.d.ts +1 -0
- package/dist/nexus-cli/src/services/ai-authoring-context-v2.pack.e2e.js +128 -0
- package/dist/nexus-cli/src/services/ai-authoring-context-v2.pack.e2e.js.map +1 -0
- package/dist/nexus-cli/src/services/ai-authoring-context-v2.test.js +110 -0
- package/dist/nexus-cli/src/services/ai-authoring-context-v2.test.js.map +1 -1
- package/dist/nexus-cli/src/services/build-info.d.ts +10 -0
- package/dist/nexus-cli/src/services/build-info.js +88 -0
- package/dist/nexus-cli/src/services/build-info.js.map +1 -0
- package/dist/nexus-cli/src/services/code-authoring-local.d.ts +6 -0
- package/dist/nexus-cli/src/services/code-authoring-local.js +22 -6
- package/dist/nexus-cli/src/services/code-authoring-local.js.map +1 -1
- package/dist/nexus-cli/src/services/source-tracker.js +29 -13
- package/dist/nexus-cli/src/services/source-tracker.js.map +1 -1
- package/dist/nexus-cli/src/services/source-tracker.test.js +40 -0
- package/dist/nexus-cli/src/services/source-tracker.test.js.map +1 -1
- package/dist/nexus-cli/src/services/workforce-remote-operations.d.ts +3 -1
- package/dist/nexus-cli/src/services/workforce-remote-operations.js +34 -9
- package/dist/nexus-cli/src/services/workforce-remote-operations.js.map +1 -1
- package/dist/nexus-cli/src/services/workforce-remote-operations.suite-selection.test.d.ts +1 -0
- package/dist/nexus-cli/src/services/workforce-remote-operations.suite-selection.test.js +42 -0
- package/dist/nexus-cli/src/services/workforce-remote-operations.suite-selection.test.js.map +1 -0
- package/dist/nexus-cli/src/services/workspace-health.d.ts +1 -1
- package/dist/nexus-cli/src/services/workspace-health.js +6 -0
- package/dist/nexus-cli/src/services/workspace-health.js.map +1 -1
- package/dist/nexus-cli/src/services/workspace-health.test.js +8 -0
- package/dist/nexus-cli/src/services/workspace-health.test.js.map +1 -1
- package/dist/nexus-cli/src/utils/error-handler.d.ts +6 -1
- package/dist/nexus-cli/src/utils/error-handler.js +22 -8
- package/dist/nexus-cli/src/utils/error-handler.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -2
- package/dist/nexus-cli/src/templates/project/templates/drill-code-extension-page/src/components/drill-code-extension-page/index.js +0 -70
- package/dist/nexus-cli/src/templates/project/templates/drill-code-extension-page/src/metadata/drill-code-extension-page.manifest.json +0 -63
- package/dist/nexus-cli/src/templates/project/templates/drill-code-extension-page/src/tests/drill-code-extension-page.assertions.json +0 -13
|
@@ -7401,8 +7401,12 @@ declare const _default: {
|
|
|
7401
7401
|
independentIdentityBanner: string;
|
|
7402
7402
|
assistantIdentityEditorHint: string;
|
|
7403
7403
|
assistantPermissionNotice: string;
|
|
7404
|
+
assistantDefenseNotice: string;
|
|
7405
|
+
assistantRunAsInheritance: string;
|
|
7404
7406
|
assistantAccessNotice: string;
|
|
7405
7407
|
assistantAudienceNotice: string;
|
|
7408
|
+
builderPermissionTitleAssistant: string;
|
|
7409
|
+
builderDefenseBoundaryTitle: string;
|
|
7406
7410
|
builderIdentityDesc: string;
|
|
7407
7411
|
builderIdentityGap: string;
|
|
7408
7412
|
builderIdentityInfo: string;
|
|
@@ -7520,6 +7524,8 @@ declare const _default: {
|
|
|
7520
7524
|
noProactiveTitle: string;
|
|
7521
7525
|
noContextMemoryTitle: string;
|
|
7522
7526
|
noContractDesc: string;
|
|
7527
|
+
openBlueprintCta: string;
|
|
7528
|
+
openBlueprintHint: string;
|
|
7523
7529
|
contractIdLabel: string;
|
|
7524
7530
|
contractRevisionLabel: string;
|
|
7525
7531
|
missionLabel: string;
|
|
@@ -7408,9 +7408,13 @@ const messages = {
|
|
|
7408
7408
|
assistantIdentityBanner: "This is an employee assistant: it runs under the authorizing user's account, role, and org node, and holds no permissions of its own. Fill in the service account and role below to convert it into an independent AI employee.",
|
|
7409
7409
|
independentIdentityBanner: "This is an independent AI employee: it executes with its own service account (employee ID) and role, with its own account, permissions, and org-structure boundary.",
|
|
7410
7410
|
assistantIdentityEditorHint: "Assistants do not need the account or role below. To let this employee operate under its own authority, set both the service account and a role — saving converts it into an independent AI employee.",
|
|
7411
|
-
assistantPermissionNotice: "
|
|
7412
|
-
|
|
7413
|
-
|
|
7411
|
+
assistantPermissionNotice: "An assistant's public groups and permission sets are inherited from the authorizing user and cannot be configured here; but data scope, rate limits, and tool allow/deny lists are defense-in-depth narrowing controls that MUST be set to prevent data over-access.",
|
|
7412
|
+
assistantDefenseNotice: "Defense-in-depth narrowing: the data scope, rate limits, and tool allow/deny lists below are intersected with the authorizing user's permissions — they only narrow, never widen. If the assistant's configured org subtree is outside the authorizing user's subtree, access is denied (fail-closed).",
|
|
7413
|
+
assistantRunAsInheritance: "Run-as identity is inherited from the human who dispatches each task; the fields below are this assistant's defense-in-depth boundary.",
|
|
7414
|
+
assistantAccessNotice: "Assistants cannot work standalone: their run-as identity is inherited from the dispatching human, but the defense-in-depth boundary below (scope/rate/tools) is still enforced.",
|
|
7415
|
+
assistantAudienceNotice: "Assistants have no standalone audience: who can invoke this assistant is determined by its mount point (chat, flow node), inherited from the dispatching human, and cannot be configured here.",
|
|
7416
|
+
builderPermissionTitleAssistant: "Defense-in-depth data scope and runtime boundary",
|
|
7417
|
+
builderDefenseBoundaryTitle: "Defense-in-depth boundary (intersected with authorizing user)",
|
|
7414
7418
|
builderIdentityDesc: "Determines whose identity the AI employee executes as, and what authority and org boundaries it has.",
|
|
7415
7419
|
builderIdentityGap: "Missing employee ID or role",
|
|
7416
7420
|
builderIdentityInfo: "Identity information",
|
|
@@ -7527,7 +7531,9 @@ const messages = {
|
|
|
7527
7531
|
noContractTitle: "No success contract",
|
|
7528
7532
|
noProactiveTitle: "No proactive policy",
|
|
7529
7533
|
noContextMemoryTitle: "No context & memory policy",
|
|
7530
|
-
noContractDesc: "The current candidate has no cognitive policy
|
|
7534
|
+
noContractDesc: "The current candidate has no cognitive policy. Go to AI Workforce → Learning Plan, generate a goal-to-agent blueprint and materialize it into a candidate, or initialize via the backend API before editing.",
|
|
7535
|
+
openBlueprintCta: "Generate blueprint",
|
|
7536
|
+
openBlueprintHint: "Opens the Learning Plan page — click '+ Generate goal-to-agent blueprint' at the bottom of the first column",
|
|
7531
7537
|
contractIdLabel: "Contract ID",
|
|
7532
7538
|
contractRevisionLabel: "Contract revision",
|
|
7533
7539
|
missionLabel: "Mission",
|