@elevasis/sdk 1.44.3 → 1.46.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.
Files changed (259) hide show
  1. package/dist/cli.cjs +35026 -30226
  2. package/dist/index.d.ts +1786 -808
  3. package/dist/index.js +789 -739
  4. package/dist/node/index.d.ts +105 -181
  5. package/dist/node/index.js +2 -2
  6. package/dist/test-utils/index.d.ts +901 -359
  7. package/dist/test-utils/index.js +587 -824
  8. package/dist/worker/index.d.ts +12685 -0
  9. package/dist/worker/index.js +188 -216
  10. package/package.json +4 -7
  11. package/reference/_navigation.md +161 -22
  12. package/reference/_reference-manifest.json +228 -4
  13. package/reference/claude-config.md +8 -0
  14. package/reference/core/exports.mdx +2 -0
  15. package/reference/core/index.mdx +3 -3
  16. package/reference/examples/organization-model.ts +117 -111
  17. package/reference/index.mdx +4 -4
  18. package/reference/packages/core/src/business/README.md +4 -1
  19. package/reference/packages/core/src/content/README.md +19 -0
  20. package/reference/packages/core/src/organization-model/README.md +148 -149
  21. package/reference/packages/core/src/organization-model/readiness/README.md +42 -0
  22. package/reference/packages/ui/src/features/README.md +28 -28
  23. package/reference/rules/active-change-index.md +40 -54
  24. package/reference/rules/agent-runtime.md +81 -0
  25. package/reference/rules/agent-start-here.md +71 -163
  26. package/reference/rules/deployment.md +33 -10
  27. package/reference/rules/error-handling.md +26 -0
  28. package/reference/rules/execution.md +13 -0
  29. package/reference/rules/frontend.md +10 -3
  30. package/reference/rules/observability.md +9 -1
  31. package/reference/rules/operations.md +26 -17
  32. package/reference/rules/organization-model.md +74 -88
  33. package/reference/rules/organization-os.md +71 -88
  34. package/reference/rules/package-taxonomy.md +11 -2
  35. package/reference/rules/platform.md +13 -7
  36. package/reference/rules/shared-types.md +36 -0
  37. package/reference/rules/task-tracking.md +30 -5
  38. package/reference/rules/ui.md +145 -3
  39. package/reference/rules/vibe-intents.md +271 -0
  40. package/reference/rules/vibe.md +17 -243
  41. package/reference/scaffold/core/organization-graph.mdx +112 -99
  42. package/reference/scaffold/core/organization-model.mdx +231 -215
  43. package/reference/scaffold/operations/propagation-pipeline.md +16 -17
  44. package/reference/scaffold/operations/scaffold-maintenance.md +22 -20
  45. package/reference/scaffold/operations/workflow-recipes.md +72 -20
  46. package/reference/scaffold/recipes/add-a-feature.md +156 -146
  47. package/reference/scaffold/recipes/add-a-resource.md +123 -117
  48. package/reference/scaffold/recipes/customize-crm-actions.md +28 -13
  49. package/reference/scaffold/recipes/customize-knowledge-browser.md +52 -117
  50. package/reference/scaffold/recipes/customize-organization-model.md +161 -149
  51. package/reference/scaffold/recipes/extend-a-base-entity.md +156 -140
  52. package/reference/scaffold/recipes/extend-content.md +265 -0
  53. package/reference/scaffold/recipes/extend-crm.md +16 -11
  54. package/reference/scaffold/recipes/extend-lead-gen.md +37 -21
  55. package/reference/scaffold/recipes/gate-by-feature-or-admin.md +160 -118
  56. package/reference/scaffold/recipes/index.md +6 -3
  57. package/reference/scaffold/recipes/query-the-knowledge-graph.md +23 -23
  58. package/reference/scaffold/reference/contracts.md +30 -56
  59. package/reference/scaffold/reference/feature-registry.md +3 -0
  60. package/reference/scaffold/reference/glossary.md +4 -4
  61. package/reference/scaffold/reference/system-interface-capabilities.md +5 -4
  62. package/reference/scaffold/ui/composition-extensibility.mdx +271 -232
  63. package/reference/scaffold/ui/customization.md +2 -2
  64. package/reference/scaffold/ui/feature-flags-and-gating.md +14 -6
  65. package/reference/scaffold/ui/feature-shell.mdx +277 -62
  66. package/reference/scaffold/ui/recipes.md +229 -197
  67. package/reference/sdk/cli-management.mdx +166 -33
  68. package/reference/sdk/cli.mdx +90 -13
  69. package/reference/sdk/concepts.mdx +2 -0
  70. package/reference/sdk/define-builders.mdx +76 -0
  71. package/reference/sdk/deployment/command-center.mdx +6 -2
  72. package/reference/sdk/deployment/execution-reference.mdx +64 -186
  73. package/reference/sdk/deployment/index.mdx +2 -0
  74. package/reference/sdk/exports.mdx +4 -4
  75. package/reference/sdk/framework/agent.mdx +52 -116
  76. package/reference/sdk/framework/index.mdx +46 -65
  77. package/reference/sdk/framework/project-structure.mdx +150 -205
  78. package/reference/sdk/framework/tutorial-system.mdx +2 -2
  79. package/reference/sdk/human-in-the-loop.mdx +152 -0
  80. package/reference/sdk/index.mdx +6 -7
  81. package/reference/sdk/platform-tools/adapters-platform.mdx +3 -1
  82. package/reference/sdk/platform-tools/index.mdx +12 -0
  83. package/reference/sdk/platform-tools/type-safety.mdx +4 -0
  84. package/reference/sdk/project-deployment-spec.mdx +131 -0
  85. package/reference/sdk/resources/index.mdx +21 -7
  86. package/reference/sdk/resources/patterns.mdx +54 -24
  87. package/reference/sdk/resources/types.mdx +7 -4
  88. package/reference/sdk/templates/data-enrichment.mdx +7 -3
  89. package/reference/sdk/templates/email-sender.mdx +139 -135
  90. package/reference/sdk/templates/lead-scorer.mdx +5 -1
  91. package/reference/sdk/templates/pdf-generator.mdx +155 -151
  92. package/reference/sdk/templates/recurring-job.mdx +195 -189
  93. package/reference/sdk/templates/text-classifier.mdx +4 -0
  94. package/reference/sdk/templates/web-scraper.mdx +139 -135
  95. package/reference/spine/spine-primer.md +135 -96
  96. package/reference/ui/exports.mdx +1 -0
  97. package/reference/ui/index.mdx +14 -7
  98. package/dist/types/worker/adapters/anymailfinder.d.ts +0 -14
  99. package/dist/types/worker/adapters/apify.d.ts +0 -14
  100. package/dist/types/worker/adapters/approval.d.ts +0 -23
  101. package/dist/types/worker/adapters/attio.d.ts +0 -22
  102. package/dist/types/worker/adapters/clickup.d.ts +0 -22
  103. package/dist/types/worker/adapters/create-adapter.d.ts +0 -41
  104. package/dist/types/worker/adapters/crm.d.ts +0 -20
  105. package/dist/types/worker/adapters/dropbox.d.ts +0 -14
  106. package/dist/types/worker/adapters/email.d.ts +0 -25
  107. package/dist/types/worker/adapters/execution.d.ts +0 -22
  108. package/dist/types/worker/adapters/gmail.d.ts +0 -14
  109. package/dist/types/worker/adapters/google-sheets.d.ts +0 -14
  110. package/dist/types/worker/adapters/index.d.ts +0 -33
  111. package/dist/types/worker/adapters/instantly.d.ts +0 -14
  112. package/dist/types/worker/adapters/lead.d.ts +0 -28
  113. package/dist/types/worker/adapters/list.d.ts +0 -9
  114. package/dist/types/worker/adapters/llm.d.ts +0 -45
  115. package/dist/types/worker/adapters/millionverifier.d.ts +0 -14
  116. package/dist/types/worker/adapters/notification.d.ts +0 -28
  117. package/dist/types/worker/adapters/pdf.d.ts +0 -22
  118. package/dist/types/worker/adapters/projects.d.ts +0 -20
  119. package/dist/types/worker/adapters/resend.d.ts +0 -14
  120. package/dist/types/worker/adapters/scheduler.d.ts +0 -25
  121. package/dist/types/worker/adapters/signature-api.d.ts +0 -14
  122. package/dist/types/worker/adapters/storage.d.ts +0 -33
  123. package/dist/types/worker/adapters/stripe.d.ts +0 -14
  124. package/dist/types/worker/adapters/tomba.d.ts +0 -14
  125. package/dist/types/worker/index.d.ts +0 -60
  126. package/dist/types/worker/platform.d.ts +0 -90
  127. package/dist/types/worker/utils.d.ts +0 -9
  128. package/reference/claude-config/Overview.md +0 -230
  129. package/reference/claude-config/hooks/post-edit-validate.mjs +0 -98
  130. package/reference/claude-config/hooks/scaffold-registry-reminder.mjs +0 -187
  131. package/reference/claude-config/hooks/tool-failure-recovery.mjs +0 -73
  132. package/reference/claude-config/registries/graph-skills.json +0 -4
  133. package/reference/claude-config/registries/knowledge-flags.json +0 -154
  134. package/reference/claude-config/registries/skill-coverage.json +0 -20
  135. package/reference/claude-config/rules/active-change-index.md +0 -22
  136. package/reference/claude-config/rules/agent-start-here.md +0 -22
  137. package/reference/claude-config/rules/deployment.md +0 -22
  138. package/reference/claude-config/rules/error-handling.md +0 -22
  139. package/reference/claude-config/rules/execution.md +0 -22
  140. package/reference/claude-config/rules/frontend.md +0 -22
  141. package/reference/claude-config/rules/observability.md +0 -22
  142. package/reference/claude-config/rules/operations.md +0 -22
  143. package/reference/claude-config/rules/organization-model.md +0 -22
  144. package/reference/claude-config/rules/organization-os.md +0 -22
  145. package/reference/claude-config/rules/package-taxonomy.md +0 -22
  146. package/reference/claude-config/rules/platform.md +0 -22
  147. package/reference/claude-config/rules/shared-types.md +0 -22
  148. package/reference/claude-config/rules/task-tracking.md +0 -22
  149. package/reference/claude-config/rules/topbar-actions.md +0 -70
  150. package/reference/claude-config/rules/ui.md +0 -22
  151. package/reference/claude-config/rules/vibe.md +0 -22
  152. package/reference/claude-config/scripts/statusline-command.js +0 -18
  153. package/reference/claude-config/settings.json +0 -30
  154. package/reference/claude-config/skills/client/SKILL.md +0 -201
  155. package/reference/claude-config/skills/deploy/SKILL.md +0 -159
  156. package/reference/claude-config/skills/dsp/SKILL.md +0 -66
  157. package/reference/claude-config/skills/elevasis/SKILL.md +0 -251
  158. package/reference/claude-config/skills/explore/SKILL.md +0 -78
  159. package/reference/claude-config/skills/git-sync/SKILL.md +0 -166
  160. package/reference/claude-config/skills/om/SKILL.md +0 -475
  161. package/reference/claude-config/skills/om/operations/build.md +0 -237
  162. package/reference/claude-config/skills/om/operations/codify-level-a.md +0 -109
  163. package/reference/claude-config/skills/om/operations/codify-level-b.md +0 -159
  164. package/reference/claude-config/skills/om/operations/customers.md +0 -114
  165. package/reference/claude-config/skills/om/operations/features.md +0 -88
  166. package/reference/claude-config/skills/om/operations/goals.md +0 -123
  167. package/reference/claude-config/skills/om/operations/identity.md +0 -97
  168. package/reference/claude-config/skills/om/operations/labels.md +0 -110
  169. package/reference/claude-config/skills/om/operations/offerings.md +0 -114
  170. package/reference/claude-config/skills/om/operations/roles.md +0 -104
  171. package/reference/claude-config/skills/om/operations/scaffold.md +0 -163
  172. package/reference/claude-config/skills/om/operations/techStack.md +0 -38
  173. package/reference/claude-config/skills/project/SKILL.md +0 -1114
  174. package/reference/claude-config/skills/run-ui/SKILL.md +0 -73
  175. package/reference/claude-config/skills/save/SKILL.md +0 -183
  176. package/reference/claude-config/skills/setup/SKILL.md +0 -290
  177. package/reference/claude-config/skills/status/SKILL.md +0 -59
  178. package/reference/claude-config/skills/submit-request/SKILL.md +0 -180
  179. package/reference/claude-config/skills/sync/SKILL.md +0 -47
  180. package/reference/claude-config/skills/tutorial/SKILL.md +0 -259
  181. package/reference/claude-config/skills/tutorial/progress-template.md +0 -74
  182. package/reference/claude-config/skills/tutorial/technical.md +0 -1303
  183. package/reference/claude-config/skills/tutorial/vibe-coder.md +0 -890
  184. package/reference/claude-config/sync-notes/2026-04-22-git-sync-and-sync-notes.md +0 -27
  185. package/reference/claude-config/sync-notes/2026-04-22-lead-gen-deliverability-removal.md +0 -30
  186. package/reference/claude-config/sync-notes/2026-04-24-test-utils-and-template-tests.md +0 -73
  187. package/reference/claude-config/sync-notes/2026-04-24-ui-consolidation-and-sdk-cli-train.md +0 -86
  188. package/reference/claude-config/sync-notes/2026-04-25-auth-role-system-and-settings-roles.md +0 -55
  189. package/reference/claude-config/sync-notes/2026-04-27-crm-hitl-action-layer-cutover.md +0 -97
  190. package/reference/claude-config/sync-notes/2026-04-27-lead-gen-substrate-train.md +0 -112
  191. package/reference/claude-config/sync-notes/2026-04-29-crm-state-and-lead-gen-processing-status.md +0 -93
  192. package/reference/claude-config/sync-notes/2026-05-02-crm-ownership-next-action.md +0 -58
  193. package/reference/claude-config/sync-notes/2026-05-02-template-hardcode-workos-config.md +0 -56
  194. package/reference/claude-config/sync-notes/2026-05-04-elevasis-workspace.md +0 -71
  195. package/reference/claude-config/sync-notes/2026-05-04-knowledge-bundle.md +0 -83
  196. package/reference/claude-config/sync-notes/2026-05-04-template-skills-run-ui-and-tutorial.md +0 -59
  197. package/reference/claude-config/sync-notes/2026-05-05-list-builder.md +0 -42
  198. package/reference/claude-config/sync-notes/2026-05-06-crm-spine.md +0 -60
  199. package/reference/claude-config/sync-notes/2026-05-06-sdk-changes-release-train.md +0 -37
  200. package/reference/claude-config/sync-notes/2026-05-07-sdk-changes-release-train.md +0 -34
  201. package/reference/claude-config/sync-notes/2026-05-08-resource-governance-scaffold-guidance.md +0 -38
  202. package/reference/claude-config/sync-notes/2026-05-09-clients-domain.md +0 -32
  203. package/reference/claude-config/sync-notes/2026-05-09-command-system.md +0 -33
  204. package/reference/claude-config/sync-notes/2026-05-09-resource-governance-and-misc.md +0 -69
  205. package/reference/claude-config/sync-notes/2026-05-12-sdk-ready-release-train.md +0 -30
  206. package/reference/claude-config/sync-notes/2026-05-14-organization-model-ontology-refactor.md +0 -45
  207. package/reference/claude-config/sync-notes/2026-05-15-om-skill-rename-and-write-family.md +0 -52
  208. package/reference/claude-config/sync-notes/2026-05-17-sdk-boundary-consolidation.md +0 -33
  209. package/reference/claude-config/sync-notes/2026-05-20-om-define-helpers.md +0 -32
  210. package/reference/claude-config/sync-notes/2026-05-22-access-model-and-right-panel.md +0 -43
  211. package/reference/claude-config/sync-notes/2026-05-22-lead-gen-tenant-config.md +0 -40
  212. package/reference/claude-config/sync-notes/2026-05-22-org-model-multi-file-split.md +0 -61
  213. package/reference/claude-config/sync-notes/2026-05-23-branding-names-to-identity.md +0 -49
  214. package/reference/claude-config/sync-notes/2026-05-23-lead-gen-manage-access.md +0 -31
  215. package/reference/claude-config/sync-notes/2026-05-23-om-deployment-drift-detection.md +0 -42
  216. package/reference/claude-config/sync-notes/2026-05-23-om-full-model-deploy-contract.md +0 -33
  217. package/reference/claude-config/sync-notes/2026-05-23-ui-sdk-package-fixes.md +0 -37
  218. package/reference/claude-config/sync-notes/2026-05-24-platform-invite-router-core-baseline.md +0 -28
  219. package/reference/claude-config/sync-notes/2026-05-24-system-interface-readiness.md +0 -43
  220. package/reference/claude-config/sync-notes/2026-05-25-invitation-login-loader.md +0 -26
  221. package/reference/claude-config/sync-notes/2026-05-25-om-topbar-requests.md +0 -33
  222. package/reference/claude-config/sync-notes/2026-05-25-system-interface-profile-registry-and-substrate.md +0 -35
  223. package/reference/claude-config/sync-notes/2026-05-25-tenant-om-scaffold-cli.md +0 -49
  224. package/reference/claude-config/sync-notes/2026-05-25-vibe-operate-intent.md +0 -47
  225. package/reference/claude-config/sync-notes/2026-05-28-om-snapshot-sdk-workflow-config.md +0 -33
  226. package/reference/claude-config/sync-notes/2026-05-30-client-source-and-om-profiles.md +0 -39
  227. package/reference/claude-config/sync-notes/2026-06-02-knowledge-nested-group-routing.md +0 -27
  228. package/reference/claude-config/sync-notes/2026-06-02-nest-projects-under-platform.md +0 -45
  229. package/reference/claude-config/sync-notes/2026-06-03-skill-autogen-and-client-skill.md +0 -34
  230. package/reference/claude-config/sync-notes/2026-06-04-scaffold-registry-lane-severity.md +0 -34
  231. package/reference/claude-config/sync-notes/2026-06-05-appearance-app-mode-decouple.md +0 -29
  232. package/reference/claude-config/sync-notes/2026-06-05-ontology-endpoint-rename-and-knowledge-browser-ui.md +0 -86
  233. package/reference/claude-config/sync-notes/2026-06-06-om-build-systems-scaffold.md +0 -47
  234. package/reference/claude-config/sync-notes/2026-06-06-om-item-copy-references.md +0 -50
  235. package/reference/claude-config/sync-notes/2026-06-08-knowledge-base-page-not-found-fix.md +0 -76
  236. package/reference/claude-config/sync-notes/2026-06-09-agent-sessions-public-agent-chat-route.md +0 -75
  237. package/reference/claude-config/sync-notes/2026-06-09-sdk-cli-load-org-model-resolution.md +0 -42
  238. package/reference/claude-config/sync-notes/2026-06-12-agent-grants-visualizer-operations.md +0 -30
  239. package/reference/claude-config/sync-notes/2026-06-14-session-ux-and-project-cli-json.md +0 -33
  240. package/reference/claude-config/sync-notes/2026-06-14-shared-session-conversation-view.md +0 -26
  241. package/reference/claude-config/sync-notes/2026-06-15-session-chat-zero-wiring.md +0 -46
  242. package/reference/claude-config/sync-notes/2026-06-17-agent-session-ux-features.md +0 -34
  243. package/reference/claude-config/sync-notes/2026-06-25-shared-page-scroll-contract-guard.md +0 -52
  244. package/reference/claude-config/sync-notes/2026-06-26-leadgen-overview-om-telemetry.md +0 -47
  245. package/reference/claude-config/sync-notes/2026-07-21-agent-scaffold-hardening.md +0 -75
  246. package/reference/claude-config/sync-notes/2026-07-23-agent-session-memory.md +0 -49
  247. package/reference/claude-config/sync-notes/2026-07-23-workos-org-marker.md +0 -50
  248. package/reference/claude-config/sync-notes/2026-07-24-claude-5-models-and-session-surface-fixes.md +0 -116
  249. package/reference/claude-config/sync-notes/2026-07-27-agent-strict-output-and-turn-drift.md +0 -73
  250. package/reference/claude-config/sync-notes/2026-07-28-agent-reply-is-its-own-field.md +0 -84
  251. package/reference/claude-config/sync-notes/2026-07-30-login-screen-and-member-provisioning-state.md +0 -114
  252. package/reference/claude-config/sync-notes/2026-08-02-auth-guard-defaults-and-truncation-fix.md +0 -122
  253. package/reference/claude-config/sync-notes/2026-08-03-agent-prose-escape-normalization.md +0 -88
  254. package/reference/claude-config/sync-notes/2026-08-03-cli-gateway-errors-and-request-timeout.md +0 -120
  255. package/reference/claude-config/sync-notes/README.md +0 -43
  256. package/reference/sdk/framework/interaction-guidance.mdx +0 -182
  257. package/reference/sdk/framework/memory.mdx +0 -326
  258. package/reference/sdk/framework/resource-documentation.mdx +0 -90
  259. package/reference/sdk/roadmap.mdx +0 -164
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/sdk",
3
- "version": "1.44.3",
3
+ "version": "1.46.0",
4
4
  "description": "SDK for building Elevasis organization resources",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,7 +12,7 @@
