@nexusclawhq/cli 0.3.17 → 0.3.19

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 (56) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/dist/build-info.json +4 -4
  3. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/index.d.ts +1 -0
  4. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/index.js +1 -0
  5. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/index.js.map +1 -1
  6. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.d.ts +11 -0
  7. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js +11 -0
  8. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js.map +1 -1
  9. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/index.d.ts +22 -0
  10. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.d.ts +11 -0
  11. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js +11 -0
  12. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js.map +1 -1
  13. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/workspace-regional-settings.d.ts +15 -0
  14. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/workspace-regional-settings.js +30 -0
  15. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/workspace-regional-settings.js.map +1 -0
  16. package/dist/nexus-cli/node_modules/@nexusclaw/shared/package.json +4 -0
  17. package/dist/nexus-cli/src/cli.js +0 -0
  18. package/dist/nexus-cli/src/commands/commands.test.js +19 -0
  19. package/dist/nexus-cli/src/commands/commands.test.js.map +1 -1
  20. package/dist/nexus-cli/src/commands/data/index.js +2 -0
  21. package/dist/nexus-cli/src/commands/data/index.js.map +1 -1
  22. package/dist/nexus-cli/src/commands/data/recycle-bin.d.ts +2 -0
  23. package/dist/nexus-cli/src/commands/data/recycle-bin.js +52 -0
  24. package/dist/nexus-cli/src/commands/data/recycle-bin.js.map +1 -0
  25. package/dist/nexus-cli/src/commands/employee/index.js +2 -0
  26. package/dist/nexus-cli/src/commands/employee/index.js.map +1 -1
  27. package/dist/nexus-cli/src/commands/employee/skill.d.ts +4 -0
  28. package/dist/nexus-cli/src/commands/employee/skill.js +77 -0
  29. package/dist/nexus-cli/src/commands/employee/skill.js.map +1 -0
  30. package/dist/nexus-cli/src/commands/employee/skill.test.d.ts +1 -0
  31. package/dist/nexus-cli/src/commands/employee/skill.test.js +35 -0
  32. package/dist/nexus-cli/src/commands/employee/skill.test.js.map +1 -0
  33. package/dist/nexus-cli/src/contracts/command-contract.registry.js +2 -0
  34. package/dist/nexus-cli/src/contracts/command-contract.registry.js.map +1 -1
  35. package/dist/nexus-cli/src/services/__env-probe.test.d.ts +1 -0
  36. package/dist/nexus-cli/src/services/__env-probe.test.js +13 -0
  37. package/dist/nexus-cli/src/services/__env-probe.test.js.map +1 -0
  38. package/dist/nexus-cli/src/services/ai-authoring-context-v2.pack.e2e.test.d.ts +1 -0
  39. package/dist/nexus-cli/src/services/ai-authoring-context-v2.pack.e2e.test.js +132 -0
  40. package/dist/nexus-cli/src/services/ai-authoring-context-v2.pack.e2e.test.js.map +1 -0
  41. package/dist/nexus-cli/src/services/developer-skill-catalog.d.ts +25 -0
  42. package/dist/nexus-cli/src/services/developer-skill-catalog.js +61 -0
  43. package/dist/nexus-cli/src/services/developer-skill-catalog.js.map +1 -0
  44. package/dist/nexus-cli/src/services/developer-skill-catalog.test.d.ts +1 -0
  45. package/dist/nexus-cli/src/services/developer-skill-catalog.test.js +27 -0
  46. package/dist/nexus-cli/src/services/developer-skill-catalog.test.js.map +1 -0
  47. package/dist/nexus-cli/src/services/workforce-bundle-archive.d.ts +1 -1
  48. package/dist/nexus-cli/src/services/workforce-bundle-remote.d.ts +1 -1
  49. package/dist/nexus-cli/src/services/workforce-test-remote.d.ts +1 -1
  50. package/dist/nexus-cli/src/services/workforce-test-remote.js +1 -1
  51. package/dist/nexus-cli/src/services/workforce-test-remote.test.js +1 -1
  52. package/dist/nexus-cli/src/templates/project/templates/drill-code-extension-page/src/components/drill-code-extension-page/index.js +70 -0
  53. package/dist/nexus-cli/src/templates/project/templates/drill-code-extension-page/src/metadata/drill-code-extension-page.manifest.json +63 -0
  54. package/dist/nexus-cli/src/templates/project/templates/drill-code-extension-page/src/tests/drill-code-extension-page.assertions.json +13 -0
  55. package/dist/tsconfig.tsbuildinfo +1 -1
  56. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.19 - 2026-07-30
4
+
5
+ - Add the machine-readable `employee skill list|describe` developer skill
6
+ interface for governed code-action and Flow authoring.
7
+ - Register developer skill discovery in the canonical `ai help` command
8
+ contract while preserving existing package and bundle release-gate owners.
9
+ - Include the authenticated, step-up-protected Recycle Bin soft-delete command
10
+ prepared for the preceding local release candidate.
11
+
12
+ ## 0.3.18 - 2026-07-30
13
+
14
+ - Add the authenticated, step-up-protected single-record Recycle Bin
15
+ soft-delete command for DX administrators, with exact object, record ID, and
16
+ external-key matching plus an auditable receipt.
17
+
3
18
  ## 0.3.17 - 2026-07-30
4
19
 
