omegaai 2026.2.25
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 +48 -0
- package/index.d.ts +6 -0
- package/index.js +12 -0
- package/package.json +24 -0
package/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# OmegaAI
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
**Autonomous AI workforce for complex business processes.**
|
|
6
|
+
|
|
7
|
+
Looking for an agent orchestration SDK for Node.js? Check out [@cmdop/node](https://www.npmjs.com/package/@cmdop/node) — a full-featured SDK for building and managing AI agents with terminal access, file operations, browser automation, and more.
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @cmdop/node
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Quick Start
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { CMDOPClient } from '@cmdop/node';
|
|
17
|
+
|
|
18
|
+
// Local connection (auto-discover agent)
|
|
19
|
+
const client = CMDOPClient.local();
|
|
20
|
+
|
|
21
|
+
// Remote connection via cloud relay
|
|
22
|
+
const client = CMDOPClient.remote('cmdop_live_xxx');
|
|
23
|
+
|
|
24
|
+
// Terminal
|
|
25
|
+
const session = await client.terminal.create({ cols: 120, rows: 40 });
|
|
26
|
+
await client.terminal.sendInput(session.sessionId, 'ls -la\n');
|
|
27
|
+
|
|
28
|
+
// Files
|
|
29
|
+
const result = await client.files.list('/tmp');
|
|
30
|
+
await client.files.read('/tmp/file.txt');
|
|
31
|
+
await client.files.write('/tmp/new.txt', 'Hello World');
|
|
32
|
+
|
|
33
|
+
// Agent
|
|
34
|
+
const result = await client.agent.run('List files in /tmp');
|
|
35
|
+
console.log(result.text);
|
|
36
|
+
|
|
37
|
+
// Browser
|
|
38
|
+
const browser = await client.browser.createSession({ startUrl: 'https://example.com' });
|
|
39
|
+
await browser.navigate('https://github.com');
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Links
|
|
43
|
+
|
|
44
|
+
- [CMDOP Homepage](https://cmdop.com)
|
|
45
|
+
- [Documentation](https://cmdop.com/docs/sdk/node/)
|
|
46
|
+
- [@cmdop/node on npm](https://www.npmjs.com/package/@cmdop/node)
|
|
47
|
+
- [@cmdop/react on npm](https://www.npmjs.com/package/@cmdop/react)
|
|
48
|
+
- [GitHub](https://github.com/commandoperator/cmdop-sdk-js)
|
package/index.d.ts
ADDED
package/index.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* omegaai — this package exists to help you find @cmdop/node.
|
|
3
|
+
*
|
|
4
|
+
* Install the real SDK:
|
|
5
|
+
* npm install @cmdop/node
|
|
6
|
+
*
|
|
7
|
+
* Learn more: https://cmdop.com/sdk/node/
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
console.log('omegaai: This is a placeholder package. Install @cmdop/node for the full SDK.');
|
|
11
|
+
console.log(' npm install @cmdop/node');
|
|
12
|
+
console.log(' https://cmdop.com/sdk/node/');
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "omegaai",
|
|
3
|
+
"version": "2026.02.25",
|
|
4
|
+
"description": "Agent orchestration SDK — see @cmdop/node (npm install @cmdop/node) for full features",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"omegaai",
|
|
10
|
+
"cmdop",
|
|
11
|
+
"agent",
|
|
12
|
+
"automation",
|
|
13
|
+
"orchestration",
|
|
14
|
+
"terminal",
|
|
15
|
+
"grpc",
|
|
16
|
+
"ai-agent"
|
|
17
|
+
],
|
|
18
|
+
"homepage": "https://cmdop.com/sdk/node/",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/commandoperator/cmdop-sdk-js.git"
|
|
22
|
+
},
|
|
23
|
+
"author": "CMDOP Team"
|
|
24
|
+
}
|