12
12
  "import": "./dist/index.js"
13
13
  },
14
14
  "./worker": {
15
- "types": "./dist/types/worker/index.d.ts",
15
+ "types": "./dist/worker/index.d.ts",
16
16
  "import": "./dist/worker/index.js"
17
17
  },
18
18
  "./test-utils": {
@@ -28,10 +28,7 @@
28
28
  "dist/index.js",
29
29
  "dist/index.d.ts",
30
30
  "dist/worker/index.js",
31
- "dist/types/worker/index.d.ts",
32
- "dist/types/worker/platform.d.ts",
33
- "dist/types/worker/utils.d.ts",
34
- "dist/types/worker/adapters/",
31
+ "dist/worker/index.d.ts",
35
32
  "dist/test-utils/index.js",
36
33
  "dist/test-utils/index.d.ts",
37
34
  "dist/node/",
@@ -58,7 +55,7 @@
58
55
  "tsup": "^8.0.0",
59
56
  "typescript": "5.9.2",
60
57
  "zod": "^4.1.0",
61
- "@repo/core": "0.59.0",
58
+ "@repo/core": "0.61.0",
62
59
  "@repo/typescript-config": "0.0.0",
63
60
  "@repo/eslint-config": "0.0.0"
64
61
  },
@@ -4,7 +4,7 @@
4
4
 
