@peernova/cuneiform-sf 1.0.3-beta.0 → 1.0.4-beta.9

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 (497) hide show
  1. package/LICENSE +81 -30
  2. package/README.md +105 -145
  3. package/lib/adapters/connection-facade.d.ts +458 -0
  4. package/lib/adapters/connection-facade.js +379 -0
  5. package/lib/adapters/connection-facade.js.map +1 -0
  6. package/lib/adapters/errors.d.ts +547 -0
  7. package/lib/adapters/errors.js +937 -0
  8. package/lib/adapters/errors.js.map +1 -0
  9. package/lib/adapters/index.d.ts +33 -0
  10. package/lib/adapters/index.js +50 -0
  11. package/lib/adapters/index.js.map +1 -0
  12. package/lib/adapters/lifecycle.d.ts +119 -0
  13. package/lib/adapters/lifecycle.js +94 -0
  14. package/lib/adapters/lifecycle.js.map +1 -0
  15. package/lib/adapters/rest/cache.d.ts +69 -0
  16. package/lib/adapters/rest/cache.js +133 -0
  17. package/lib/adapters/rest/cache.js.map +1 -0
  18. package/lib/adapters/rest/index.d.ts +11 -0
  19. package/lib/adapters/rest/index.js +18 -0
  20. package/lib/adapters/rest/index.js.map +1 -0
  21. package/lib/adapters/rest/profiling-rest-client.d.ts +137 -0
  22. package/lib/adapters/rest/profiling-rest-client.js +115 -0
  23. package/lib/adapters/rest/profiling-rest-client.js.map +1 -0
  24. package/lib/adapters/rest/rest-api-adapter.d.ts +389 -0
  25. package/lib/adapters/rest/rest-api-adapter.js +747 -0
  26. package/lib/adapters/rest/rest-api-adapter.js.map +1 -0
  27. package/lib/adapters/rest/types.d.ts +34 -0
  28. package/lib/adapters/rest/types.js +9 -0
  29. package/lib/adapters/rest/types.js.map +1 -0
  30. package/lib/adapters/retry.d.ts +91 -0
  31. package/lib/adapters/retry.js +215 -0
  32. package/lib/adapters/retry.js.map +1 -0
  33. package/lib/adapters/soql/cuneiform-query-builder.d.ts +391 -0
  34. package/lib/adapters/soql/cuneiform-query-builder.js +559 -0
  35. package/lib/adapters/soql/cuneiform-query-builder.js.map +1 -0
  36. package/lib/adapters/soql/index.d.ts +13 -0
  37. package/lib/adapters/soql/index.js +21 -0
  38. package/lib/adapters/soql/index.js.map +1 -0
  39. package/lib/adapters/soql/soql-query-adapter.d.ts +141 -0
  40. package/lib/adapters/soql/soql-query-adapter.js +259 -0
  41. package/lib/adapters/soql/soql-query-adapter.js.map +1 -0
  42. package/lib/adapters/soql/types.d.ts +37 -0
  43. package/lib/adapters/soql/types.js +19 -0
  44. package/lib/adapters/soql/types.js.map +1 -0
  45. package/lib/adapters/testing/index.d.ts +37 -0
  46. package/lib/adapters/testing/index.js +20 -0
  47. package/lib/adapters/testing/index.js.map +1 -0
  48. package/lib/adapters/testing/mock-connection.d.ts +77 -0
  49. package/lib/adapters/testing/mock-connection.js +207 -0
  50. package/lib/adapters/testing/mock-connection.js.map +1 -0
  51. package/lib/adapters/testing/mock-logger.d.ts +29 -0
  52. package/lib/adapters/testing/mock-logger.js +57 -0
  53. package/lib/adapters/testing/mock-logger.js.map +1 -0
  54. package/lib/adapters/testing/mock-mcp-adapters.d.ts +32 -0
  55. package/lib/adapters/testing/mock-mcp-adapters.js +52 -0
  56. package/lib/adapters/testing/mock-mcp-adapters.js.map +1 -0
  57. package/lib/adapters/testing/mock-oclif-config.d.ts +22 -0
  58. package/lib/adapters/testing/mock-oclif-config.js +90 -0
  59. package/lib/adapters/testing/mock-oclif-config.js.map +1 -0
  60. package/lib/adapters/testing/mock-rest-adapter.d.ts +26 -0
  61. package/lib/adapters/testing/mock-rest-adapter.js +243 -0
  62. package/lib/adapters/testing/mock-rest-adapter.js.map +1 -0
  63. package/lib/adapters/testing/mock-salesforce-connection.d.ts +40 -0
  64. package/lib/adapters/testing/mock-salesforce-connection.js +61 -0
  65. package/lib/adapters/testing/mock-salesforce-connection.js.map +1 -0
  66. package/lib/adapters/testing/mock-soql-adapter.d.ts +30 -0
  67. package/lib/adapters/testing/mock-soql-adapter.js +120 -0
  68. package/lib/adapters/testing/mock-soql-adapter.js.map +1 -0
  69. package/lib/adapters/testing/mock-tooling-adapter.d.ts +24 -0
  70. package/lib/adapters/testing/mock-tooling-adapter.js +163 -0
  71. package/lib/adapters/testing/mock-tooling-adapter.js.map +1 -0
  72. package/lib/adapters/testing/stub-connection.d.ts +93 -0
  73. package/lib/adapters/testing/stub-connection.js +97 -0
  74. package/lib/adapters/testing/stub-connection.js.map +1 -0
  75. package/lib/adapters/testing/stub-rest-adapter.d.ts +52 -0
  76. package/lib/adapters/testing/stub-rest-adapter.js +58 -0
  77. package/lib/adapters/testing/stub-rest-adapter.js.map +1 -0
  78. package/lib/adapters/testing/stub-soql-adapter.d.ts +56 -0
  79. package/lib/adapters/testing/stub-soql-adapter.js +50 -0
  80. package/lib/adapters/testing/stub-soql-adapter.js.map +1 -0
  81. package/lib/adapters/testing/types.d.ts +71 -0
  82. package/lib/adapters/testing/types.js +9 -0
  83. package/lib/adapters/testing/types.js.map +1 -0
  84. package/lib/adapters/tooling/index.d.ts +10 -0
  85. package/lib/adapters/tooling/index.js +17 -0
  86. package/lib/adapters/tooling/index.js.map +1 -0
  87. package/lib/adapters/tooling/tooling-api-adapter.d.ts +157 -0
  88. package/lib/adapters/tooling/tooling-api-adapter.js +339 -0
  89. package/lib/adapters/tooling/tooling-api-adapter.js.map +1 -0
  90. package/lib/adapters/tooling/types.d.ts +81 -0
  91. package/lib/adapters/tooling/types.js +9 -0
  92. package/lib/adapters/tooling/types.js.map +1 -0
  93. package/lib/adapters/types.d.ts +112 -0
  94. package/lib/adapters/types.js +169 -0
  95. package/lib/adapters/types.js.map +1 -0
  96. package/lib/base/cuneiform-command.d.ts +173 -0
  97. package/lib/base/cuneiform-command.js +324 -0
  98. package/lib/base/cuneiform-command.js.map +1 -0
  99. package/lib/commands/cuneiform/compatibility/check.d.ts +43 -0
  100. package/lib/commands/cuneiform/compatibility/check.js +114 -0
  101. package/lib/commands/cuneiform/compatibility/check.js.map +1 -0
  102. package/lib/commands/cuneiform/definition/create.d.ts +119 -0
  103. package/lib/commands/cuneiform/definition/create.js +698 -0
  104. package/lib/commands/cuneiform/definition/create.js.map +1 -0
  105. package/lib/commands/cuneiform/definition/export.d.ts +11 -2
  106. package/lib/commands/cuneiform/definition/export.js +56 -20
  107. package/lib/commands/cuneiform/definition/export.js.map +1 -1
  108. package/lib/commands/cuneiform/definition/get.d.ts +86 -0
  109. package/lib/commands/cuneiform/definition/get.js +277 -0
  110. package/lib/commands/cuneiform/definition/get.js.map +1 -0
  111. package/lib/commands/cuneiform/definition/import.d.ts +12 -7
  112. package/lib/commands/cuneiform/definition/import.js +30 -19
  113. package/lib/commands/cuneiform/definition/import.js.map +1 -1
  114. package/lib/commands/cuneiform/definition/list.d.ts +110 -0
  115. package/lib/commands/cuneiform/definition/list.js +344 -0
  116. package/lib/commands/cuneiform/definition/list.js.map +1 -0
  117. package/lib/commands/cuneiform/definition/purge.d.ts +109 -0
  118. package/lib/commands/cuneiform/definition/purge.js +569 -0
  119. package/lib/commands/cuneiform/definition/purge.js.map +1 -0
  120. package/lib/commands/cuneiform/definition/update.d.ts +58 -0
  121. package/lib/commands/cuneiform/definition/update.js +209 -0
  122. package/lib/commands/cuneiform/definition/update.js.map +1 -0
  123. package/lib/commands/cuneiform/mcp/serve.d.ts +56 -0
  124. package/lib/commands/cuneiform/mcp/serve.js +109 -0
  125. package/lib/commands/cuneiform/mcp/serve.js.map +1 -0
  126. package/lib/commands/cuneiform/object/describe.d.ts +61 -0
  127. package/lib/commands/cuneiform/object/describe.js +461 -0
  128. package/lib/commands/cuneiform/object/describe.js.map +1 -0
  129. package/lib/commands/cuneiform/object/list.d.ts +111 -0
  130. package/lib/commands/cuneiform/object/list.js +239 -0
  131. package/lib/commands/cuneiform/object/list.js.map +1 -0
  132. package/lib/commands/cuneiform/org/details.d.ts +99 -0
  133. package/lib/commands/cuneiform/org/details.js +521 -0
  134. package/lib/commands/cuneiform/org/details.js.map +1 -0
  135. package/lib/commands/cuneiform/org/reset.d.ts +46 -0
  136. package/lib/commands/cuneiform/org/reset.js +135 -0
  137. package/lib/commands/cuneiform/org/reset.js.map +1 -0
  138. package/lib/commands/cuneiform/profile/request/cancel.d.ts +59 -0
  139. package/lib/commands/cuneiform/profile/request/cancel.js +202 -0
  140. package/lib/commands/cuneiform/profile/request/cancel.js.map +1 -0
  141. package/lib/commands/cuneiform/profile/request/delete.d.ts +59 -0
  142. package/lib/commands/cuneiform/profile/request/delete.js +223 -0
  143. package/lib/commands/cuneiform/profile/request/delete.js.map +1 -0
  144. package/lib/commands/cuneiform/profile/request/list.d.ts +35 -0
  145. package/lib/commands/cuneiform/profile/request/list.js +102 -0
  146. package/lib/commands/cuneiform/profile/request/list.js.map +1 -0
  147. package/lib/commands/cuneiform/profile.d.ts +93 -0
  148. package/lib/commands/cuneiform/profile.js +344 -0
  149. package/lib/commands/cuneiform/profile.js.map +1 -0
  150. package/lib/commands/cuneiform/summary/purge.d.ts +80 -0
  151. package/lib/commands/cuneiform/summary/purge.js +467 -0
  152. package/lib/commands/cuneiform/summary/purge.js.map +1 -0
  153. package/lib/commands/cuneiform/summary/reprofile.d.ts +60 -0
  154. package/lib/commands/cuneiform/summary/reprofile.js +236 -0
  155. package/lib/commands/cuneiform/summary/reprofile.js.map +1 -0
  156. package/lib/commands/cuneiform/summary/stop.d.ts +59 -0
  157. package/lib/commands/cuneiform/summary/stop.js +234 -0
  158. package/lib/commands/cuneiform/summary/stop.js.map +1 -0
  159. package/lib/commands/cuneiform/user/details.d.ts +77 -0
  160. package/lib/commands/cuneiform/user/details.js +405 -0
  161. package/lib/commands/cuneiform/user/details.js.map +1 -0
  162. package/lib/constants/index.d.ts +8 -0
  163. package/lib/constants/index.js +16 -0
  164. package/lib/constants/index.js.map +1 -0
  165. package/lib/constants/namespace-constants.d.ts +91 -0
  166. package/lib/constants/namespace-constants.js +211 -0
  167. package/lib/constants/namespace-constants.js.map +1 -0
  168. package/lib/debug/command-debug-proxy.d.ts +101 -0
  169. package/lib/debug/command-debug-proxy.js +171 -0
  170. package/lib/debug/command-debug-proxy.js.map +1 -0
  171. package/lib/debug/debug-logger.d.ts +85 -0
  172. package/lib/debug/debug-logger.js +133 -0
  173. package/lib/debug/debug-logger.js.map +1 -0
  174. package/lib/debug/index.d.ts +12 -0
  175. package/lib/debug/index.js +20 -0
  176. package/lib/debug/index.js.map +1 -0
  177. package/lib/debug/service-debug-proxy.d.ts +30 -0
  178. package/lib/debug/service-debug-proxy.js +102 -0
  179. package/lib/debug/service-debug-proxy.js.map +1 -0
  180. package/lib/hooks/prerun.d.ts +25 -0
  181. package/lib/hooks/prerun.js +47 -0
  182. package/lib/hooks/prerun.js.map +1 -0
  183. package/lib/mcp/config/mcp-config.d.ts +55 -0
  184. package/lib/mcp/config/mcp-config.js +51 -0
  185. package/lib/mcp/config/mcp-config.js.map +1 -0
  186. package/lib/mcp/config/pagination.d.ts +96 -0
  187. package/lib/mcp/config/pagination.js +108 -0
  188. package/lib/mcp/config/pagination.js.map +1 -0
  189. package/lib/mcp/config/system-prompts.d.ts +18 -0
  190. package/lib/mcp/config/system-prompts.js +92 -0
  191. package/lib/mcp/config/system-prompts.js.map +1 -0
  192. package/lib/mcp/errors.d.ts +23 -0
  193. package/lib/mcp/errors.js +27 -0
  194. package/lib/mcp/errors.js.map +1 -0
  195. package/lib/mcp/schemas/input-schemas.d.ts +327 -0
  196. package/lib/mcp/schemas/input-schemas.js +302 -0
  197. package/lib/mcp/schemas/input-schemas.js.map +1 -0
  198. package/lib/mcp/server.d.ts +40 -0
  199. package/lib/mcp/server.js +316 -0
  200. package/lib/mcp/server.js.map +1 -0
  201. package/lib/mcp/tools/contactpoint-tools.d.ts +14 -0
  202. package/lib/mcp/tools/contactpoint-tools.js +34 -0
  203. package/lib/mcp/tools/contactpoint-tools.js.map +1 -0
  204. package/lib/mcp/tools/definition-io-tools.d.ts +19 -0
  205. package/lib/mcp/tools/definition-io-tools.js +152 -0
  206. package/lib/mcp/tools/definition-io-tools.js.map +1 -0
  207. package/lib/mcp/tools/definition-tools.d.ts +51 -0
  208. package/lib/mcp/tools/definition-tools.js +199 -0
  209. package/lib/mcp/tools/definition-tools.js.map +1 -0
  210. package/lib/mcp/tools/index.d.ts +37 -0
  211. package/lib/mcp/tools/index.js +88 -0
  212. package/lib/mcp/tools/index.js.map +1 -0
  213. package/lib/mcp/tools/object-tools.d.ts +22 -0
  214. package/lib/mcp/tools/object-tools.js +306 -0
  215. package/lib/mcp/tools/object-tools.js.map +1 -0
  216. package/lib/mcp/tools/org-tools.d.ts +14 -0
  217. package/lib/mcp/tools/org-tools.js +177 -0
  218. package/lib/mcp/tools/org-tools.js.map +1 -0
  219. package/lib/mcp/tools/profile-tools.d.ts +59 -0
  220. package/lib/mcp/tools/profile-tools.js +213 -0
  221. package/lib/mcp/tools/profile-tools.js.map +1 -0
  222. package/lib/mcp/tools/summary-tools.d.ts +14 -0
  223. package/lib/mcp/tools/summary-tools.js +38 -0
  224. package/lib/mcp/tools/summary-tools.js.map +1 -0
  225. package/lib/mcp/tools/tool-factory.d.ts +63 -0
  226. package/lib/mcp/tools/tool-factory.js +146 -0
  227. package/lib/mcp/tools/tool-factory.js.map +1 -0
  228. package/lib/mcp/tools/user-tools.d.ts +25 -0
  229. package/lib/mcp/tools/user-tools.js +167 -0
  230. package/lib/mcp/tools/user-tools.js.map +1 -0
  231. package/lib/models/cascade-skip-accumulator.d.ts +25 -0
  232. package/lib/models/cascade-skip-accumulator.js +9 -0
  233. package/lib/models/cascade-skip-accumulator.js.map +1 -0
  234. package/lib/models/date-literal.d.ts +211 -0
  235. package/lib/models/date-literal.js +615 -0
  236. package/lib/models/date-literal.js.map +1 -0
  237. package/lib/models/object-describe-types.d.ts +173 -0
  238. package/lib/models/object-describe-types.js +9 -0
  239. package/lib/models/object-describe-types.js.map +1 -0
  240. package/lib/models/profile-request-types.d.ts +118 -0
  241. package/lib/models/profile-request-types.js +23 -0
  242. package/lib/models/profile-request-types.js.map +1 -0
  243. package/lib/models/profiling-execution-types.d.ts +154 -0
  244. package/lib/models/profiling-execution-types.js +14 -0
  245. package/lib/models/profiling-execution-types.js.map +1 -0
  246. package/lib/models/service-result.d.ts +114 -0
  247. package/lib/models/service-result.js +81 -0
  248. package/lib/models/service-result.js.map +1 -0
  249. package/lib/models/sfdmu-types.d.ts +4 -25
  250. package/lib/models/sfdmu-types.js +7 -3
  251. package/lib/models/sfdmu-types.js.map +1 -1
  252. package/lib/models/status-types.d.ts +38 -0
  253. package/lib/models/status-types.js +12 -0
  254. package/lib/models/status-types.js.map +1 -0
  255. package/lib/models/summary-bulk-types.d.ts +61 -0
  256. package/lib/models/summary-bulk-types.js +23 -0
  257. package/lib/models/summary-bulk-types.js.map +1 -0
  258. package/lib/models/user-details-types.d.ts +188 -0
  259. package/lib/models/user-details-types.js +9 -0
  260. package/lib/models/user-details-types.js.map +1 -0
  261. package/lib/models/year-range.d.ts +78 -0
  262. package/lib/models/year-range.js +153 -0
  263. package/lib/models/year-range.js.map +1 -0
  264. package/lib/operations/CompatibilityCheckOperation.d.ts +62 -0
  265. package/lib/operations/CompatibilityCheckOperation.js +102 -0
  266. package/lib/operations/CompatibilityCheckOperation.js.map +1 -0
  267. package/lib/operations/DefinitionCreateOperation.d.ts +406 -0
  268. package/lib/operations/DefinitionCreateOperation.js +1208 -0
  269. package/lib/operations/DefinitionCreateOperation.js.map +1 -0
  270. package/lib/operations/DefinitionExportOperation.d.ts +65 -2
  271. package/lib/operations/DefinitionExportOperation.js +94 -10
  272. package/lib/operations/DefinitionExportOperation.js.map +1 -1
  273. package/lib/operations/DefinitionImportOperation.d.ts +61 -11
  274. package/lib/operations/DefinitionImportOperation.js +194 -31
  275. package/lib/operations/DefinitionImportOperation.js.map +1 -1
  276. package/lib/operations/DefinitionListOperation.d.ts +66 -0
  277. package/lib/operations/DefinitionListOperation.js +108 -0
  278. package/lib/operations/DefinitionListOperation.js.map +1 -0
  279. package/lib/operations/DefinitionPurgeOperation.d.ts +199 -0
  280. package/lib/operations/DefinitionPurgeOperation.js +465 -0
  281. package/lib/operations/DefinitionPurgeOperation.js.map +1 -0
  282. package/lib/operations/DefinitionUpdateOperation.d.ts +78 -0
  283. package/lib/operations/DefinitionUpdateOperation.js +142 -0
  284. package/lib/operations/DefinitionUpdateOperation.js.map +1 -0
  285. package/lib/operations/OrgDetailsOperation.d.ts +253 -0
  286. package/lib/operations/OrgDetailsOperation.js +456 -0
  287. package/lib/operations/OrgDetailsOperation.js.map +1 -0
  288. package/lib/operations/OrgResetOperation.d.ts +114 -0
  289. package/lib/operations/OrgResetOperation.js +209 -0
  290. package/lib/operations/OrgResetOperation.js.map +1 -0
  291. package/lib/operations/ProfileOperation.d.ts +187 -0
  292. package/lib/operations/ProfileOperation.js +371 -0
  293. package/lib/operations/ProfileOperation.js.map +1 -0
  294. package/lib/operations/ProfileRequestCancelOperation.d.ts +59 -0
  295. package/lib/operations/ProfileRequestCancelOperation.js +137 -0
  296. package/lib/operations/ProfileRequestCancelOperation.js.map +1 -0
  297. package/lib/operations/ProfileRequestDeleteOperation.d.ts +64 -0
  298. package/lib/operations/ProfileRequestDeleteOperation.js +134 -0
  299. package/lib/operations/ProfileRequestDeleteOperation.js.map +1 -0
  300. package/lib/operations/ProfileRequestListOperation.d.ts +39 -0
  301. package/lib/operations/ProfileRequestListOperation.js +61 -0
  302. package/lib/operations/ProfileRequestListOperation.js.map +1 -0
  303. package/lib/operations/SummaryPurgeOperation.d.ts +134 -0
  304. package/lib/operations/SummaryPurgeOperation.js +257 -0
  305. package/lib/operations/SummaryPurgeOperation.js.map +1 -0
  306. package/lib/operations/SummaryReprofileOperation.d.ts +88 -0
  307. package/lib/operations/SummaryReprofileOperation.js +174 -0
  308. package/lib/operations/SummaryReprofileOperation.js.map +1 -0
  309. package/lib/operations/SummaryStopOperation.d.ts +87 -0
  310. package/lib/operations/SummaryStopOperation.js +175 -0
  311. package/lib/operations/SummaryStopOperation.js.map +1 -0
  312. package/lib/services/BulkExecutionService.d.ts +120 -0
  313. package/lib/services/BulkExecutionService.js +535 -0
  314. package/lib/services/BulkExecutionService.js.map +1 -0
  315. package/lib/services/CompatibilityService.d.ts +81 -0
  316. package/lib/services/CompatibilityService.js +118 -0
  317. package/lib/services/CompatibilityService.js.map +1 -0
  318. package/lib/services/ConfigureMode.d.ts +98 -0
  319. package/lib/services/ConfigureMode.js +413 -0
  320. package/lib/services/ConfigureMode.js.map +1 -0
  321. package/lib/services/ContactPointService.d.ts +111 -0
  322. package/lib/services/ContactPointService.js +286 -0
  323. package/lib/services/ContactPointService.js.map +1 -0
  324. package/lib/services/DataAvailabilityService.d.ts +81 -0
  325. package/lib/services/DataAvailabilityService.js +128 -0
  326. package/lib/services/DataAvailabilityService.js.map +1 -0
  327. package/lib/services/DefinitionFieldGenerationService.d.ts +327 -0
  328. package/lib/services/DefinitionFieldGenerationService.js +865 -0
  329. package/lib/services/DefinitionFieldGenerationService.js.map +1 -0
  330. package/lib/services/DefinitionQueryBuilder.d.ts +71 -0
  331. package/lib/services/DefinitionQueryBuilder.js +256 -0
  332. package/lib/services/DefinitionQueryBuilder.js.map +1 -0
  333. package/lib/services/ObjectDescribeService.d.ts +436 -0
  334. package/lib/services/ObjectDescribeService.js +881 -0
  335. package/lib/services/ObjectDescribeService.js.map +1 -0
  336. package/lib/services/ObjectFilteringService.d.ts +400 -0
  337. package/lib/services/ObjectFilteringService.js +879 -0
  338. package/lib/services/ObjectFilteringService.js.map +1 -0
  339. package/lib/services/ObjectListCommandService.d.ts +437 -0
  340. package/lib/services/ObjectListCommandService.js +886 -0
  341. package/lib/services/ObjectListCommandService.js.map +1 -0
  342. package/lib/services/ObjectListService.d.ts +201 -0
  343. package/lib/services/ObjectListService.js +347 -0
  344. package/lib/services/ObjectListService.js.map +1 -0
  345. package/lib/services/OrgInfoService.d.ts +495 -0
  346. package/lib/services/OrgInfoService.js +1137 -0
  347. package/lib/services/OrgInfoService.js.map +1 -0
  348. package/lib/services/PollingService.d.ts +105 -0
  349. package/lib/services/PollingService.js +117 -0
  350. package/lib/services/PollingService.js.map +1 -0
  351. package/lib/services/ProfileRequestService.d.ts +186 -0
  352. package/lib/services/ProfileRequestService.js +555 -0
  353. package/lib/services/ProfileRequestService.js.map +1 -0
  354. package/lib/services/ProfilingDefinitionService.d.ts +544 -0
  355. package/lib/services/ProfilingDefinitionService.js +981 -0
  356. package/lib/services/ProfilingDefinitionService.js.map +1 -0
  357. package/lib/services/ProfilingExecutionService.d.ts +122 -0
  358. package/lib/services/ProfilingExecutionService.js +320 -0
  359. package/lib/services/ProfilingExecutionService.js.map +1 -0
  360. package/lib/services/ProfilingSummaryService.d.ts +292 -0
  361. package/lib/services/ProfilingSummaryService.js +688 -0
  362. package/lib/services/ProfilingSummaryService.js.map +1 -0
  363. package/lib/services/RecordTypeService.d.ts +129 -0
  364. package/lib/services/RecordTypeService.js +284 -0
  365. package/lib/services/RecordTypeService.js.map +1 -0
  366. package/lib/services/SFDMUService.d.ts +17 -3
  367. package/lib/services/SFDMUService.js +49 -16
  368. package/lib/services/SFDMUService.js.map +1 -1
  369. package/lib/services/TabDetectionService.d.ts +105 -0
  370. package/lib/services/TabDetectionService.js +206 -0
  371. package/lib/services/TabDetectionService.js.map +1 -0
  372. package/lib/services/UnconfigureMode.d.ts +74 -0
  373. package/lib/services/UnconfigureMode.js +378 -0
  374. package/lib/services/UnconfigureMode.js.map +1 -0
  375. package/lib/services/UserConfigurationService.d.ts +158 -0
  376. package/lib/services/UserConfigurationService.js +574 -0
  377. package/lib/services/UserConfigurationService.js.map +1 -0
  378. package/lib/services/UserConfigurationTypes.d.ts +181 -0
  379. package/lib/services/UserConfigurationTypes.js +14 -0
  380. package/lib/services/UserConfigurationTypes.js.map +1 -0
  381. package/lib/services/UserReadinessService.d.ts +330 -0
  382. package/lib/services/UserReadinessService.js +831 -0
  383. package/lib/services/UserReadinessService.js.map +1 -0
  384. package/lib/services/constants.d.ts +53 -0
  385. package/lib/services/constants.js +71 -0
  386. package/lib/services/constants.js.map +1 -0
  387. package/lib/services/namespace-constants.d.ts +1 -0
  388. package/lib/services/namespace-constants.js +11 -0
  389. package/lib/services/namespace-constants.js.map +1 -0
  390. package/lib/services/validation.d.ts +47 -0
  391. package/lib/services/validation.js +119 -0
  392. package/lib/services/validation.js.map +1 -0
  393. package/lib/utils/batch-processor.d.ts +13 -0
  394. package/lib/utils/batch-processor.js +39 -0
  395. package/lib/utils/batch-processor.js.map +1 -0
  396. package/lib/utils/formatting/availability-grid.d.ts +81 -0
  397. package/lib/utils/formatting/availability-grid.js +94 -0
  398. package/lib/utils/formatting/availability-grid.js.map +1 -0
  399. package/lib/utils/formatting/business-process-grid.d.ts +51 -0
  400. package/lib/utils/formatting/business-process-grid.js +58 -0
  401. package/lib/utils/formatting/business-process-grid.js.map +1 -0
  402. package/lib/utils/formatting/command-display.d.ts +154 -0
  403. package/lib/utils/formatting/command-display.js +154 -0
  404. package/lib/utils/formatting/command-display.js.map +1 -0
  405. package/lib/utils/formatting/definition-create-display.d.ts +118 -0
  406. package/lib/utils/formatting/definition-create-display.js +231 -0
  407. package/lib/utils/formatting/definition-create-display.js.map +1 -0
  408. package/lib/utils/formatting/empty-states.d.ts +35 -0
  409. package/lib/utils/formatting/empty-states.js +70 -0
  410. package/lib/utils/formatting/empty-states.js.map +1 -0
  411. package/lib/utils/formatting/errors.d.ts +33 -0
  412. package/lib/utils/formatting/errors.js +72 -0
  413. package/lib/utils/formatting/errors.js.map +1 -0
  414. package/lib/utils/formatting/field-types.d.ts +32 -0
  415. package/lib/utils/formatting/field-types.js +88 -0
  416. package/lib/utils/formatting/field-types.js.map +1 -0
  417. package/lib/utils/formatting/index.d.ts +29 -0
  418. package/lib/utils/formatting/index.js +28 -0
  419. package/lib/utils/formatting/index.js.map +1 -0
  420. package/lib/utils/formatting/indicators.d.ts +113 -0
  421. package/lib/utils/formatting/indicators.js +161 -0
  422. package/lib/utils/formatting/indicators.js.map +1 -0
  423. package/lib/utils/formatting/loading-messages.d.ts +37 -0
  424. package/lib/utils/formatting/loading-messages.js +50 -0
  425. package/lib/utils/formatting/loading-messages.js.map +1 -0
  426. package/lib/utils/formatting/namespace-display.d.ts +31 -0
  427. package/lib/utils/formatting/namespace-display.js +64 -0
  428. package/lib/utils/formatting/namespace-display.js.map +1 -0
  429. package/lib/utils/formatting/numbers.d.ts +73 -0
  430. package/lib/utils/formatting/numbers.js +187 -0
  431. package/lib/utils/formatting/numbers.js.map +1 -0
  432. package/lib/utils/formatting/object-describe-display.d.ts +117 -0
  433. package/lib/utils/formatting/object-describe-display.js +447 -0
  434. package/lib/utils/formatting/object-describe-display.js.map +1 -0
  435. package/lib/utils/formatting/object-list-display.d.ts +213 -0
  436. package/lib/utils/formatting/object-list-display.js +672 -0
  437. package/lib/utils/formatting/object-list-display.js.map +1 -0
  438. package/lib/utils/formatting/org-identity.d.ts +15 -0
  439. package/lib/utils/formatting/org-identity.js +28 -0
  440. package/lib/utils/formatting/org-identity.js.map +1 -0
  441. package/lib/utils/formatting/record-age-grid.d.ts +41 -0
  442. package/lib/utils/formatting/record-age-grid.js +56 -0
  443. package/lib/utils/formatting/record-age-grid.js.map +1 -0
  444. package/lib/utils/formatting/sections.d.ts +108 -0
  445. package/lib/utils/formatting/sections.js +150 -0
  446. package/lib/utils/formatting/sections.js.map +1 -0
  447. package/lib/utils/formatting/tables.d.ts +90 -0
  448. package/lib/utils/formatting/tables.js +113 -0
  449. package/lib/utils/formatting/tables.js.map +1 -0
  450. package/lib/utils/formatting/user-details-display.d.ts +101 -0
  451. package/lib/utils/formatting/user-details-display.js +425 -0
  452. package/lib/utils/formatting/user-details-display.js.map +1 -0
  453. package/lib/utils/pagination/index.d.ts +11 -0
  454. package/lib/utils/pagination/index.js +18 -0
  455. package/lib/utils/pagination/index.js.map +1 -0
  456. package/lib/utils/pagination/keypress-reader.d.ts +20 -0
  457. package/lib/utils/pagination/keypress-reader.js +63 -0
  458. package/lib/utils/pagination/keypress-reader.js.map +1 -0
  459. package/lib/utils/pagination/paginate-output.d.ts +48 -0
  460. package/lib/utils/pagination/paginate-output.js +136 -0
  461. package/lib/utils/pagination/paginate-output.js.map +1 -0
  462. package/messages/compatibility.check.md +71 -0
  463. package/messages/cuneiform.access.md +138 -0
  464. package/messages/definition.create.md +508 -0
  465. package/messages/definition.export.md +56 -13
  466. package/messages/definition.get.md +147 -0
  467. package/messages/definition.import.md +35 -18
  468. package/messages/definition.list.md +264 -0
  469. package/messages/definition.purge.md +318 -0
  470. package/messages/definition.update.md +118 -0
  471. package/messages/mcp.serve.md +66 -0
  472. package/messages/object.describe.md +205 -0
  473. package/messages/object.list.md +443 -0
  474. package/messages/org.details.md +386 -0
  475. package/messages/org.reset.md +71 -0
  476. package/messages/profile.md +231 -0
  477. package/messages/profile.request.cancel.md +143 -0
  478. package/messages/profile.request.delete.md +139 -0
  479. package/messages/profile.request.list.md +89 -0
  480. package/messages/summary.purge.md +218 -0
  481. package/messages/summary.reprofile.md +150 -0
  482. package/messages/summary.stop.md +157 -0
  483. package/messages/user.details.md +501 -0
  484. package/oclif.lock +1954 -4859
  485. package/oclif.manifest.json +2698 -82
  486. package/package.json +89 -18
  487. package/lib/commands/cuneiform/about.d.ts +0 -13
  488. package/lib/commands/cuneiform/about.js +0 -26
  489. package/lib/commands/cuneiform/about.js.map +0 -1
  490. package/lib/commands/hello/world.d.ts +0 -14
  491. package/lib/commands/hello/world.js +0 -27
  492. package/lib/commands/hello/world.js.map +0 -1
  493. package/lib/index.d.ts +0 -2
  494. package/lib/index.js +0 -2
  495. package/lib/index.js.map +0 -1
  496. package/messages/cuneiform.about.md +0 -19
  497. package/messages/hello.world.md +0 -29
