@elevasis/sdk 1.14.1 → 1.15.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.
- package/dist/cli.cjs +1 -1
- package/dist/index.d.ts +19 -0
- package/dist/index.js +76 -5
- package/dist/test-utils/index.d.ts +19 -0
- package/dist/test-utils/index.js +1 -0
- package/package.json +2 -2
- package/reference/claude-config/rules/agent-start-here.md +235 -235
- package/reference/claude-config/rules/organization-os.md +103 -103
- package/reference/claude-config/rules/platform.md +1 -1
- package/reference/claude-config/rules/ui.md +204 -204
- package/reference/claude-config/rules/vibe.md +208 -208
- package/reference/claude-config/sync-notes/2026-04-27-lead-gen-substrate-train.md +2 -0
- package/reference/claude-config/sync-notes/2026-04-29-crm-state-and-lead-gen-processing-status.md +93 -0
- package/reference/scaffold/index.mdx +67 -67
- package/reference/scaffold/recipes/customize-crm-actions.md +433 -408
- package/reference/scaffold/recipes/extend-lead-gen.md +28 -30
- package/reference/scaffold/recipes/index.md +41 -41
- package/reference/scaffold/reference/contracts.md +979 -967
- package/reference/scaffold/ui/customization.md +1 -1
|
@@ -1,111 +1,111 @@
|
|
|
1
|
-
# Organization OS
|
|
2
|
-
|
|
3
|
-
Organization OS is the semantic contract layer defining how organizations, features, domains, surfaces, entities, capabilities, and resources relate. This project consumes Organization OS through the SDK and foundations config.
|
|
4
|
-
|
|
5
|
-
## Key Files in This Project
|
|
6
|
-
|
|
7
|
-
- `foundations/config/organization-model.ts` -- project-specific org model definition (calls `defineOrganizationModel` + `resolveOrganizationModel`)
|
|
8
|
-
- `foundations/config/organization-model.examples.ts` -- reference patterns for all 14 domains: branding, identity, customers, offerings, roles, goals, sales stages, prospecting stages, resource mappings with techStack, custom features, statuses, and open-placement navigation groups. Pure reference -- not imported anywhere. Read this when customizing the org model.
|
|
9
|
-
- `foundations/types/entities.ts` -- typed entity contracts (Project, Deal, etc.). Extends `BaseProject`, `BaseDeal` from `@elevasis/core/entities` with project-specific metadata. Read this when authoring workflows that operate on these entities.
|
|
10
|
-
- `ui/src/routes/__root.tsx` -- wires `ElevasisFeaturesProvider` with `canonicalOrganizationModel`
|
|
11
|
-
- `ui/src/app-config.ts` -- references the org model
|
|
12
|
-
- `operations/src/index.ts` -- `DeploymentSpec` registry for workflows and agents
|
|
13
|
-
|
|
14
|
-
## Domain Overview
|
|
15
|
-
|
|
16
|
-
As of the 2026-04-20 expansion, `OrganizationModel` contains 14 top-level domains:
|
|
17
|
-
|
|
18
|
-
**Platform configuration:** `features`, `branding`, `navigation`, `sales` (formerly `crm`), `prospecting` (formerly `leadGen`), `projects` (formerly `delivery`), `resourceMappings`
|
|
19
|
-
|
|
20
|
-
**Organizational reality:** `identity`, `customers`, `offerings`, `roles`, `goals`
|
|
21
|
-
|
|
22
|
-
**Vibe layer:** `statuses`, `operations`
|
|
23
|
-
|
|
24
|
-
The `resourceMappings` entries may carry an optional `techStack` extension (`platform`, `purpose`, `credentialStatus`, `isSystemOfRecord`) without introducing a new top-level domain.
|
|
25
|
-
|
|
26
|
-
### Domain Rename Note
|
|
27
|
-
|
|
28
|
-
Three field names changed in the 2026-04-20 expansion. Feature ID constants and consumer-facing feature IDs are unchanged:
|
|
29
|
-
|
|
30
|
-
| Old field | New field | Feature ID (unchanged) | Constant (unchanged) |
|
|
31
|
-
| ---------- | ------------- | ---------------------- | --------------------- |
|
|
32
|
-
| `crm` | `sales` | `'crm'` | `CRM_FEATURE_ID` |
|
|
33
|
-
| `leadGen` | `prospecting` | `'lead-gen'` | `LEAD_GEN_FEATURE_ID` |
|
|
34
|
-
| `delivery` | `projects` | `'projects'` | `PROJECTS_FEATURE_ID` |
|
|
35
|
-
|
|
36
|
-
## Reference Documentation
|
|
37
|
-
|
|
38
|
-
Full Organization OS documentation ships with the SDK and is available locally after `pnpm install`:
|
|
39
|
-
|
|
40
|
-
### Scaffold Reference (via SDK)
|
|
41
|
-
|
|
42
|
-
All paths under `node_modules/@elevasis/sdk/reference/scaffold/`:
|
|
43
|
-
|
|
44
|
-
- `node_modules/@elevasis/sdk/reference/scaffold/index.mdx` -- scaffold root and navigation
|
|
45
|
-
- `node_modules/@elevasis/sdk/reference/scaffold/core/organization-model.mdx` -- semantic contract, all 14 domains, adapter authoring, validation gate, `/configure` entry point
|
|
46
|
-
- `node_modules/@elevasis/sdk/reference/scaffold/core/organization-graph.mdx` -- graph derivation, node/edge taxonomy, lenses
|
|
47
|
-
- `node_modules/@elevasis/sdk/reference/scaffold/ui/feature-shell.mdx` -- FeatureModule manifest, provider runtime
|
|
48
|
-
- `node_modules/@elevasis/sdk/reference/scaffold/ui/composition-extensibility.mdx` -- layout primitives, router abstraction
|
|
49
|
-
- `node_modules/@elevasis/sdk/reference/scaffold/ui/recipes.md` -- copy-paste UI recipes for pages, nav items, components
|
|
50
|
-
- `node_modules/@elevasis/sdk/reference/scaffold/ui/feature-flags-and-gating.md` -- three-concept gating model
|
|
51
|
-
- `node_modules/@elevasis/sdk/reference/scaffold/ui/customization.md` -- sidebar composition via manifest overrides
|
|
1
|
+
# Organization OS
|
|
2
|
+
|
|
3
|
+
Organization OS is the semantic contract layer defining how organizations, features, domains, surfaces, entities, capabilities, and resources relate. This project consumes Organization OS through the SDK and foundations config.
|
|
4
|
+
|
|
5
|
+
## Key Files in This Project
|
|
6
|
+
|
|
7
|
+
- `foundations/config/organization-model.ts` -- project-specific org model definition (calls `defineOrganizationModel` + `resolveOrganizationModel`)
|
|
8
|
+
- `foundations/config/organization-model.examples.ts` -- reference patterns for all 14 domains: branding, identity, customers, offerings, roles, goals, sales stages, prospecting stages, resource mappings with techStack, custom features, statuses, and open-placement navigation groups. Pure reference -- not imported anywhere. Read this when customizing the org model.
|
|
9
|
+
- `foundations/types/entities.ts` -- typed entity contracts (Project, Deal, etc.). Extends `BaseProject`, `BaseDeal` from `@elevasis/core/entities` with project-specific metadata. Read this when authoring workflows that operate on these entities.
|
|
10
|
+
- `ui/src/routes/__root.tsx` -- wires `ElevasisFeaturesProvider` with `canonicalOrganizationModel`
|
|
11
|
+
- `ui/src/app-config.ts` -- references the org model
|
|
12
|
+
- `operations/src/index.ts` -- `DeploymentSpec` registry for workflows and agents
|
|
13
|
+
|
|
14
|
+
## Domain Overview
|
|
15
|
+
|
|
16
|
+
As of the 2026-04-20 expansion, `OrganizationModel` contains 14 top-level domains:
|
|
17
|
+
|
|
18
|
+
**Platform configuration:** `features`, `branding`, `navigation`, `sales` (formerly `crm`), `prospecting` (formerly `leadGen`), `projects` (formerly `delivery`), `resourceMappings`
|
|
19
|
+
|
|
20
|
+
**Organizational reality:** `identity`, `customers`, `offerings`, `roles`, `goals`
|
|
21
|
+
|
|
22
|
+
**Vibe layer:** `statuses`, `operations`
|
|
23
|
+
|
|
24
|
+
The `resourceMappings` entries may carry an optional `techStack` extension (`platform`, `purpose`, `credentialStatus`, `isSystemOfRecord`) without introducing a new top-level domain.
|
|
25
|
+
|
|
26
|
+
### Domain Rename Note
|
|
27
|
+
|
|
28
|
+
Three field names changed in the 2026-04-20 expansion. Feature ID constants and consumer-facing feature IDs are unchanged:
|
|
29
|
+
|
|
30
|
+
| Old field | New field | Feature ID (unchanged) | Constant (unchanged) |
|
|
31
|
+
| ---------- | ------------- | ---------------------- | --------------------- |
|
|
32
|
+
| `crm` | `sales` | `'crm'` | `CRM_FEATURE_ID` |
|
|
33
|
+
| `leadGen` | `prospecting` | `'lead-gen'` | `LEAD_GEN_FEATURE_ID` |
|
|
34
|
+
| `delivery` | `projects` | `'projects'` | `PROJECTS_FEATURE_ID` |
|
|
35
|
+
|
|
36
|
+
## Reference Documentation
|
|
37
|
+
|
|
38
|
+
Full Organization OS documentation ships with the SDK and is available locally after `pnpm install`:
|
|
39
|
+
|
|
40
|
+
### Scaffold Reference (via SDK)
|
|
41
|
+
|
|
42
|
+
All paths under `node_modules/@elevasis/sdk/reference/scaffold/`:
|
|
43
|
+
|
|
44
|
+
- `node_modules/@elevasis/sdk/reference/scaffold/index.mdx` -- scaffold root and navigation
|
|
45
|
+
- `node_modules/@elevasis/sdk/reference/scaffold/core/organization-model.mdx` -- semantic contract, all 14 domains, adapter authoring, validation gate, `/configure` entry point
|
|
46
|
+
- `node_modules/@elevasis/sdk/reference/scaffold/core/organization-graph.mdx` -- graph derivation, node/edge taxonomy, lenses
|
|
47
|
+
- `node_modules/@elevasis/sdk/reference/scaffold/ui/feature-shell.mdx` -- FeatureModule manifest, provider runtime
|
|
48
|
+
- `node_modules/@elevasis/sdk/reference/scaffold/ui/composition-extensibility.mdx` -- layout primitives, router abstraction
|
|
49
|
+
- `node_modules/@elevasis/sdk/reference/scaffold/ui/recipes.md` -- copy-paste UI recipes for pages, nav items, components
|
|
50
|
+
- `node_modules/@elevasis/sdk/reference/scaffold/ui/feature-flags-and-gating.md` -- three-concept gating model
|
|
51
|
+
- `node_modules/@elevasis/sdk/reference/scaffold/ui/customization.md` -- sidebar composition via manifest overrides
|
|
52
52
|
- `node_modules/@elevasis/sdk/reference/scaffold/recipes/add-a-feature.md` -- end-to-end from org model key through manifest, routes, gating
|
|
53
53
|
- `node_modules/@elevasis/sdk/reference/scaffold/recipes/add-a-resource.md` -- author and deploy a workflow or agent
|
|
54
54
|
- `node_modules/@elevasis/sdk/reference/scaffold/recipes/gate-by-feature-or-admin.md` -- decision table for access control patterns
|
|
55
|
-
- `node_modules/@elevasis/sdk/reference/scaffold/recipes/extend-lead-gen.md` -- build or extend lead-gen pages, sidebars, hooks, list/member state, artifacts,
|
|
55
|
+
- `node_modules/@elevasis/sdk/reference/scaffold/recipes/extend-lead-gen.md` -- build or extend lead-gen pages, sidebars, hooks, list/member state, artifacts, workflow adapters, and prospecting semantics
|
|
56
56
|
- `node_modules/@elevasis/sdk/reference/scaffold/operations/workflow-recipes.md` -- workflow anatomy, adapter patterns, trigger patterns
|
|
57
|
-
- `node_modules/@elevasis/sdk/reference/scaffold/operations/propagation-pipeline.md` -- how sync and verification work across projects
|
|
58
|
-
- `node_modules/@elevasis/sdk/reference/scaffold/operations/scaffold-maintenance.md` -- content placement and auto-generation pipeline
|
|
59
|
-
- `node_modules/@elevasis/sdk/reference/scaffold/reference/glossary.md` -- Organization OS term definitions
|
|
60
|
-
- `node_modules/@elevasis/sdk/reference/scaffold/reference/contracts.md` -- auto-generated TypeScript contract shapes
|
|
61
|
-
- `node_modules/@elevasis/sdk/reference/scaffold/reference/feature-registry.md` -- auto-generated feature manifest catalog
|
|
62
|
-
|
|
63
|
-
### Local Project Docs
|
|
64
|
-
|
|
65
|
-
- `.claude/rules/agent-start-here.md` -- canonical first-read for agents (includes task-class routing)
|
|
66
|
-
|
|
67
|
-
## Published Subpaths and Constants
|
|
68
|
-
|
|
69
|
-
- `@elevasis/core/organization-model` -- the curated organization-model barrel. Exports `defineOrganizationModel`, `resolveOrganizationModel`, `OrganizationModelSchema`, `DEFAULT_ORGANIZATION_MODEL`, organization-model types, and typed feature/surface constants.
|
|
70
|
-
- Feature IDs: `CRM_FEATURE_ID`, `LEAD_GEN_FEATURE_ID`, `PROJECTS_FEATURE_ID`, `OPERATIONS_FEATURE_ID`, `MONITORING_FEATURE_ID`, `SETTINGS_FEATURE_ID`, `SEO_FEATURE_ID`
|
|
71
|
-
- Headline surface IDs: `CRM_PIPELINE_SURFACE_ID`, `LEAD_GEN_LISTS_SURFACE_ID`, `PROJECTS_INDEX_SURFACE_ID`, `OPERATIONS_ORGANIZATION_GRAPH_SURFACE_ID`
|
|
72
|
-
- Reality domain types: `OrganizationModelIdentity`, `OrganizationModelCustomers`, `OrganizationModelCustomerSegment`, `OrganizationModelOfferings`, `OrganizationModelProduct`, `OrganizationModelRoles`, `OrganizationModelRole`, `OrganizationModelGoals`, `OrganizationModelObjective`, `OrganizationModelKeyResult`
|
|
73
|
-
- Vibe domain types: `OrganizationModelStatuses`, `OrganizationModelOperations`
|
|
74
|
-
- TechStack: `TechStackEntrySchema`, `OrganizationModelTechStackEntry`
|
|
75
|
-
- Use constants instead of magic strings when overriding the org model.
|
|
76
|
-
- `@elevasis/core/entities` -- entity contracts barrel. Exports `BaseProject`, `BaseProjectSchema`, `BaseProjectInput` and the equivalents for `Milestone`, `Task`, `Deal`, `Company`, `Contact`. Each base interface is generic over a `\<TMeta>` extension slot. Extend these in `foundations/types/entities.ts` to add project-specific fields.
|
|
77
|
-
|
|
78
|
-
## When Working with Organization OS
|
|
79
|
-
|
|
57
|
+
- `node_modules/@elevasis/sdk/reference/scaffold/operations/propagation-pipeline.md` -- how sync and verification work across projects
|
|
58
|
+
- `node_modules/@elevasis/sdk/reference/scaffold/operations/scaffold-maintenance.md` -- content placement and auto-generation pipeline
|
|
59
|
+
- `node_modules/@elevasis/sdk/reference/scaffold/reference/glossary.md` -- Organization OS term definitions
|
|
60
|
+
- `node_modules/@elevasis/sdk/reference/scaffold/reference/contracts.md` -- auto-generated TypeScript contract shapes
|
|
61
|
+
- `node_modules/@elevasis/sdk/reference/scaffold/reference/feature-registry.md` -- auto-generated feature manifest catalog
|
|
62
|
+
|
|
63
|
+
### Local Project Docs
|
|
64
|
+
|
|
65
|
+
- `.claude/rules/agent-start-here.md` -- canonical first-read for agents (includes task-class routing)
|
|
66
|
+
|
|
67
|
+
## Published Subpaths and Constants
|
|
68
|
+
|
|
69
|
+
- `@elevasis/core/organization-model` -- the curated organization-model barrel. Exports `defineOrganizationModel`, `resolveOrganizationModel`, `OrganizationModelSchema`, `DEFAULT_ORGANIZATION_MODEL`, organization-model types, and typed feature/surface constants.
|
|
70
|
+
- Feature IDs: `CRM_FEATURE_ID`, `LEAD_GEN_FEATURE_ID`, `PROJECTS_FEATURE_ID`, `OPERATIONS_FEATURE_ID`, `MONITORING_FEATURE_ID`, `SETTINGS_FEATURE_ID`, `SEO_FEATURE_ID`
|
|
71
|
+
- Headline surface IDs: `CRM_PIPELINE_SURFACE_ID`, `LEAD_GEN_LISTS_SURFACE_ID`, `PROJECTS_INDEX_SURFACE_ID`, `OPERATIONS_ORGANIZATION_GRAPH_SURFACE_ID`
|
|
72
|
+
- Reality domain types: `OrganizationModelIdentity`, `OrganizationModelCustomers`, `OrganizationModelCustomerSegment`, `OrganizationModelOfferings`, `OrganizationModelProduct`, `OrganizationModelRoles`, `OrganizationModelRole`, `OrganizationModelGoals`, `OrganizationModelObjective`, `OrganizationModelKeyResult`
|
|
73
|
+
- Vibe domain types: `OrganizationModelStatuses`, `OrganizationModelOperations`
|
|
74
|
+
- TechStack: `TechStackEntrySchema`, `OrganizationModelTechStackEntry`
|
|
75
|
+
- Use constants instead of magic strings when overriding the org model.
|
|
76
|
+
- `@elevasis/core/entities` -- entity contracts barrel. Exports `BaseProject`, `BaseProjectSchema`, `BaseProjectInput` and the equivalents for `Milestone`, `Task`, `Deal`, `Company`, `Contact`. Each base interface is generic over a `\<TMeta>` extension slot. Extend these in `foundations/types/entities.ts` to add project-specific fields.
|
|
77
|
+
|
|
78
|
+
## When Working with Organization OS
|
|
79
|
+
|
|
80
80
|
- **Changing org model (structural reality):** Use `/configure` as the entry point. Direct edits to `foundations/config/organization-model.ts` are discouraged -- `/configure` runs the read → propose → confirm → write → validate ceremony. Run `/configure` for the full layered flow or `/configure \<domain>` for a targeted domain.
|
|
81
81
|
- **Building or extending CRM:** Start with `node_modules/@elevasis/sdk/reference/scaffold/recipes/extend-crm.md`. CRM spans Organization OS sales semantics, shared UI primitives, deal hooks, workflow adapters, and generated contracts.
|
|
82
|
-
- **Building or extending lead gen:** Start with `node_modules/@elevasis/sdk/reference/scaffold/recipes/extend-lead-gen.md`. Lead gen spans Organization OS prospecting semantics, shared UI primitives, list/member hooks, artifact
|
|
82
|
+
- **Building or extending lead gen:** Start with `node_modules/@elevasis/sdk/reference/scaffold/recipes/extend-lead-gen.md`. Lead gen spans Organization OS prospecting semantics, shared UI primitives, list/member hooks, artifact hooks, workflow adapters, and generated contracts.
|
|
83
83
|
- **Customizing CRM deal actions:** Follow `node_modules/@elevasis/sdk/reference/scaffold/recipes/customize-crm-actions.md`. Do not add `sales.actions` to the org model; the v1 server-side override surface is intentionally deferred.
|
|
84
84
|
- **Adding a feature:** Follow `node_modules/@elevasis/sdk/reference/scaffold/recipes/add-a-feature.md`. For toggling an existing feature, use `/configure features`.
|
|
85
|
-
- **Adding a resource:** Follow `node_modules/@elevasis/sdk/reference/scaffold/recipes/add-a-resource.md`.
|
|
86
|
-
- **Extending entities:** Start with `foundations/types/entities.ts` for the demo extension pattern. Base shapes come from `@elevasis/core/entities`.
|
|
87
|
-
- **Authoring a workflow that takes a Project/Deal/etc.:** Reference entity types from `foundations/types/entities.ts` in the input schema -- do not redeclare them.
|
|
88
|
-
- **Understanding contracts:** Check `node_modules/@elevasis/sdk/reference/scaffold/reference/contracts.md` for current type shapes.
|
|
89
|
-
- **Debugging sync issues:** Check `node_modules/@elevasis/sdk/reference/scaffold/operations/propagation-pipeline.md` for the verification pipeline.
|
|
90
|
-
|
|
91
|
-
## `/configure` -- Org Model QA Entry Point
|
|
92
|
-
|
|
93
|
-
`/configure` is the recurring, safe-to-re-run org model editor for this project. It is a skill (not a command) at `.claude/skills/configure/SKILL.md`.
|
|
94
|
-
|
|
95
|
-
**Usage:**
|
|
96
|
-
|
|
97
|
-
- `/configure` -- layered flow: identity → customers → offerings → roles → goals → techStack
|
|
98
|
-
- `/configure identity` -- legal identity, mission/vision, industry, geography, timezone
|
|
99
|
-
- `/configure customers` -- customer segments with jobs-to-be-done, pains, gains, firmographics
|
|
100
|
-
- `/configure offerings` -- products and services with pricing model and segment references
|
|
101
|
-
- `/configure roles` -- role chart with responsibilities, reporting lines, and holders
|
|
102
|
-
- `/configure goals` -- organizational goals with period and measurable outcomes
|
|
103
|
-
- `/configure techStack` -- external-SaaS integration metadata on resource mappings
|
|
104
|
-
- `/configure features` -- enable, disable, or add features
|
|
105
|
-
- `/configure labels` -- edit display labels on enum entries (statuses, stages)
|
|
106
|
-
|
|
107
|
-
Every write is gated: `resolveOrganizationModel()` must succeed (Zod cross-refs pass) and `pnpm -C operations check-types` must pass. On failure the change is rolled back.
|
|
108
|
-
|
|
109
|
-
**Distinction from `/setup`:** `/setup` is first-time bootstrap only. After bootstrap it delegates here. `/configure` is idempotent and safe to re-run at any time.
|
|
110
|
-
|
|
111
|
-
The ambient vibe layer (`.claude/rules/vibe.md`) automatically detects Codify intent in plain language and delegates to `/configure`. Power users can invoke `/configure` directly to bypass the ambient layer entirely.
|
|
85
|
+
- **Adding a resource:** Follow `node_modules/@elevasis/sdk/reference/scaffold/recipes/add-a-resource.md`.
|
|
86
|
+
- **Extending entities:** Start with `foundations/types/entities.ts` for the demo extension pattern. Base shapes come from `@elevasis/core/entities`.
|
|
87
|
+
- **Authoring a workflow that takes a Project/Deal/etc.:** Reference entity types from `foundations/types/entities.ts` in the input schema -- do not redeclare them.
|
|
88
|
+
- **Understanding contracts:** Check `node_modules/@elevasis/sdk/reference/scaffold/reference/contracts.md` for current type shapes.
|
|
89
|
+
- **Debugging sync issues:** Check `node_modules/@elevasis/sdk/reference/scaffold/operations/propagation-pipeline.md` for the verification pipeline.
|
|
90
|
+
|
|
91
|
+
## `/configure` -- Org Model QA Entry Point
|
|
92
|
+
|
|
93
|
+
`/configure` is the recurring, safe-to-re-run org model editor for this project. It is a skill (not a command) at `.claude/skills/configure/SKILL.md`.
|
|
94
|
+
|
|
95
|
+
**Usage:**
|
|
96
|
+
|
|
97
|
+
- `/configure` -- layered flow: identity → customers → offerings → roles → goals → techStack
|
|
98
|
+
- `/configure identity` -- legal identity, mission/vision, industry, geography, timezone
|
|
99
|
+
- `/configure customers` -- customer segments with jobs-to-be-done, pains, gains, firmographics
|
|
100
|
+
- `/configure offerings` -- products and services with pricing model and segment references
|
|
101
|
+
- `/configure roles` -- role chart with responsibilities, reporting lines, and holders
|
|
102
|
+
- `/configure goals` -- organizational goals with period and measurable outcomes
|
|
103
|
+
- `/configure techStack` -- external-SaaS integration metadata on resource mappings
|
|
104
|
+
- `/configure features` -- enable, disable, or add features
|
|
105
|
+
- `/configure labels` -- edit display labels on enum entries (statuses, stages)
|
|
106
|
+
|
|
107
|
+
Every write is gated: `resolveOrganizationModel()` must succeed (Zod cross-refs pass) and `pnpm -C operations check-types` must pass. On failure the change is rolled back.
|
|
108
|
+
|
|
109
|
+
**Distinction from `/setup`:** `/setup` is first-time bootstrap only. After bootstrap it delegates here. `/configure` is idempotent and safe to re-run at any time.
|
|
110
|
+
|
|
111
|
+
The ambient vibe layer (`.claude/rules/vibe.md`) automatically detects Codify intent in plain language and delegates to `/configure`. Power users can invoke `/configure` directly to bypass the ambient layer entirely.
|
|
@@ -38,5 +38,5 @@ paths:
|
|
|
38
38
|
|
|
39
39
|
- `node_modules/@elevasis/sdk/reference/scaffold/operations/workflow-recipes.md` -- workflow anatomy, adapter patterns, trigger patterns
|
|
40
40
|
- `node_modules/@elevasis/sdk/reference/scaffold/recipes/add-a-resource.md` -- end-to-end resource authoring guide
|
|
41
|
-
- `node_modules/@elevasis/sdk/reference/scaffold/recipes/extend-lead-gen.md` -- lead-gen UI, hooks, list/member state, artifacts,
|
|
41
|
+
- `node_modules/@elevasis/sdk/reference/scaffold/recipes/extend-lead-gen.md` -- lead-gen UI, hooks, list/member state, artifacts, and workflow adapter extension guide
|
|
42
42
|
- SDK reference docs: `operations/node_modules/@elevasis/sdk/reference/` (concepts, framework, platform-tools, runtime, CLI)
|