5
5
  Auto-generated from the package reference manifests.
6
6
 
7
- Package entries indexed: 61.
7
+ Package entries indexed: 64.
8
8
 
9
9
  ## @elevasis/core / Auth
10
10
 
@@ -12,6 +12,12 @@ Package entries indexed: 61.
12
12
  | --- | --- | --- | --- |
13
13
  | Auth | `packages/core/src/README.md` | Published browser-safe auth contracts, AccessKeys, and Access Model primitives. | (not specified) |
14
14
 
15
+ ## @elevasis/core / Content
16
+
17
+ | Resource | Location | Description | When to Load |
18
+ | --- | --- | --- | --- |
19
+ | Content | `packages/core/src/content/README.md` | Published content pipeline API schemas: content items, the payload envelope, a content-keyed processing state, attempts, review, and distributions, plus platform-content typed interfaces. | (not specified) |
20
+
15
21
  ## @elevasis/core / Core
16
22
 
17
23
  | Resource | Location | Description | When to Load |
@@ -35,6 +41,7 @@ Package entries indexed: 61.
35
41
  | Resource | Location | Description | When to Load |
36
42
  | --- | --- | --- | --- |
37
43
  | Organization Model | `packages/core/src/organization-model/README.md` | Published organization-model schema, defaults, resolver, and types. | (not specified) |
44
+ | System Interface Readiness | `packages/core/src/organization-model/readiness/README.md` | Generic System Interface readiness engine, plus registerBuiltInReadinessProfile — the extension point for registering a readiness profile that carries real structural validation. | (not specified) |
38
45
 
39
46
  ## @elevasis/core / Testing
40
47
 
@@ -46,25 +53,25 @@ Package entries indexed: 61.
46
53
 
47
54
  | Resource | Location | Description | When to Load |
48
55
  | --- | --- | --- | --- |
49
- | SDK | `sdk/index.mdx` | Root SDK types, config, runtime errors, and registry surface. | (not specified) |
56
+ | SDK | `sdk/index.mdx` | Build and deploy workflows, agents, and resources with the Elevasis SDK | (not specified) |
50
57
 
51
58
  ## @elevasis/sdk / Runtime
52
59
 
53
60
  | Resource | Location | Description | When to Load |
54
61
  | --- | --- | --- | --- |
55
- | Worker Runtime | `sdk/runtime.mdx` | Worker runtime entrypoint, adapters, and platform execution surface. | (not specified) |
62
+ | Worker Runtime | `sdk/runtime.mdx` | How your code runs on the Elevasis platform -- execution lifecycle, concurrency, timeouts, cancellation, error handling, observability, resource limits, and v1 limitations | (not specified) |
56
63
 