5
20
  - Surface the formal rollback re-promote audit contract, including activation
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "packageName": "@nexusclawhq/cli",
3
- "version": "0.3.17",
4
- "gitSha": "0c1f9911611998d1b027270ca999f8134b845c89",
3
+ "version": "0.3.19",
4
+ "gitSha": "1810706f59ce96fa4809579f83f9fc050d9d9f15",
5
5
  "ciRunId": null,
6
- "contentDigest": "sha256:acf6563b5ad55893f6db93862edd67778765564077c4e276e3232499f7a76945",
7
- "generatedAt": "2026-07-29T23:25:11.271Z"
6
+ "contentDigest": "sha256:19b86168cfae600701b109c662c85a9bdafa61d65862dd70e5d879ec999ba94d",
7
+ "generatedAt": "2026-07-30T04:41:04.105Z"
8
8
  }
@@ -11,3 +11,4 @@ export * from './platform-admin-release-governance';
11
11
  export * from './agent-executable-assets';
12
12
  export * from './ai-employee-runtime';
13
13
  export * from './ai-employee-cognition';
14
+ export * from './workspace-regional-settings';
@@ -29,4 +29,5 @@ __exportStar(require("./platform-admin-release-governance"), exports);
29
29
  __exportStar(require("./agent-executable-assets"), exports);
30
30
  __exportStar(require("./ai-employee-runtime"), exports);
31
31
  __exportStar(require("./ai-employee-cognition"), exports);
32
+ __exportStar(require("./workspace-regional-settings"), exports);
32
33
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,6CAAoD;AAA3C,0GAAA,eAAe,OAAA;AACxB,kDAAgC;AAChC,0DAAwC;AACxC,0DAAwC;AACxC,qDAAmC;AACnC,oDAAkC;AAClC,0DAAwC;AACxC,mEAAiD;AACjD,sEAAoD;AACpD,4DAA0C;AAC1C,wDAAsC;AACtC,0DAAwC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,6CAAoD;AAA3C,0GAAA,eAAe,OAAA;AACxB,kDAAgC;AAChC,0DAAwC;AACxC,0DAAwC;AACxC,qDAAmC;AACnC,oDAAkC;AAClC,0DAAwC;AACxC,mEAAiD;AACjD,sEAAoD;AACpD,4DAA0C;AAC1C,wDAAsC;AACtC,0DAAwC;AACxC,gEAA8C"}
@@ -5025,6 +5025,8 @@ declare const _default: {
5025
5025
  sendMessageAria: string;
5026
5026
  requestFailedWithStatus: string;
5027
5027
  serviceException: string;
5028
+ newConversation: string;
5029
+ restoringSession: string;
5028
5030
  historyButton: string;
5029
5031
  historyTitle: string;
5030
5032
  historyEmpty: string;
@@ -7444,6 +7446,8 @@ declare const _default: {
7444
7446
  builderPreviewMenuCaption: string;
7445
7447
  builderPreviewRun: string;
7446
7448
  builderPreviewWelcome: string;
7449
+ builderPreviewNewSession: string;
7450
+ builderPreviewRestoring: string;
7447
7451
  builderReadinessTitle: string;
7448
7452
  builderReadiness: {
7449
7453
  access: string;
@@ -18909,6 +18913,13 @@ declare const _default: {
18909
18913
  subscriptionId: string;
18910
18914
  catalogLoadFailed: string;
18911
18915
  catalogLoadFailedDescription: string;
18916
+ language: string;
18917
+ timezone: string;
18918
+ dateFormat: string;
18919
+ timeFormat: string;
18920
+ numberFormat: string;
18921
+ currencyPosition: string;
18922
+ fiscalYearStartMonth: string;
18912
18923
  };
18913
18924
  tenantDetail: {
18914
18925
  updateSuccess: string;
@@ -5047,6 +5047,8 @@ const messages = {
5047
5047
  requestFailedWithStatus: "Request failed ({status})",
5048
5048
  serviceException: "Service error",
5049
5049
  // Conversation history / meeting replay (caller-scoped by userId+workspaceId)
5050
+ newConversation: "New conversation",
5051
+ restoringSession: "Restoring the last training conversation…",
5050
5052
  historyButton: "History",
5051
5053
  historyTitle: "Conversation history",
5052
5054
  historyEmpty: "No conversations yet",
@@ -7452,6 +7454,8 @@ const messages = {
7452
7454
  builderPreviewMenuCaption: "Task input and output",
7453
7455
  builderPreviewRun: "Preview run",
7454
7456
  builderPreviewWelcome: "Enter a real task and I will try it with the current AI employee configuration.",
7457
+ builderPreviewNewSession: "New conversation",
7458
+ builderPreviewRestoring: "Restoring the last conversation…",
7455
7459
  builderReadinessTitle: "Readiness",
7456
7460
  builderReadiness: {
7457
7461
  access: "Usage scope",
@@ -18980,6 +18984,13 @@ const messages = {
18980
18984
  subscriptionId: "Subscription ID",
18981
18985
  catalogLoadFailed: "Failed to load the subscription catalog",
18982
18986
  catalogLoadFailedDescription: "Available plans and billing cycles could not be read. Resolve the issue and retry.",
18987
+ language: "Default Language",
18988
+ timezone: "Default Time Zone",
18989
+ dateFormat: "Date Format",
18990
+ timeFormat: "Time Format",
18991
+ numberFormat: "Number Format",
18992
+ currencyPosition: "Currency Symbol Position",
18993
+ fiscalYearStartMonth: "Fiscal Year Start Month",
18983
18994
  },
18984
18995
  tenantDetail: {
18985
18996
  updateSuccess: "Subscription updated",