package/LICENSE CHANGED
@@ -1,36 +1,87 @@
1
- Cuneiform CLI - Proprietary Software License
1
+ Cuneiform for Salesforce CLI Proprietary Software License
2
2
 
3
- Copyright (c) 2025 PeerNova, Inc. All Rights Reserved.
3
+ Copyright (c) 2026, PeerNova, Inc. All Rights Reserved.
4
4
 
5
5
  TERMS AND CONDITIONS
6
6
 
7
- 1. GRANT OF LICENSE
8
- This software is licensed, not sold. Subject to a valid Cuneiform
9
- subscription agreement, PeerNova, Inc. grants you a limited, non-exclusive,
10
- non-transferable license to use this software solely in connection
11
- with Cuneiform products.
7
+ 1. PROPRIETARY SOFTWARE
8
+ This software and all associated documentation, source code, and materials
9
+ ("Software") are the proprietary and confidential property of PeerNova, Inc.
10
+ This Software is not open source. Access to the source code does not grant
11
+ any license beyond what is expressly stated herein.
12
12
 
13
- 2. RESTRICTIONS
13
+ 2. GRANT OF LICENSE
14
+ Subject to a valid, executed Master Subscription Agreement ("MSA") between
15
+ you (or your organization) and PeerNova, Inc., PeerNova grants you a limited,
16
+ non-exclusive, non-transferable, non-sublicensable license to use this
17
+ Software solely in connection with Cuneiform for Salesforce products and
18
+ services as specified in your MSA.
19
+
20
+ If you do not have a separate written agreement with PeerNova, your use of
21
+ Cuneiform for Salesforce is governed by the terms available at:
22
+ https://peernova.com/legal-cfsf/msa/
23
+
24
+ 3. NO LICENSE WITHOUT AGREEMENT
25
+ If you are not a current PeerNova customer with an active MSA, you have no
26
+ right to use, copy, modify, or distribute this Software. If you have received
27
+ access to this Software without an active MSA, you must cease all use
28
+ immediately and contact PeerNova at sfsupport@peernova.com to arrange
29
+ proper licensing.
30
+
31
+ 4. RESTRICTIONS
14
32
  You may NOT:
15
- - Modify, adapt, or create derivative works
16
- - Reverse engineer, decompile, or disassemble
17
- - Remove or alter proprietary notices
18
- - Redistribute, sublicense, or transfer
19
- - Use without a valid Cuneiform subscription
20
-
21
- 3. NO WARRANTY
22
- THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
23
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
25
-
26
- 4. LIMITATION OF LIABILITY
27
- IN NO EVENT SHALL PEERNOVA, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
30
- DEALINGS IN THE SOFTWARE.
31
-
32
- 5. TERMINATION
33
- This license terminates automatically if you violate any terms
34
- or if your Cuneiform subscription expires or is terminated.
35
-
36
- For licensing inquiries: legal@peernova.com
33
+ - Modify, adapt, translate, or create derivative works of this Software
34
+ - Reverse engineer, decompile, disassemble, or otherwise attempt to derive
35
+ the source code (except to the extent expressly permitted by applicable law)
36
+ - Remove, alter, or obscure any proprietary notices, labels, or marks
37
+ - Redistribute, sublicense, rent, lease, lend, or transfer this Software
38
+ to any third party
39
+ - Use this Software for any purpose not expressly authorized by your MSA
40
+ - Use this Software to develop competing products or services
41
+
42
+ 5. CONFIDENTIALITY
43
+ This Software contains trade secrets and confidential information of
44
+ PeerNova, Inc. You agree to maintain the confidentiality of the Software
45
+ and not disclose it to any third party without PeerNova's prior written
46
+ consent, subject to the terms of your MSA.
47
+
48
+ 6. NO WARRANTY
49
+ THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS
50
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
51
+ FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. PEERNOVA, INC.
52
+ DOES NOT WARRANT THAT THE SOFTWARE WILL MEET YOUR REQUIREMENTS OR THAT
53
+ ITS OPERATION WILL BE UNINTERRUPTED OR ERROR-FREE.
54
+
55
+ 7. LIMITATION OF LIABILITY
56
+ IN NO EVENT SHALL PEERNOVA, INC. BE LIABLE FOR ANY INDIRECT, INCIDENTAL,
57
+ SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, OR ANY LOSS OF PROFITS,
58
+ REVENUE, DATA, OR DATA USE, ARISING OUT OF OR IN CONNECTION WITH THIS
59
+ SOFTWARE, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, EVEN IF
60
+ PEERNOVA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. PEERNOVA'S
61
+ TOTAL LIABILITY SHALL NOT EXCEED THE AMOUNTS PAID BY YOU UNDER YOUR MSA
62
+ DURING THE TWELVE (12) MONTHS PRECEDING THE CLAIM.
63
+
64
+ 8. TERMINATION
65
+ This license terminates automatically if:
66
+ - You violate any term of this license or your MSA
67
+ - Your MSA expires or is terminated for any reason
68
+ - You fail to maintain an active Cuneiform for Salesforce subscription
69
+
70
+ Upon termination, you must cease all use of the Software and destroy all
71
+ copies in your possession.
72
+
73
+ 9. GOVERNING LAW
74
+ This license shall be governed by and construed in accordance with the
75
+ laws specified in your MSA. In the absence of an MSA, the laws of the
76
+ State of California, United States, shall apply.
77
+
78
+ 10. ENTIRE AGREEMENT
79
+ This license, together with your MSA, constitutes the entire agreement
80
+ between you and PeerNova, Inc. regarding the Software. In the event of
81
+ any conflict between this license and your MSA, the terms of the MSA
82
+ shall prevail.
83
+
84
+ For licensing inquiries: sfsupport@peernova.com
85
+ For legal questions: legal@peernova.com
86
+
87
+ Master Subscription Agreement: https://peernova.com/legal-cfsf/msa/
package/README.md CHANGED
@@ -1,203 +1,163 @@
1
1
  # @peernova/cuneiform-sf