57
64
  ## @elevasis/sdk / Testing
58
65
 
59
66
  | Resource | Location | Description | When to Load |
60
67
  | --- | --- | --- | --- |
61
- | Test Utils | `sdk/runtime.mdx` | Workflow runner, registry assertion, and typed adapter mocks for SDK consumers. | (not specified) |
68
+ | Test Utils | `sdk/runtime.mdx` | How your code runs on the Elevasis platform -- execution lifecycle, concurrency, timeouts, cancellation, error handling, observability, resource limits, and v1 limitations | (not specified) |
62
69
 
63
70
  ## @elevasis/sdk / Tooling
64
71
 
65
72
  | Resource | Location | Description | When to Load |
66
73
  | --- | --- | --- | --- |
67
- | Node Build Tooling | `sdk/cli.mdx` | Node-only build helpers: knowledge codegen and other fs/path/process utilities. Not browser-safe. | (not specified) |
74
+ | Node Build Tooling | `sdk/cli.mdx` | Core elevasis-sdk CLI commands -- validate, deploy, execute, inspect resources, manage credentials, rename, and enumerate the command catalog | (not specified) |
68
75
 
69
76
  ## @elevasis/ui / Build
70
77
 
@@ -102,6 +109,7 @@ Package entries indexed: 61.
102
109
  | Features Notes | `packages/ui/src/features/README.md` | Published Notes panel view and supporting note components for shared right-panel integrations. | (not specified) |
103
110
  | Features Right Panel Host | `packages/ui/src/features/README.md` | Published right-panel host provider, layer, trigger, keyboard shortcut, store, and view contract. | (not specified) |
104
111
  | Features Public Agent Chat | `packages/ui/src/features/README.md` | Published public agent chat surface for downstream shells. | (not specified) |
112
+ | Features Content | `packages/ui/src/features/README.md` | Published, data-free content review card surface (ContentReviewCard and its sub-components) for downstream shells. | (not specified) |
105
113
 
106
114
  ## @elevasis/ui / Foundation
107
115
 
@@ -161,23 +169,154 @@ Package entries indexed: 61.
161
169
 
162
170
  ## Scaffold Reference
163
171
 
164
- Universal scaffold documentation for all SDK projects. Source locations are co-located with owning packages; the SDK build copies everything into `reference/scaffold/`.
172
+ Universal scaffold documentation for all SDK projects. Source locations are co-located with owning packages; the SDK build copies everything into `reference/scaffold/`, `reference/examples/`, and `reference/spine/`.
165
173
 
166
174
  | Document | Bundle Path | Description |
167
175
  | --- | --- | --- |
