knolli 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 ADDED
@@ -0,0 +1,48 @@
1
+ # Knolli
2
+
3
+ ![CMDOP Architecture](https://cmdop.com/images/architecture/vs-personal-agent.png)
4
+
5
+ **Secure no-code AI copilot with structured workflows.**
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
@@ -0,0 +1,6 @@
1
+ /**
2
+ * knolli — placeholder package.
3
+ * Install @cmdop/node for the full SDK: npm install @cmdop/node
4
+ * https://cmdop.com/sdk/node/
5
+ */
6
+ export {};
package/index.js ADDED
@@ -0,0 +1,12 @@
1
+ /**
2
+ * knolli — 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('knolli: 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": "knolli",
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
+ "knolli",
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
+ }