2
2
 
3
- [![NPM](https://img.shields.io/npm/v/@peernova/cuneiform-sf.svg?label=@peernova/cuneiform-sf)](https://www.npmjs.com/package/@peernova/cuneiform-sf) [![Downloads/week](https://img.shields.io/npm/dw/@peernova/cuneiform-sf.svg)](https://npmjs.org/package/@peernova/cuneiform-sf) [![License](https://img.shields.io/badge/License-BSD%203--Clause-brightgreen.svg)](https://raw.githubusercontent.com/salesforcecli/@peernova/cuneiform-sf/main/LICENSE.txt)
3
+ [![NPM Version](https://img.shields.io/npm/v/@peernova/cuneiform-sf.svg?label=@peernova/cuneiform-sf)](https://www.npmjs.com/package/@peernova/cuneiform-sf)
4
+ [![Downloads/week](https://img.shields.io/npm/dw/@peernova/cuneiform-sf.svg)](https://www.npmjs.com/package/@peernova/cuneiform-sf)
5
+ [![License](https://img.shields.io/badge/License-Proprietary-blue.svg)](https://github.com/PeerNova-Solutions/salesforce-cli/blob/development-ai/LICENSE)
4
6
 
5
- ## Using the template
7
+ > **Know what your Salesforce data is actually doing — before you deploy Agentforce, plan a migration, or prioritize data quality.**
6
8
 
7
- This repository provides a template for creating a plugin for the Salesforce CLI. To convert this template to a working plugin:
9
+ `@peernova/cuneiform-sf` is the Salesforce CLI plugin for [Cuneiform For Salesforce](https://peernova.com). It profiles objects, fields, and value usage patterns directly from your org and gives you evidence for decisions that previously required weeks of manual analysis or specialist data-management expertise.
8
10
 
9
- 1. Please get in touch with the Platform CLI team. We want to help you develop your plugin.
10
- 2. Generate your plugin:
11
+ ## What is Cuneiform
11
12
 
12
- ```
13
- sf plugins install dev
14
- sf dev generate plugin
13
+ Cuneiform is built around a single discipline: **Know Your Customer's Data (KYCD)**. You can't deploy AI, migrate an org, or prioritize remediation if you don't know what's in there. The CLI surfaces that knowledge in three phases:
15
14
 
16
- git init -b main
17
- git add . && git commit -m "chore: initial commit"
18
- ```
15
+ | Phase | Question it answers | Commands |
16
+ | ------------ | -------------------------------- | -------------------------------------------------------------------------------- |
17
+ | **Discover** | What's in this org? | `cuneiform org details`, `cuneiform object list`, `cuneiform object describe` |
18
+ | **Profile** | What does the data look like? | `cuneiform definition create`, `cuneiform profile` |
19
+ | **Operate** | How do we manage this over time? | `cuneiform definition export/import`, `cuneiform summary`, `cuneiform mcp serve` |
19
20
 
20
- 3. Create your plugin's repo in the salesforcecli github org
21
- 4. When you're ready, replace the contents of this README with the information you want.
21
+ It's built for Salesforce Admins, Analysts, Architects, and SI consultants who need evidence — population rates, value distributions, usage patterns — not assumptions.
22
22
 
23
- ## Learn about `sf` plugins
24
-
25
- Salesforce CLI plugins are based on the [oclif plugin framework](<(https://oclif.io/docs/introduction.html)>). Read the [plugin developer guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_plugins.meta/sfdx_cli_plugins/cli_plugins_architecture_sf_cli.htm) to learn about Salesforce CLI plugin development.
26
-
27
- This repository contains a lot of additional scripts and tools to help with general Salesforce node development and enforce coding standards. You should familiarize yourself with some of the [node developer packages](#tooling) used by Salesforce.
28
-
29
- Additionally, there are some additional tests that the Salesforce CLI will enforce if this plugin is ever bundled with the CLI. These test are included by default under the `posttest` script and it is required to keep these tests active in your plugin if you plan to have it bundled.
30
-
31
- ### Tooling
32
-
33
- - [@salesforce/core](https://github.com/forcedotcom/sfdx-core)
34
- - [@salesforce/kit](https://github.com/forcedotcom/kit)
35
- - [@salesforce/sf-plugins-core](https://github.com/salesforcecli/sf-plugins-core)
36
- - [@salesforce/ts-types](https://github.com/forcedotcom/ts-types)
37
- - [@salesforce/ts-sinon](https://github.com/forcedotcom/ts-sinon)
38
- - [@salesforce/dev-config](https://github.com/forcedotcom/dev-config)
39
- - [@salesforce/dev-scripts](https://github.com/forcedotcom/dev-scripts)
40
-
41
- ### Hooks
42
-
43
- For cross clouds commands, e.g. `sf env list`, we utilize [oclif hooks](https://oclif.io/docs/hooks) to get the relevant information from installed plugins.
44
-
45
- This plugin includes sample hooks in the [src/hooks directory](src/hooks). You'll just need to add the appropriate logic. You can also delete any of the hooks if they aren't required for your plugin.
46
-
47
- # Everything past here is only a suggestion as to what should be in your specific plugin's description
48
-
49
- This plugin is bundled with the [Salesforce CLI](https://developer.salesforce.com/tools/sfdxcli). For more information on the CLI, read the [getting started guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_intro.htm).
50
-
51
- We always recommend using the latest version of these commands bundled with the CLI, however, you can install a specific version or tag if needed.
23
+ ## Install
52
24
 
53
- ## Prerequisites
25
+ The plugin runs on top of the Salesforce CLI (`sf`). Install both, plus the SFDMU peer dependency:
54
26
 
55
- ### SFDMU (SFDX Data Move Utility)
27
+ ```bash
28
+ # 1. Install the Salesforce CLI (if you don't have it)
29
+ npm install -g @salesforce/cli
56
30
 
57
- This plugin requires the SFDMU plugin for data export/import operations. Install it before using the Cuneiform data migration commands:
31
+ # 2. Install the Cuneiform plugin
32
+ sf plugins install @peernova/cuneiform-sf
58
33
 
59
- ```bash
34
+ # 3. Install SFDMU (required peer dependency for definition import/export)
60
35
  sf plugins install sfdmu
61
36
  ```
62
37
 
63
- Verify the installation:
38
+ Verify:
64
39
 
65
40
  ```bash
41
+ sf cuneiform --help
66
42
  sf sfdmu --help
67
43
  ```
68
44
 
69
- For more information about SFDMU, visit: https://help.sfdmu.com
70
-
71
- ## Install
45
+ > **SFDMU** ([sfdmu.com](https://help.sfdmu.com)) powers the data-move operations used by `definition export` and `definition import`. It is a required peer dependency.
72
46
 
73
- ```bash
74
- sf plugins install @peernova/cuneiform-sf@x.y.z
75
- ```
76
-
77
- ## Issues
78
-
79
- Please report any issues at https://github.com/forcedotcom/cli/issues
80
-
81
- ## Contributing
47
+ ## Compatibility
82
48
 
83
- 1. Please read our [Code of Conduct](CODE_OF_CONDUCT.md)
84
- 2. Create a new issue before starting your project so that we can keep track of
85
- what you are trying to add/fix. That way, we can also offer suggestions or
86
- let you know if there is already an effort in progress.
87
- 3. Fork this repository.
88
- 4. [Build the plugin locally](#build)
89
- 5. Create a _topic_ branch in your fork. Note, this step is recommended but technically not required if contributing using a fork.
90
- 6. Edit the code in your fork.
91
- 7. Write appropriate tests for your changes. Try to achieve at least 95% code coverage on any new code. No pull request will be accepted without unit tests.
92
- 8. Sign CLA (see [CLA](#cla) below).
93
- 9. Send us a pull request when you are done. We'll review your code, suggest any needed changes, and merge it in.
49
+ Each CLI release expects a minimum version of the **Cuneiform For Salesforce** managed package installed in your target org. This package is identified by the Salesforce namespace `pnova` — if you see `pnova__` prefixed objects or fields in your org, Cuneiform is installed. The required version is published in this package's `package.json` under `cuneiform.requiredAppVersion`:
94
50
 
95
- ### CLA
96
-
97
- External contributors will be required to sign a Contributor's License
98
- Agreement. You can do so by going to https://cla.salesforce.com/sign-cla.
99
-
100
- ### Build
101
-
102
- To build the plugin locally, make sure to have yarn installed and run the following commands:
103
-
104
- ```bash
105
- # Clone the repository
106
- git clone git@github.com:salesforcecli/@peernova/cuneiform-sf
107
-
108
- # Install the dependencies and compile
109
- yarn && yarn build
51
+ ```jsonc
52
+ {
53
+ "name": "@peernova/cuneiform-sf",
54
+ "cuneiform": {
55
+ "requiredAppVersion": "4.12.0.17"
56
+ }
57
+ }
110
58
  ```
111
59
 
112
- To use your plugin, run using the local `./bin/dev` or `./bin/dev.cmd` file.
60
+ Check what this CLI build expects (no auth, no API calls):
113
61
 
114
62
  ```bash
115
- # Run using local run file.
116
- ./bin/dev hello world
63
+ sf cuneiform compatibility check
117
64
  ```
118
65
 
119
- There should be no differences when running via the Salesforce CLI or using the local run file. However, it can be useful to link the plugin to do some additional testing or run your commands from anywhere on your machine.
66
+ Verify a specific org meets the minimum:
120
67
 
121
68
  ```bash
122
- # Link your plugin to the sf cli
123
- sf plugins link .
124
- # To verify
125
- sf plugins
69
+ sf cuneiform compatibility check --target-org my-org
126
70
  ```
127
71
 
128
- ## Commands
129
-
130
- <!-- commands -->
131
-
132
- - [`sf cuneiform about`](#sf-cuneiform-about)
133
- - [`sf hello world`](#sf-hello-world)
134
-
135
- ## `sf cuneiform about`
136
-
137
- Summary of a command.
72
+ The command exits non-zero when the installed version is older than required or the managed package is not installed — suitable for CI gates that run profiling after a fresh package install.
138
73
 
139
- ```
140
- USAGE
141
- $ sf cuneiform about [--json] [--flags-dir <value>] [-n <value>]
74
+ | State | Exit | Meaning |
75
+ | --------------------------- | :--: | ------------------------------------------------------------------------------------------------------------------------ |
76
+ | `installed-match` | 0 | Installed version equals required (Major.Minor.Patch.Build padded) |
77
+ | `installed-newer` | 0 | Installed version is newer than required |
78
+ | `installed-version-unknown` | 0 | Cuneiform detected (via `pnova` namespace) but version not exposed (common in source-pushed scratch orgs) — can't verify |
79
+ | `installed-older` | 1 | Installed version is older than required — upgrade the org |
80
+ | `not-installed` | 1 | Cuneiform managed package not installed in the org |
142
81
 
143
- FLAGS
144
- -n, --name=<value> Description of a flag.
82
+ ## Quickstart
145
83
 
146
- GLOBAL FLAGS
147
- --flags-dir=<value> Import flag values from a directory.
148
- --json Format output as json.
84
+ A first profile in five commands:
149
85
 
150
- DESCRIPTION
151
- Summary of a command.
86
+ ```bash
87
+ # 1. Authenticate to your target org
88
+ sf org login web --alias my-org
152
89
 
153
- More information about a command. Don't repeat the summary.
90
+ # 2. Confirm the user has the permissions Cuneiform needs (configures them if not)
91
+ sf cuneiform user details --target-org my-org
154
92
 
155
- EXAMPLES
156
- $ sf cuneiform about
93
+ # 3. See what's in the org
94
+ sf cuneiform org details --target-org my-org
95
+ sf cuneiform object list --target-org my-org
157
96
 
158
- FLAG DESCRIPTIONS
159
- -n, --name=<value> Description of a flag.
97
+ # 4. Create a profiling definition for an object you care about (e.g. Account)
98
+ sf cuneiform definition create --target-org my-org --sobject Account
160
99
 
161
- More information about a flag. Don't repeat the summary.
100
+ # 5. Run the profile and review results
101
+ sf cuneiform profile --target-org my-org --definition-key <key-from-step-4>
102
+ sf cuneiform summary reprofile --help
162
103
  ```
163
104
 
164
- _See code: [src/commands/cuneiform/about.ts](https://github.com/PeerNova-Solutions/cuneiform-cli/blob/1.0.2/src/commands/cuneiform/about.ts)_
105
+ Append `--help` to any command for the full flag reference. All commands support `--json` for structured output in CI pipelines and scripts.
165
106
 
166
- ## `sf hello world`
107
+ ## Commands
167
108
 
168
- Say hello.
109
+ All commands are namespaced under the `cuneiform` topic.
110
+
111
+ | Command | What it does |
112
+ | ------------------------------------- | --------------------------------------------------------------------------- |
113
+ | `sf cuneiform compatibility check` | Verify CLI ↔ managed-package version compatibility |
114
+ | `sf cuneiform definition create` | Create profiling definition(s) |
115
+ | `sf cuneiform definition get` | Retrieve profiling definition(s) by key |
116
+ | `sf cuneiform definition list` | List all profiling definitions with status |
117
+ | `sf cuneiform definition update` | Update definition metadata (name, category, description, …) |
118
+ | `sf cuneiform definition purge` | Delete unused definitions |
119
+ | `sf cuneiform definition export` | Export definitions to a VCS-friendly format |
120
+ | `sf cuneiform definition import` | Import definitions from an exported bundle |
121
+ | `sf cuneiform object list` | List objects with record counts, type distribution, and namespace filtering |
122
+ | `sf cuneiform object describe` | Retrieve comprehensive object metadata (fields, record types, dependencies) |
123
+ | `sf cuneiform org details` | Show org configuration, installation status, namespaces, and limits |
124
+ | `sf cuneiform profile` | Execute profiling for one or more definitions |
125
+ | `sf cuneiform profile request list` | List profiling requests with status and progress |
126
+ | `sf cuneiform profile request cancel` | Cancel in-progress profiling requests |
127
+ | `sf cuneiform profile request delete` | Delete terminal profiling requests |
128
+ | `sf cuneiform summary purge` | Delete profiling summary records (with dry-run preview) |
129
+ | `sf cuneiform summary stop` | Stop in-progress profiling summaries |
130
+ | `sf cuneiform summary reprofile` | Re-execute profiling for existing summaries |
131
+ | `sf cuneiform user details` | Show user readiness; configure required permissions |
132
+
133
+ ## Discovery
134
+
135
+ Before profiling, deploying Agentforce, or planning a migration, start by understanding what's actually in an object. `object describe` is the entry point — it answers _"what fields exist, how many are custom, and what's the shape of this object today?"_ — in seconds, with no SOQL and no Setup clicks.
169
136
 
137
+ ```bash
138
+ sf cuneiform object describe --target-org my-org --object Case --with-fields
170
139
  ```
171
- USAGE
172
- $ sf hello world [--json] [--flags-dir <value>] [-n <value>]
173
-
174
- FLAGS
175
- -n, --name=<value> [default: World] The name of the person you'd like to say hello to.
176
-
177
- GLOBAL FLAGS
178
- --flags-dir=<value> Import flag values from a directory.
179
- --json Format output as json.
180
140
 
181
- DESCRIPTION
182
- Say hello.
141
+ You'll see the total field count, a custom-vs-standard breakdown, and per-field metadata (type, required, unique, referenced object for lookups). It's the natural first stop for an Agentforce readiness check, a data-quality assessment, or scoping a migration.
183
142
 
184
- Say hello either to the world or someone you know.
143
+ Narrow the view with follow-up flags as the question gets sharper:
185
144
 
186
- EXAMPLES
187
- Say hello to the world:
145
+ ```bash
146
+ # Just the lookup fields, sorted by referenced object
147
+ sf cuneiform object describe --target-org my-org --object Case --with-fields --field-type lookup
188
148
 
189
- $ sf hello world
149
+ # Just the custom Agentforce-tagged fields
150
+ sf cuneiform object describe --target-org my-org --object Case --with-fields --field-pattern '__c$'
151
+ ```
190
152
 
191
- Say hello to someone you know:
153
+ ## Issues
192
154
 
193
- $ sf hello world --name Astro
155
+ Report bugs and request features at <https://github.com/PeerNova-Solutions/salesforce-cli/issues>.
194
156
 
195
- FLAG DESCRIPTIONS
196
- -n, --name=<value> The name of the person you'd like to say hello to.
157
+ ## Contributing
197
158
 
198
- This person can be anyone in the world!
199
- ```
159
+ This is a PeerNova-published package. PeerNova engineers — see the in-repo `CONTRIBUTING.md` and `CLAUDE.md` for development conventions, branch model, and PR workflow. External contributors should open an issue before starting work so we can coordinate.
200
160
 
201
- _See code: [src/commands/hello/world.ts](https://github.com/PeerNova-Solutions/cuneiform-cli/blob/1.0.2/src/commands/hello/world.ts)_
161
+ ## License
202
162
 
203
- <!-- commandsstop -->
163
+ Proprietary see [LICENSE](./LICENSE). Copyright © PeerNova, Inc.