168
- | Scaffold Index | `scaffold/index.mdx` | Discovery entry point and navigation map |
169
- | Add a System | `scaffold/recipes/add-a-feature.md` | End-to-end system addition recipe |
170
- | Add a Resource | `scaffold/recipes/add-a-resource.md` | Workflow/agent authoring recipe |
171
- | Gate by System/Admin | `scaffold/recipes/gate-by-feature-or-admin.md` | Access control patterns |
172
- | UI Recipes | `scaffold/ui/recipes.md` | Copy-paste UI recipes |
173
- | System Flags & Gating | `scaffold/ui/feature-flags-and-gating.md` | Three-concept gating model |
174
- | Customizing Systems | `scaffold/ui/customization.md` | Sidebar composition patterns |
175
- | System Shell | `scaffold/ui/feature-shell.mdx` | SystemModule manifest and provider |
176
- | Composition & Extensibility | `scaffold/ui/composition-extensibility.mdx` | Layout primitives and overrides |
177
- | Organization Model | `scaffold/core/organization-model.mdx` | Semantic contract and schema |
178
- | Organization Graph | `scaffold/core/organization-graph.mdx` | Graph derivation and Cytoscape |
179
- | Workflow Recipes | `scaffold/operations/workflow-recipes.md` | Workflow anatomy and adapters |
180
- | Glossary | `scaffold/reference/glossary.md` | Term definitions |
181
- | Contracts | `scaffold/reference/contracts.md` | Auto-generated type contracts |
182
- | System Registry | `scaffold/reference/feature-registry.md` | Auto-generated system catalog |
183
- | Agent Rules | `rules/` | Bundled external-template agent rule corpus for generated projects |
176
+ | Organization Model | `scaffold/core/organization-model.mdx` | Organization OS Model layer documentation for the System hierarchy, semantic domains, resource descriptors, and curated @elevasis/core public API. |
177
+ | Organization Graph | `scaffold/core/organization-graph.mdx` | Organization OS graph layer documentation for the organization graph derived from Organization Model Systems, resources, actions, entities, ontology catalogs, and typed links. |
178
+ | Glossary | `scaffold/reference/glossary.md` | Terminology disambiguation for Organization OS concepts used in the template scaffold, core package, and published packages. |
179
+ | Reference Contracts | `scaffold/reference/contracts.md` | Auto-generated TypeScript contracts for SDK consumers. Do not edit manually. |
180
+ | System Interface Capabilities | `scaffold/reference/system-interface-capabilities.md` | Auto-generated System Interface profile and derived-readiness catalog |
181
+ | UI Recipes | `scaffold/ui/recipes.md` | Current recipes for adding pages, system-gated routes, system components, theme tokens, Organization Model sidebar entries, and executable resources. |
182
+ | Feature Flags And Gating | `scaffold/ui/feature-flags-and-gating.md` | System access and gating: Organization Model system paths resolved through the Access Model |
183
+ | Customizing Systems | `scaffold/ui/customization.md` | One pattern for customizing system sidebars and pages -- set manifest.sidebar to a component composing the system's published pieces. Decision tree + three worked examples. |
184
+ | System Shell & Provider Runtime | `scaffold/ui/feature-shell.mdx` | Current system shell contract for Organization Model systems, manifests, route matching, sidebars, and breadcrumbs. |
185
+ | Composition & Extensibility | `scaffold/ui/composition-extensibility.mdx` | Organization OS Toolkit layer guidance for customizing shared shell systems without forking, including exported nav arrays, optional sidebar props, composable layout primitives, the manifest.sidebar override pattern, and the render-prop slot + zero-wiring default pattern for the shared session-chat surface. |
186
+ | System Manifest Registry | `scaffold/reference/feature-registry.md` | Auto-generated catalog of registered system manifests. Do not edit manually. |
187
+ | Organization Model | `examples/organization-model.ts` | Worked defineOrganizationModel()/defineResources()/defineTopology() examples to copy from |
188
+ | Scaffold Reference | `scaffold/index.mdx` | Universal scaffold documentation for Elevasis SDK projects -- recipes, patterns, architecture, and reference materials that apply to all workspaces. |
189
+ | Pathway Recipes | `scaffold/recipes/index.md` | Terse end-to-end walkthroughs for the three most common authoring tasks -- adding a system, adding a resource, and gating access. |
190
+ | Add an OM-Backed System | `scaffold/recipes/add-a-feature.md` | Add a system through the Organization Model, runtime resource descriptors, UI wiring, and alignment tests. |
191
+ | Add a Resource | `scaffold/recipes/add-a-resource.md` | Add an OM-owned workflow or agent descriptor, bind executable behavior in operations, and verify descriptor-backed deployment. |
192
+ | Extend a Base Entity | `scaffold/recipes/extend-a-base-entity.md` | Add project-specific metadata to the canonical entity shapes (Project, Deal, Company, etc.) from @elevasis/core/entities using the TMeta extension slot. |
193
+ | Customize organization-model.ts | `scaffold/recipes/customize-organization-model.md` | Annotated walkthrough for customizing the System-backed Organization Model in template-derived projects. |
194
+ | Gate by System or Admin | `scaffold/recipes/gate-by-feature-or-admin.md` | Decision table and recipes for gating routes, sidebar entries, and UI elements with AccessGuard and the unified Access Model. |
195
+ | Build and Extend CRM | `scaffold/recipes/extend-crm.md` | Map the CRM platform primitives available to SDK projects: shared UI pages, sidebar composition, data hooks, action definitions, workflow adapters, System Interfaces, and org-model extension boundaries. |
196
+ | Build and Extend Lead Gen | `scaffold/recipes/extend-lead-gen.md` | Map the lead-gen platform primitives available to SDK projects: shared UI pages, provider-injected Organization Model config, data hooks, list/member state, artifacts, workflow adapters, System Interfaces, and tenant-owned extension boundaries. |
197
+ | Build and Extend Content | `scaffold/recipes/extend-content.md` | Map the content platform primitives available to SDK projects: pipeline and step catalogs, shared review/pipeline/distribution pages, data hooks, the content workflow adapter, artifacts as rules documents, and org-model extension boundaries. |
198
+ | Customize CRM Actions | `scaffold/recipes/customize-crm-actions.md` | Add, hide, or replace CRM deal action buttons in a template-derived project, and override default platform action workflows with project-owned implementations. |
199
+ | Customize Knowledge Browser | `scaffold/recipes/customize-knowledge-browser.md` | Author knowledge nodes and customize the Knowledge Browser in a template-derived project -- from zero-config authoring through sidebar composition, custom dispatchers, and direct query access. |
200
+ | Query the Knowledge Graph | `scaffold/recipes/query-the-knowledge-graph.md` | Use the `knowledge:*` CLI subcommands on `elevasis-sdk` (external projects) and `elevasis` (monorepo) to browse, inspect, and traverse the OrganizationModel knowledge graph via six mount axes. |
201
+ | Workflow Recipes | `scaffold/operations/workflow-recipes.md` | Anatomy of a workflow, adapter usage, and trigger patterns -- runnable email-notification example replaces the trivial echo workflow. Resolves eval score 2/5 on workflow authoring. |
202
+ | Propagation Pipeline | `scaffold/operations/propagation-pipeline.md` | Three-layer pipeline that keeps Organization OS artifacts current across the monorepo and all template-derived external projects -- source generation, registry-driven sync planning/apply, and verification. |
203
+ | Scaffold Maintenance | `scaffold/operations/scaffold-maintenance.md` | How scaffold documentation is organized, generated, and bundled into the SDK -- content placement map, auto-generation pipeline, and instructions for adding new scaffold docs. |
204
+ | Spine Primer | `spine/spine-primer.md` | Tenant-facing primer for using an Organization Model ontology catalog as the shared coordination spine between workflow producers, runtime state, API filters, and UI projections. |
205
+ | Agent Rules | `rules/` | Bundled agent rule corpus -- see the Agent Rules section below for the per-file index |
206
+
207
+ ---
208
+
209
+ ## Agent Rules
210
+
211
+ The bundled agent-rule corpus. Locations are relative to this file -- the `reference/` root of the installed `@elevasis/sdk` package -- so every row resolves offline in a cloned project with no monorepo.
212
+
213
+ Agent rules indexed: 18.
214
+
215
+ ### Core Config
216
+
217
+ | Rule | Location | Description | When to Load |
218
+ | --- | --- | --- | --- |
219
+ | Organization Model | `rules/organization-model.md` | Edits to the canonical organization model go through /om | Before touching `core/config/organization-model.ts` or `core/config/organization-model/` -- edits route through `/om`. |
220
+ | Core Types | `rules/shared-types.md` | Core type boundary -- what belongs in core/types, import rules, schema conventions | Editing anything under `core/types/` -- the browser-safe boundary shared by `ui/` and `operations/`. |
221
+
222
+ ### Operations
223
+
224
+ | Rule | Location | Description | When to Load |
225
+ | --- | --- | --- | --- |
226
+ | Operations | `rules/operations.md` | Platform workflows, agents, resource definitions, and deployment for the operations/ surface | Editing anything under `operations/` -- workflows, agents, or resource definitions. |
227
+ | Platform | `rules/platform.md` | Platform conventions -- SDK workflows, agents, deployment, resource registry | Authoring a workflow or agent definition, or registering a resource in the registry. |
228
+ | Deployment | `rules/deployment.md` | Deployment workflow -- check-first, dev vs prod, version bumping, common errors | Before any deploy -- a plain `run deploy` targets production by default. |
229
+ | Execution Model | `rules/execution.md` | Execution model -- timeouts, memory, concurrency, org isolation, runtime constraints | Hitting a timeout, memory ceiling, concurrency limit, or org-isolation question at runtime. |
230
+ | Agent Runtime | `rules/agent-runtime.md` | Agent runtime behavior -- iteration response shape, session memory and replay, prose normalization, and why a redeploy is what makes a platform fix live | Debugging an agent turn -- a missing reply, a corrupted one, a session that forgot, or an unenforced schema. |
231
+ | Error Handling | `rules/error-handling.md` | Error handling -- ExecutionError vs PlatformToolError, retry logic, no auto-retry | Writing or debugging a step handler that throws, catches, or retries. |
232
+ | Observability | `rules/observability.md` | Observability -- context.logger API, execution inspection, step-level context | Adding logging to a step handler, or inspecting a past execution. |
233
+
234
+ ### Orientation
235
+
236
+ | Rule | Location | Description | When to Load |
237
+ | --- | --- | --- | --- |
238
+ | Organization OS | `rules/organization-os.md` | Organization OS orientation -- what the semantic contract layer is, which surface owns what, and where the full reference docs live; concrete edit rules live in organization-model.md | Before an org-model change, to see how Systems, ontology, resources, policies, and knowledge relate. |
239
+ | Package Taxonomy | `rules/package-taxonomy.md` | Package taxonomy (consumer view) -- external projects consume the published @elevasis/* surface only; workspace-internal @repo/elevasis-* packages are not installable here | Adding a dependency, or resolving an `@elevasis/*` import or subpath question. |
240
+ | Active Change Index | `rules/active-change-index.md` | Which bundled references to load for platform areas under active change, and how to resolve drift between the bundled snapshot and live platform behavior | Before trusting a stable scaffold doc in a fast-moving area -- lists what in-progress work overrides. |
241
+
242
+ ### Session
243
+
244
+ | Rule | Location | Description | When to Load |
245
+ | --- | --- | --- | --- |
246
+ | Vibe Layer | `rules/vibe.md` | Ambient intent classifier -- routes natural-language input to intent buckets without a slash command; Codify and Toggle delegate to /om, Operate delegates to /elevasis | Always -- governs every natural-language message before the agent acts. |
247
+ | Vibe Intents (Detail) | `rules/vibe-intents.md` | Vibe intent detail -- per-intent recognition signals, fixture examples, agent actions, ambiguity handling, classifier threshold, and phase scope | Only when a message resists classification, or a routed intent needs its exact ceremony -- not resident. |
248
+ | Agent Start Here | `rules/agent-start-here.md` | Canonical first-read for agents entering the template scaffold -- project continuity, task-class routing, and boundary resolution | First read on entering a project, or when resuming with no prior context. |
249
+ | Task Tracking | `rules/task-tracking.md` | In-progress task conventions -- doc format, status values, resume_context ownership, auto-save behavior | Creating, updating, or closing an in-progress task doc. |
250
+
251
+ ### UI
252
+
253
+ | Rule | Location | Description | When to Load |
254
+ | --- | --- | --- | --- |
255
+ | UI Features | `rules/ui.md` | UI shell, route structure, auth flow, API access, and template customization points for the ui/ surface | Editing anything under `ui/` -- app shell, routes, auth flow, or template customization points. |
256
+ | Frontend | `rules/frontend.md` | Frontend conventions -- React, routing, state, styling, testing, pages | Editing anything under `ui/src/` -- components, routing, state, styling, or frontend tests. |
257
+
258
+ ---
259
+
260
+ ## Docs Site Pages
261
+
262
+ Every page under `apps/docs/content/docs/sdk/` copied verbatim into the root of this bundle by `copy-reference-docs.mjs`, indexed directly from the source tree. Several of these pages are also linked individually above as a package export’s primary doc; this section exists so every bundled page -- not only the ones an export happens to link to -- is reachable from a navigation row.
263
+
264
+ Docs-site pages indexed: 38.
265
+
266
+ ### (root)
267
+
268
+ | Page | Location | Description |
269
+ | --- | --- | --- |
270
+ | Elevasis SDK | `index.mdx` | The three published Elevasis packages — @elevasis/sdk, @elevasis/core, and @elevasis/ui — that tenant projects install and compose to build AI workflows and feature-rich applications on the platform. |
271
+
272
+ ### core
273
+
274
+ | Page | Location | Description |
275
+ | --- | --- | --- |
276
+ | @elevasis/core Export Catalog | `core/exports.mdx` | Auto-generated catalog of all published @elevasis/core subpath exports, derived from packages/core/reference-manifest.ts. |
277
+ | @elevasis/core | `core/index.mdx` | The shared Zod contract layer for the Elevasis platform — organization model, entity schemas, knowledge graph, auth types, and test utilities. Used by both @elevasis/sdk and @elevasis/ui. |
278
+
279
+ ### sdk
280
+
281
+ | Page | Location | Description |
282
+ | --- | --- | --- |
283
+ | CLI Management Commands | `sdk/cli-management.mdx` | elevasis-sdk management commands -- project, note, acquisition, client, agent, session, queue, schedule, om, ui, and skill subcommand families |
284
+ | CLI Reference | `sdk/cli.mdx` | Core elevasis-sdk CLI commands -- validate, deploy, execute, inspect resources, manage credentials, rename, and enumerate the command catalog |
285
+ | Concepts Reference | `sdk/concepts.mdx` | Plain-English explanations of Elevasis SDK concepts -- glossary, workflow analogies, Zod schemas, execution model, platform tools, and design decisions |
286
+ | When to Reach for the define* Builders | `sdk/define-builders.mdx` | defineWorkflow, defineStep, defineContract, defineResource, and defineTopology exist for two different reasons -- this page teaches which reason applies before you pick a builder over a plain object literal. |
287
+ | Command Center | `sdk/deployment/command-center.mdx` | Post-deployment UI reference -- what each page does, the resource graph model, relationships, validation, and how SDK concepts map to Command Center actions |
288
+ | Execution Reference | `sdk/deployment/execution-reference.mdx` | REST endpoints for executing resources, querying execution history, and managing deployments; plus React UI components and hooks for triggering executions from custom pages via @elevasis/ui |
289
+ | Deploying Resources | `sdk/deployment/index.mdx` | How to deploy your Elevasis SDK resources to the platform using elevasis-sdk deploy, including configuration, validation, and environment setup |
290
+ | @elevasis/sdk Export Catalog | `sdk/exports.mdx` | Auto-generated catalog of all published @elevasis/sdk subpath exports, derived from packages/sdk/reference-manifest.ts. |
291
+ | Agent System | `sdk/framework/agent.mdx` | The template's skill layer, the always-on ambient vibe classifier, the rules layer, and how project continuity is tracked through the elevasis-sdk project CLI, not files |
292
+ | Development Framework | `sdk/framework/index.mdx` | The template ships an agent operating environment alongside your code -- always-loaded rules, slash-command skills, a two-track tutorial, and a small gitignored memory surface |
293
+ | Project Structure | `sdk/framework/project-structure.mdx` | Each directory and file in an Elevasis SDK project and its purpose, verified against the current external/_template scaffold |
294
+ | Tutorial System | `sdk/framework/tutorial-system.mdx` | The /tutorial skill in the external project scaffold -- two-track onboarding (vibe-coder and technical), gate question, track persistence, and escape hatch |
295
+ | Getting Started | `sdk/getting-started.mdx` | Set up your Elevasis SDK project and run your first deployment |
296
+ | Human-in-the-Loop (HITL) Workflows | `sdk/human-in-the-loop.mdx` | How a workflow step opens an approval task, how it reaches the command queue, and how selecting an action resumes work -- the story that connects the approval adapter, checkpoint metadata, and the queue CLI. |
297
+ | Elevasis SDK | `sdk/index.mdx` | Build and deploy workflows, agents, and resources with the Elevasis SDK |
298
+ | Integration Adapters | `sdk/platform-tools/adapters-integration.mdx` | Auto-generated table of all 13 integration (credential-bound) adapters exported from @elevasis/sdk/worker, derived from static analysis of the adapter source files. |
299
+ | Platform Adapters | `sdk/platform-tools/adapters-platform.mdx` | Auto-generated table of all 14 platform (singleton, no credential) adapters exported from @elevasis/sdk/worker, derived from static analysis of the adapter source files. |
300
+ | Platform Tools | `sdk/platform-tools/index.mdx` | Access 25 adapters (13 integration + 12 platform) from your SDK workflows -- typed adapters, credential security model, and working code examples |
301
+ | Adapter Type Safety | `sdk/platform-tools/type-safety.mdx` | SDK worker adapter type safety patterns - required fields, discriminated unions, and intentionally loose types |
302
+ | The Deployment Spec Pattern | `sdk/project-deployment-spec.mdx` | How projectDeploymentSpec and defineWorkflowConfig assemble the DeploymentSpec a scaffolded project actually ships, using operations/src/index.ts as the reference. |
303
+ | Writing Resources | `sdk/resources/index.mdx` | Guide to creating descriptor-backed workflows and agents with the Elevasis SDK |
304
+ | Common Patterns | `sdk/resources/patterns.mdx` | Common resource patterns for Elevasis SDK developers -- sequential steps, conditional branching, platform tools, error handling, and resource status management |
305
+ | SDK Types | `sdk/resources/types.mdx` | Type reference for @elevasis/sdk package exports, resource metadata, platform types, ElevasConfig, StepHandler context, and runtime values |
306
+ | Execution Runtime | `sdk/runtime.mdx` | How your code runs on the Elevasis platform -- execution lifecycle, concurrency, timeouts, cancellation, error handling, observability, resource limits, and v1 limitations |
307
+ | Template: Data Enrichment | `sdk/templates/data-enrichment.mdx` | LLM-powered enrichment of existing database records -- read rows, enrich each with an LLM, write results back to Supabase |
308
+ | Template: Email Sender | `sdk/templates/email-sender.mdx` | Transactional email via Resend with template support -- send styled emails to one or multiple recipients |
309
+ | Templates | `sdk/templates/index.mdx` | Ready-to-use workflow templates for common automation patterns -- web scraping, data enrichment, email sending, lead scoring, PDF generation, text classification, and recurring jobs |
310
+ | Template: Lead Scorer | `sdk/templates/lead-scorer.mdx` | LLM-based lead scoring with Supabase storage -- receive a lead, score it with an LLM, store the result |
311
+ | Template: PDF Generator | `sdk/templates/pdf-generator.mdx` | PDF generation from structured data with platform storage upload -- render a PDF from a template and upload to platform storage |
312
+ | Template: Recurring Job | `sdk/templates/recurring-job.mdx` | Scheduler-triggered periodic workflow -- run a task on a schedule (daily, weekly, hourly, or custom cron) |
313
+ | Template: Text Classifier | `sdk/templates/text-classifier.mdx` | Multi-label text classification with structured output -- classify text into predefined categories using an LLM with JSON output |
314
+ | Template: Web Scraper | `sdk/templates/web-scraper.mdx` | Apify-based web scraper that stores results in Supabase -- fetch structured data from any website via Apify actors |
315
+ | Common Errors | `sdk/troubleshooting.mdx` | Static SDK-level error catalog -- CLI errors, deployment errors, schema validation, platform tool failures, and runtime errors with diagnostic steps |
316
+
317
+ ### ui
318
+
319
+ | Page | Location | Description |
320
+ | --- | --- | --- |
321
+ | @elevasis/ui Export Catalog | `ui/exports.mdx` | Auto-generated catalog of all published @elevasis/ui subpath exports, derived from packages/ui/reference-manifest.ts. |
322
+ | @elevasis/ui | `ui/index.mdx` | The shared React 19 feature-shell and manifest-backed feature modules for Elevasis — Lead Gen, CRM, Projects, Operations, Monitoring, Settings, SEO, and more. Embeds into any host UI via ElevasisCoreProvider and ElevasisSystemsProvider. |
@@ -15,6 +15,20 @@
15
15
  "referencePath": "packages/core/src/README.md",
16
16
  "publishedExportPath": "./dist/auth/index.js"
17
17
  },
18
+ {
19
+ "packageName": "@elevasis/core",
20
+ "packageDir": "packages/core",
21
+ "subpath": "./content",
22
+ "kind": "subpath",
23
+ "title": "Content",
24
+ "description": "Published content pipeline API schemas: content items, the payload envelope, a content-keyed processing state, attempts, review, and distributions, plus platform-content typed interfaces.",
25
+ "group": "Content",
26
+ "order": 1,
27
+ "sourcePath": "packages/core/src/content/index.ts",
28
+ "docPath": "packages/core/src/content/README.md",
29
+ "referencePath": "packages/core/src/content/README.md",
30
+ "publishedExportPath": "./dist/content/index.js"
31
+ },
18
32
  {
19
33
  "packageName": "@elevasis/core",
20
34
  "packageDir": "packages/core",
@@ -71,6 +85,20 @@
71
85
  "referencePath": "packages/core/src/organization-model/README.md",
72
86
  "publishedExportPath": "./dist/organization-model/index.js"
73
87
  },
88
+ {
89
+ "packageName": "@elevasis/core",
90
+ "packageDir": "packages/core",
91
+ "subpath": "./organization-model/readiness",
92
+ "kind": "subpath",
93
+ "title": "System Interface Readiness",
94
+ "description": "Generic System Interface readiness engine, plus registerBuiltInReadinessProfile — the extension point for registering a readiness profile that carries real structural validation.",
95
+ "group": "Organization Model",
96
+ "order": 2,
97
+ "sourcePath": "packages/core/src/organization-model/readiness/index.ts",
98
+ "docPath": "packages/core/src/organization-model/readiness/README.md",
99
+ "referencePath": "packages/core/src/organization-model/readiness/README.md",
100
+ "publishedExportPath": "./dist/organization-model/readiness/index.js"
101
+ },
74
102
  {
75
103
  "packageName": "@elevasis/core",
76
104
  "packageDir": "packages/core",
@@ -91,7 +119,7 @@
91
119
  "subpath": ".",
92
120
  "kind": "root",
93
121
  "title": "SDK",
94
- "description": "Root SDK types, config, runtime errors, and registry surface.",
122
+ "description": "Build and deploy workflows, agents, and resources with the Elevasis SDK",
95
123
  "group": "Getting Started",
96
124
  "order": 1,
97
125
  "sourcePath": "packages/sdk/src/index.ts",
@@ -105,7 +133,7 @@
105
133
  "subpath": "./worker",
106
134
  "kind": "subpath",
107
135
  "title": "Worker Runtime",
108
- "description": "Worker runtime entrypoint, adapters, and platform execution surface.",
136
+ "description": "How your code runs on the Elevasis platform -- execution lifecycle, concurrency, timeouts, cancellation, error handling, observability, resource limits, and v1 limitations",
109
137
  "group": "Runtime",
110
138
  "order": 1,
111
139
  "sourcePath": "packages/sdk/src/worker/index.ts",
@@ -119,7 +147,7 @@
119
147
  "subpath": "./test-utils",
120
148
  "kind": "subpath",
121
149
  "title": "Test Utils",
122
- "description": "Workflow runner, registry assertion, and typed adapter mocks for SDK consumers.",
150
+ "description": "How your code runs on the Elevasis platform -- execution lifecycle, concurrency, timeouts, cancellation, error handling, observability, resource limits, and v1 limitations",
123
151
  "group": "Testing",
124
152
  "order": 1,
125
153
  "sourcePath": "packages/sdk/src/test-utils/index.ts",
@@ -133,7 +161,7 @@
133
161
  "subpath": "./node",
134
162
  "kind": "subpath",
135
163
  "title": "Node Build Tooling",
136
- "description": "Node-only build helpers: knowledge codegen and other fs/path/process utilities. Not browser-safe.",
164
+ "description": "Core elevasis-sdk CLI commands -- validate, deploy, execute, inspect resources, manage credentials, rename, and enumerate the command catalog",
137
165
  "group": "Tooling",
138
166
  "order": 1,
139
167
  "sourcePath": "packages/sdk/src/node/index.ts",
@@ -449,6 +477,20 @@
449
477
  "referencePath": "packages/ui/src/features/README.md",
450
478
  "publishedExportPath": "./dist/features/public-agent-chat/index.js"
451
479
  },
480
+ {
481
+ "packageName": "@elevasis/ui",
482
+ "packageDir": "packages/ui",
483
+ "subpath": "./features/content",
484
+ "kind": "subpath",
485
+ "title": "Features Content",
486
+ "description": "Published, data-free content review card surface (ContentReviewCard and its sub-components) for downstream shells.",
487
+ "group": "Features",
488
+ "order": 16,
489
+ "sourcePath": "packages/ui/src/features/content/index.ts",
490
+ "docPath": "packages/ui/src/features/README.md",
491
+ "referencePath": "packages/ui/src/features/README.md",
492
+ "publishedExportPath": "./dist/features/content/index.js"
493
+ },
452
494
  {
453
495
  "packageName": "@elevasis/ui",
454
496
  "packageDir": "packages/ui",
@@ -855,5 +897,187 @@
855
897
  "referencePath": "packages/ui/src/knowledge/README.md",
856
898
  "publishedExportPath": "./dist/knowledge/index.js"
857
899
  }
900
+ ],
901
+ "agentRules": [
902
+ {
903
+ "packageName": "@elevasis/sdk",
904
+ "title": "Organization Model",
905
+ "description": "Edits to the canonical organization model go through /om",
906
+ "group": "Core Config",
907
+ "order": 1,
908
+ "loadWhen": "Before touching `core/config/organization-model.ts` or `core/config/organization-model/` -- edits route through `/om`.",
909
+ "sourcePath": "packages/sdk/docs/agent-rules/organization-model.md",
910
+ "referencePath": "rules/organization-model.md"
911
+ },
912
+ {
913
+ "packageName": "@elevasis/sdk",
914
+ "title": "Core Types",
915
+ "description": "Core type boundary -- what belongs in core/types, import rules, schema conventions",
916
+ "group": "Core Config",
917
+ "order": 2,
918
+ "loadWhen": "Editing anything under `core/types/` -- the browser-safe boundary shared by `ui/` and `operations/`.",
919
+ "sourcePath": "packages/sdk/docs/agent-rules/shared-types.md",
920
+ "referencePath": "rules/shared-types.md"
921
+ },
922
+ {
923
+ "packageName": "@elevasis/sdk",
924
+ "title": "Operations",
925
+ "description": "Platform workflows, agents, resource definitions, and deployment for the operations/ surface",
926
+ "group": "Operations",
927
+ "order": 1,
928
+ "loadWhen": "Editing anything under `operations/` -- workflows, agents, or resource definitions.",
929
+ "sourcePath": "packages/sdk/docs/agent-rules/operations.md",
930
+ "referencePath": "rules/operations.md"
931
+ },
932
+ {
933
+ "packageName": "@elevasis/sdk",
934
+ "title": "Platform",
935
+ "description": "Platform conventions -- SDK workflows, agents, deployment, resource registry",
936
+ "group": "Operations",
937
+ "order": 2,
938
+ "loadWhen": "Authoring a workflow or agent definition, or registering a resource in the registry.",
939
+ "sourcePath": "packages/sdk/docs/agent-rules/platform.md",
940
+ "referencePath": "rules/platform.md"
941
+ },
942
+ {
943
+ "packageName": "@elevasis/sdk",
944
+ "title": "Deployment",
945
+ "description": "Deployment workflow -- check-first, dev vs prod, version bumping, common errors",
946
+ "group": "Operations",
947
+ "order": 3,
948
+ "loadWhen": "Before any deploy -- a plain `run deploy` targets production by default.",
949
+ "sourcePath": "packages/sdk/docs/agent-rules/deployment.md",
950
+ "referencePath": "rules/deployment.md"
951
+ },
952
+ {
953
+ "packageName": "@elevasis/sdk",
954
+ "title": "Execution Model",
955
+ "description": "Execution model -- timeouts, memory, concurrency, org isolation, runtime constraints",
956
+ "group": "Operations",
957
+ "order": 4,
958
+ "loadWhen": "Hitting a timeout, memory ceiling, concurrency limit, or org-isolation question at runtime.",
959
+ "sourcePath": "packages/sdk/docs/agent-rules/execution.md",
960
+ "referencePath": "rules/execution.md"
961
+ },
962
+ {
963
+ "packageName": "@elevasis/sdk",
964
+ "title": "Agent Runtime",
965
+ "description": "Agent runtime behavior -- iteration response shape, session memory and replay, prose normalization, and why a redeploy is what makes a platform fix live",
966
+ "group": "Operations",
967
+ "order": 5,
968
+ "loadWhen": "Debugging an agent turn -- a missing reply, a corrupted one, a session that forgot, or an unenforced schema.",
969
+ "sourcePath": "packages/sdk/docs/agent-rules/agent-runtime.md",
970
+ "referencePath": "rules/agent-runtime.md"
971
+ },
972
+ {
973
+ "packageName": "@elevasis/sdk",
974
+ "title": "Error Handling",
975
+ "description": "Error handling -- ExecutionError vs PlatformToolError, retry logic, no auto-retry",
976
+ "group": "Operations",
977
+ "order": 6,
978
+ "loadWhen": "Writing or debugging a step handler that throws, catches, or retries.",
979
+ "sourcePath": "packages/sdk/docs/agent-rules/error-handling.md",
980
+ "referencePath": "rules/error-handling.md"
981
+ },
982
+ {
983
+ "packageName": "@elevasis/sdk",
984
+ "title": "Observability",
985
+ "description": "Observability -- context.logger API, execution inspection, step-level context",
986
+ "group": "Operations",
987
+ "order": 7,
988
+ "loadWhen": "Adding logging to a step handler, or inspecting a past execution.",
989
+ "sourcePath": "packages/sdk/docs/agent-rules/observability.md",
990
+ "referencePath": "rules/observability.md"
991
+ },
992
+ {
993
+ "packageName": "@elevasis/sdk",
994
+ "title": "Organization OS",
995
+ "description": "Organization OS orientation -- what the semantic contract layer is, which surface owns what, and where the full reference docs live; concrete edit rules live in organization-model.md",
996
+ "group": "Orientation",
997
+ "order": 1,
998
+ "loadWhen": "Before an org-model change, to see how Systems, ontology, resources, policies, and knowledge relate.",
999
+ "sourcePath": "packages/sdk/docs/agent-rules/organization-os.md",
1000
+ "referencePath": "rules/organization-os.md"
1001
+ },
1002
+ {
1003
+ "packageName": "@elevasis/sdk",
1004
+ "title": "Package Taxonomy",
1005
+ "description": "Package taxonomy (consumer view) -- external projects consume the published @elevasis/* surface only; workspace-internal @repo/elevasis-* packages are not installable here",
1006
+ "group": "Orientation",
1007
+ "order": 2,
1008
+ "loadWhen": "Adding a dependency, or resolving an `@elevasis/*` import or subpath question.",
1009
+ "sourcePath": "packages/sdk/docs/agent-rules/package-taxonomy.md",
1010
+ "referencePath": "rules/package-taxonomy.md"
1011
+ },
1012
+ {
1013
+ "packageName": "@elevasis/sdk",
1014
+ "title": "Active Change Index",
1015
+ "description": "Which bundled references to load for platform areas under active change, and how to resolve drift between the bundled snapshot and live platform behavior",
1016
+ "group": "Orientation",
1017
+ "order": 3,
1018
+ "loadWhen": "Before trusting a stable scaffold doc in a fast-moving area -- lists what in-progress work overrides.",
1019
+ "sourcePath": "packages/sdk/docs/agent-rules/active-change-index.md",
1020
+ "referencePath": "rules/active-change-index.md"
1021
+ },
1022
+ {
1023
+ "packageName": "@elevasis/sdk",
1024
+ "title": "Vibe Layer",
1025
+ "description": "Ambient intent classifier -- routes natural-language input to intent buckets without a slash command; Codify and Toggle delegate to /om, Operate delegates to /elevasis",
1026
+ "group": "Session",
1027
+ "order": 1,
1028
+ "loadWhen": "Always -- governs every natural-language message before the agent acts.",
1029
+ "sourcePath": "packages/sdk/docs/agent-rules/vibe.md",
1030
+ "referencePath": "rules/vibe.md"
1031
+ },
1032
+ {
1033
+ "packageName": "@elevasis/sdk",
1034
+ "title": "Vibe Intents (Detail)",
1035
+ "description": "Vibe intent detail -- per-intent recognition signals, fixture examples, agent actions, ambiguity handling, classifier threshold, and phase scope",
1036
+ "group": "Session",
1037
+ "order": 2,
1038
+ "loadWhen": "Only when a message resists classification, or a routed intent needs its exact ceremony -- not resident.",
1039
+ "sourcePath": "packages/sdk/docs/agent-rules/vibe-intents.md",
1040
+ "referencePath": "rules/vibe-intents.md"
1041
+ },
1042
+ {
1043
+ "packageName": "@elevasis/sdk",
1044
+ "title": "Agent Start Here",
1045
+ "description": "Canonical first-read for agents entering the template scaffold -- project continuity, task-class routing, and boundary resolution",
1046
+ "group": "Session",
1047
+ "order": 3,
1048
+ "loadWhen": "First read on entering a project, or when resuming with no prior context.",
1049
+ "sourcePath": "packages/sdk/docs/agent-rules/agent-start-here.md",
1050
+ "referencePath": "rules/agent-start-here.md"
1051
+ },
1052
+ {
1053
+ "packageName": "@elevasis/sdk",
1054
+ "title": "Task Tracking",
1055
+ "description": "In-progress task conventions -- doc format, status values, resume_context ownership, auto-save behavior",
1056
+ "group": "Session",
1057
+ "order": 4,
1058
+ "loadWhen": "Creating, updating, or closing an in-progress task doc.",
1059
+ "sourcePath": "packages/sdk/docs/agent-rules/task-tracking.md",
1060
+ "referencePath": "rules/task-tracking.md"
1061
+ },
1062
+ {
1063
+ "packageName": "@elevasis/sdk",
1064
+ "title": "UI Features",
1065
+ "description": "UI shell, route structure, auth flow, API access, and template customization points for the ui/ surface",
1066
+ "group": "UI",
1067
+ "order": 1,
1068
+ "loadWhen": "Editing anything under `ui/` -- app shell, routes, auth flow, or template customization points.",
1069
+ "sourcePath": "packages/sdk/docs/agent-rules/ui.md",
1070
+ "referencePath": "rules/ui.md"
1071
+ },
1072
+ {
1073
+ "packageName": "@elevasis/sdk",
1074
+ "title": "Frontend",
1075
+ "description": "Frontend conventions -- React, routing, state, styling, testing, pages",
1076
+ "group": "UI",
1077
+ "order": 2,
1078
+ "loadWhen": "Editing anything under `ui/src/` -- components, routing, state, styling, or frontend tests.",
1079
+ "sourcePath": "packages/sdk/docs/agent-rules/frontend.md",
1080
+ "referencePath": "rules/frontend.md"
1081
+ }
858
1082
  ]
859
1083
  }
@@ -0,0 +1,8 @@
1
+ <!-- @generated by packages/sdk/scripts/copy-reference-docs.mjs -- DO NOT EDIT -->
2
+ <!-- Regenerate: pnpm scaffold:sync -->
3
+
4
+ # Agent Configuration
5
+
6
+ Elevasis agent configuration (rules, skills, hooks, and registries under `.claude/`) is not duplicated into this reference bundle.
7
+
8
+ Your project already has a live copy at `.claude/` in its own root -- kept current by `/external sync`, unlike a bundle frozen at publish time. Read your project's own `.claude/` directory for agent configuration; this reference bundle only ships `reference/rules/`, the canonical per-file agent-rule corpus (see the Agent Rules section of `_navigation.md`).
@@ -11,6 +11,8 @@ description: "Auto-generated catalog of all published @elevasis/core subpath exp
11
11
  | `@elevasis/core` | Core | Core | Published core wrapper for the curated contract surface. |
12
12
  | `@elevasis/core/auth` | Auth | Auth | Published browser-safe auth contracts, AccessKeys, and Access Model primitives. |
13
13
  | `@elevasis/core/organization-model` | Organization Model | Organization Model | Published organization-model schema, defaults, resolver, and types. |
14
+ | `@elevasis/core/organization-model/readiness` | System Interface Readiness | Organization Model | Generic System Interface readiness engine, plus registerBuiltInReadinessProfile — the extension point for registering a readiness profile that carries real structural validation. |
14
15
  | `@elevasis/core/knowledge` | Knowledge | Knowledge | Published knowledge query layer: bySystem/byKind/byOwner/governs/governedBy queries, parsePath, and output formatters. |
16
+ | `@elevasis/core/content` | Content | Content | Published content pipeline API schemas: content items, the payload envelope, a content-keyed processing state, attempts, review, and distributions, plus platform-content typed interfaces. |
15
17
  | `@elevasis/core/entities` | Entities | Entities | Published base entity contracts (Project, Milestone, Task, Deal, Company, Contact) generic over a metadata extension slot. |
16
18
  | `@elevasis/core/test-utils` | Test Utilities | Testing | Published test fixtures, mocks, and shared helpers for downstream automated tests. |
@@ -27,9 +27,9 @@ The default export and most subpaths are browser-safe. No Node.js-specific runti
27
27
  Import a subpath directly:
28
28
 
29
29
  ```ts
30
- import { orgModelSchema } from "@elevasis/core/organization-model";
31
- import { entitySchema } from "@elevasis/core/entities";
32
- import { knowledgeDocSchema } from "@elevasis/core/knowledge";
30
+ import { OrganizationModelSchema } from "@elevasis/core/organization-model";
31
+ import { BaseDealSchema, BaseContactSchema } from "@elevasis/core/entities";
32
+ import { parsePath, bySystem } from "@elevasis/core/knowledge";
33
33
  ```
34
34
 
35
35
  ## Browser / Server Split