@elevasis/sdk 1.8.3 → 1.9.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 +289 -105
- package/dist/index.d.ts +2 -0
- package/package.json +2 -2
- package/reference/claude-config/sync-notes/2026-04-24-ui-consolidation-and-sdk-cli-train.md +86 -0
- package/reference/deployment/index.mdx +42 -7
- package/reference/examples/organization-model.ts +689 -0
- package/reference/index.mdx +6 -5
- package/reference/claude-config/commands/submit-request.md +0 -11
package/reference/index.mdx
CHANGED
|
@@ -8,7 +8,7 @@ loadWhen: "First session or new to the SDK"
|
|
|
8
8
|
|
|
9
9
|
Workflows are step-based automations with typed inputs and outputs. Agents are autonomous AI resources with access to platform tools. Both are defined in TypeScript, exported from a single entry point, and deployed with `elevasis-sdk deploy`. Resources appear in AI Studio immediately after a successful deploy.
|
|
10
10
|
|
|
11
|
-
The SDK ships with a full CLI (`elevasis-sdk`) for validation, deployment, execution, inspection, and project-management operations. Platform tools expose 70+
|
|
11
|
+
The SDK ships with a full CLI (`elevasis-sdk`) for validation, deployment, execution, inspection, and project-management operations. Platform tools expose 70+ tools across integration adapters and platform services -- Gmail, Stripe, Google Sheets, Attio, and more -- with credentials managed server-side so API keys never cross the execution boundary.
|
|
12
12
|
|
|
13
13
|
## Quick Start
|
|
14
14
|
|
|
@@ -25,7 +25,7 @@ After `pnpm dlx @elevasis/sdk init`, your project is scaffolded with a working e
|
|
|
25
25
|
|
|
26
26
|
- **Workflows** -- Step-based automation with typed inputs and outputs. Steps can be linear, conditional, or branching. Each step is a plain async function. See [Resources](resources/index.mdx) for the complete definition API.
|
|
27
27
|
- **Agents** -- Autonomous AI resources with access to platform tools. Agents run in the worker runtime with full LLM access and platform tool support. Use `--async` when executing agents to avoid HTTP timeout limits on long-running runs.
|
|
28
|
-
- **Feature-driven apps** -- The published `@elevasis/ui
|
|
28
|
+
- **Feature-driven apps** -- The published `@elevasis/ui` surface includes manifest-backed shared features for Lead Gen, CRM, Projects, Operations, Monitoring, Settings, and SEO, plus dashboard-oriented compatibility components for host-owned shells. See [Provided Features](deployment/provided-features.mdx).
|
|
29
29
|
|
|
30
30
|
## Platform Tools
|
|
31
31
|
|
|
@@ -41,7 +41,7 @@ await scheduler.createSchedule({ ... })
|
|
|
41
41
|
const result = await llm.generate({ messages: [...] })
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
-
The platform exposes 70+ tools across
|
|
44
|
+
The platform exposes 70+ tools across integration adapters and platform services -- Gmail, Stripe, Google Sheets, Attio, and more. Credentials are managed server-side; API keys never cross the execution boundary.
|
|
45
45
|
|
|
46
46
|
See [Platform Tools](platform-tools/index.mdx) for the full catalog.
|
|
47
47
|
|
|
@@ -72,7 +72,7 @@ See [Platform Tools](platform-tools/index.mdx) for the full catalog.
|
|
|
72
72
|
|
|
73
73
|
### Typed Adapters
|
|
74
74
|
|
|
75
|
-
- [Integration Adapters](platform-tools/adapters-integration.mdx) -
|
|
75
|
+
- [Integration Adapters](platform-tools/adapters-integration.mdx) - Integration adapter catalog for Attio, Stripe, Google Sheets, Resend, and more
|
|
76
76
|
- [Platform Adapters](platform-tools/adapters-platform.mdx) - All 9 platform service adapters: scheduler, storage, llm, pdf, approval, and more
|
|
77
77
|
|
|
78
78
|
### Framework
|
|
@@ -94,6 +94,7 @@ See [Platform Tools](platform-tools/index.mdx) for the full catalog.
|
|
|
94
94
|
- [Command Center](deployment/command-center.mdx) - Resource graph, relationships, node types, and post-deployment UI reference
|
|
95
95
|
- [Provided Features](deployment/provided-features.mdx) - Manifest-backed shared features, compatibility components, and host shell wiring
|
|
96
96
|
- [Execution API](deployment/api.mdx) - REST endpoints for executing resources and managing deployments
|
|
97
|
+
- [UI Execution](deployment/ui-execution.mdx) - Custom React execution dialogs, forms, and hooks built with `@elevasis/ui`
|
|
97
98
|
|
|
98
99
|
### More
|
|
99
100
|
|
|
@@ -102,4 +103,4 @@ See [Platform Tools](platform-tools/index.mdx) for the full catalog.
|
|
|
102
103
|
|
|
103
104
|
---
|
|
104
105
|
|
|
105
|
-
**Last Updated:** 2026-04-
|
|
106
|
+
**Last Updated:** 2026-04-23
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# Submit Request
|
|
2
|
-
|
|
3
|
-
**Usage:** `/submit-request [optional one-line description]`
|
|
4
|
-
|
|
5
|
-
**Goal:** File a structured request report to the Elevasis platform after agent-driven pre-analysis.
|
|
6
|
-
|
|
7
|
-
**EXECUTE:** `.claude/skills/submit-request/SKILL.md`
|
|
8
|
-
|
|
9
|
-
## Env Requirements
|
|
10
|
-
|
|
11
|
-
- `ELEVASIS_PLATFORM_KEY` (same key used by all `elevasis-sdk` commands — no extra setup if deploy already works)
|