@openagentpack/sdk 0.5.0 → 0.7.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/README.md +17 -0
- package/dist/chunk-56BB46YT.js +1191 -0
- package/dist/chunk-HIK5DY4I.js +2429 -0
- package/dist/chunk-ZBJDMUJT.js +6989 -0
- package/dist/directory-nY2Slsfi.d.ts +98 -0
- package/dist/{session-event-5kLRNMHC.d.ts → dto-BT1Q1Ii6.d.ts} +14 -50
- package/dist/errors-BcVE1wZB.d.ts +5 -0
- package/dist/index.d.ts +22 -1102
- package/dist/index.js +353 -9280
- package/dist/project-versions.d.ts +105 -0
- package/dist/project-versions.js +35 -0
- package/dist/project-workspace.d.ts +150 -0
- package/dist/project-workspace.js +1720 -0
- package/dist/resource-runtime-DZDY45_Q.d.ts +1126 -0
- package/dist/session-event-DB_YlDiK.d.ts +52 -0
- package/dist/session-events.d.ts +2 -1
- package/package.json +13 -1
package/README.md
CHANGED
|
@@ -18,6 +18,23 @@ const plan = await planProjectContext(config);
|
|
|
18
18
|
console.log(plan);
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
+
## Local projects and versions
|
|
22
|
+
|
|
23
|
+
The same SDK package includes Node.js subpaths for directory projects and local
|
|
24
|
+
snapshots; no additional OpenAgentPack packages are required:
|
|
25
|
+
|
|
26
|
+
```ts
|
|
27
|
+
import { initializeDirectoryProject } from "@openagentpack/sdk/project-workspace";
|
|
28
|
+
import { createDirectoryProjectVersionService } from "@openagentpack/sdk/project-versions";
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Use [project-workspace](https://github.com/modelstudioai/OpenAgentPack/blob/main/packages/sdk/docs/project-workspace.md)
|
|
32
|
+
for Init, Build, Publish, and validated directory restore. The lower-level
|
|
33
|
+
[project-versions](https://github.com/modelstudioai/OpenAgentPack/blob/main/packages/sdk/docs/project-versions.md)
|
|
34
|
+
subpath exposes snapshot storage primitives. Existing local snapshots remain
|
|
35
|
+
compatible without migration. These services are not re-exported from the SDK's
|
|
36
|
+
default entry point.
|
|
37
|
+
|
|
21
38
|
See the [configuration guide](https://github.com/modelstudioai/OpenAgentPack/blob/main/docs/configuration.md), [provider reference](https://github.com/modelstudioai/OpenAgentPack/blob/main/docs/providers.md), and [SDK documentation](https://github.com/modelstudioai/OpenAgentPack/tree/main/packages/sdk/docs).
|
|
22
39
|
|
|
23
40
|
## License
|