@orgloop/server 0.1.0 → 0.1.2
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 +31 -0
- package/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# @orgloop/server
|
|
2
|
+
|
|
3
|
+
OrgLoop HTTP API server -- exposes the OrgLoop engine over HTTP for remote management and integration.
|
|
4
|
+
|
|
5
|
+
> **Note:** This package is a placeholder for the v1.1 release. It currently re-exports `@orgloop/core`. The HTTP API surface is under design.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @orgloop/server
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Status
|
|
14
|
+
|
|
15
|
+
Planned capabilities:
|
|
16
|
+
|
|
17
|
+
- REST API for engine lifecycle (start/stop/status)
|
|
18
|
+
- Event submission endpoint
|
|
19
|
+
- Route and config inspection
|
|
20
|
+
- WebSocket event streaming
|
|
21
|
+
- Health check endpoints
|
|
22
|
+
|
|
23
|
+
For now, use [`@orgloop/cli`](https://www.npmjs.com/package/@orgloop/cli) to run OrgLoop, or embed [`@orgloop/core`](https://www.npmjs.com/package/@orgloop/core) directly as a library.
|
|
24
|
+
|
|
25
|
+
## Documentation
|
|
26
|
+
|
|
27
|
+
Full documentation at [orgloop.ai](https://orgloop.ai)
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orgloop/server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "OrgLoop HTTP API server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@orgloop/core": "0.1.
|
|
10
|
-
"@orgloop/sdk": "0.1.
|
|
9
|
+
"@orgloop/core": "0.1.2",
|
|
10
|
+
"@orgloop/sdk": "0.1.2"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
13
|
"dist"
|