You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(sdk): consolidate project services into SDK (#111)
Move local versions and directory workspace services into SDK subpath exports. Update CLI and Workbench consumers, release configuration, documentation, and package smoke coverage.
Bump SDK, CLI, and Playground to 0.7.0 while retaining private package versions.
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -179,10 +179,10 @@ The [`examples/`](./examples) directory has runnable configs for every provider,
179
179
180
180
## Using the SDK
181
181
182
-
Cloud runtime capabilities are available from `@openagentpack/sdk`. Directory compilation, Build/Publish, and full-tree versions are exposed by `@openagentpack/project-workspace`, backed by the storage primitives in `@openagentpack/project-versions`:
182
+
Cloud runtime capabilities are available from `@openagentpack/sdk`. The same npm package includes Node-only subpaths: `@openagentpack/sdk/project-workspace`provides directory compilation, Build/Publish, and full-tree versions, backed by the storage primitives in `@openagentpack/sdk/project-versions`:
183
183
184
184
```ts
185
-
import { previewProjectBuild, commitProjectBuild } from "@openagentpack/project-workspace";
185
+
import { previewProjectBuild, commitProjectBuild } from "@openagentpack/sdk/project-workspace";
0 commit comments