@nexusclawhq/cli 0.3.2 → 0.3.3

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.
Files changed (44) hide show
  1. package/dist/build-info.json +4 -4
  2. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/candidate-fixture-mismatch-evidence.d.ts +82 -0
  3. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/candidate-fixture-mismatch-evidence.js +123 -0
  4. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/candidate-fixture-mismatch-evidence.js.map +1 -0
  5. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/contract-schemas.d.ts +6 -0
  6. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/contract-schemas.js +241 -1
  7. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/contract-schemas.js.map +1 -1
  8. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/index.d.ts +2 -1
  9. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/index.js +8 -1
  10. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/index.js.map +1 -1
  11. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/agent-executable-assets/release-evidence.types.d.ts +5 -3
  12. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.d.ts +6 -0
  13. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js +10 -4
  14. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js.map +1 -1
  15. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/index.d.ts +12 -0
  16. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.d.ts +6 -0
  17. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js +10 -4
  18. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js.map +1 -1
  19. package/dist/nexus-cli/src/cli.js +21 -1
  20. package/dist/nexus-cli/src/cli.js.map +1 -1
  21. package/dist/nexus-cli/src/services/__env-probe.test.d.ts +1 -0
  22. package/dist/nexus-cli/src/services/__env-probe.test.js +13 -0
  23. package/dist/nexus-cli/src/services/__env-probe.test.js.map +1 -0
  24. package/dist/nexus-cli/src/services/ai-authoring-context-v2.js +8 -6
  25. package/dist/nexus-cli/src/services/ai-authoring-context-v2.js.map +1 -1
  26. package/dist/nexus-cli/src/services/ai-authoring-context-v2.pack.e2e.d.ts +1 -0
  27. package/dist/nexus-cli/src/services/ai-authoring-context-v2.pack.e2e.js +128 -0
  28. package/dist/nexus-cli/src/services/ai-authoring-context-v2.pack.e2e.js.map +1 -0
  29. package/dist/nexus-cli/src/services/ai-authoring-context-v2.pack.e2e.test.d.ts +1 -0
  30. package/dist/nexus-cli/src/services/ai-authoring-context-v2.pack.e2e.test.js +132 -0
  31. package/dist/nexus-cli/src/services/ai-authoring-context-v2.pack.e2e.test.js.map +1 -0
  32. package/dist/nexus-cli/src/services/ai-authoring-context-v2.test.js +51 -0
  33. package/dist/nexus-cli/src/services/ai-authoring-context-v2.test.js.map +1 -1
  34. package/dist/nexus-cli/src/services/build-info.d.ts +10 -0
  35. package/dist/nexus-cli/src/services/build-info.js +88 -0
  36. package/dist/nexus-cli/src/services/build-info.js.map +1 -0
  37. package/dist/nexus-cli/src/services/workforce-remote-operations.d.ts +3 -1
  38. package/dist/nexus-cli/src/services/workforce-remote-operations.js +34 -9
  39. package/dist/nexus-cli/src/services/workforce-remote-operations.js.map +1 -1
  40. package/dist/nexus-cli/src/services/workforce-remote-operations.suite-selection.test.d.ts +1 -0
  41. package/dist/nexus-cli/src/services/workforce-remote-operations.suite-selection.test.js +42 -0
  42. package/dist/nexus-cli/src/services/workforce-remote-operations.suite-selection.test.js.map +1 -0
  43. package/dist/tsconfig.tsbuildinfo +1 -1
  44. package/package.json +3 -2
@@ -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: "Assistants hold no permissions of their own: their data scope, public groups, permission sets, and runtime limits are all inherited from the authorizing user and cannot be configured here.",
7412
- assistantAccessNotice: "Assistants cannot work standalone: their run-as identity is inherited from the human who dispatches each task, with no independent service-account permission profile.",
7413
- assistantAudienceNotice: "Assistants have no standalone audience or org ownership: org node, audience orgs, and audience users are all inherited from the human who dispatches each task, and cannot be configured here.",
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; initialize it via the goal-to-agent blueprint generator or the backend API before editing.",
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",