nebula-ai-plugin-system 0.1.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/package.json +49 -0
- package/src/browser.ts +713 -0
- package/src/code-execute.ts +151 -0
- package/src/cwd-state.ts +33 -0
- package/src/delegate.ts +88 -0
- package/src/fs.ts +0 -0
- package/src/index.ts +160 -0
- package/src/session-search.ts +103 -0
- package/src/shell-cd.ts +73 -0
- package/src/shell-process.ts +255 -0
- package/src/shell.ts +104 -0
- package/src/skills-manage.ts +126 -0
- package/src/skills.ts +107 -0
- package/src/todo.ts +91 -0
- package/src/vision.ts +242 -0
- package/src/web-fetch.ts +310 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# nebula-ai-plugin-system
|
|
2
|
+
|
|
3
|
+
OS + workspace tools for **nebula**: `fs.read` / `write` / `patch` / `search`,
|
|
4
|
+
`shell.run` / `shell.process_*`, `code.execute`, `web.fetch`, the `browser.*`
|
|
5
|
+
headless-browser tools, `skills.*`, `memory.read` / `save`, `delegate.task`,
|
|
6
|
+
`vision.analyze`, and more.
|
|
7
|
+
|
|
8
|
+
Includes the multi-tier **execution sandbox** (macOS sandbox-exec / Linux
|
|
9
|
+
bubblewrap / Docker) — defense-in-depth beneath the permission floor for safely
|
|
10
|
+
running untrusted shell + code, even when a command is granted.
|
|
11
|
+
|
|
12
|
+
## Install
|
|
13
|
+
|
|
14
|
+
Auto-installed with [`nebula-treasury`](https://www.npmjs.com/package/nebula-treasury).
|
|
15
|
+
Or directly: `bun add nebula-ai-plugin-system`.
|
|
16
|
+
|
|
17
|
+
See the [root README](https://github.com/rstfulzz/nebula#readme).
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "nebula-ai-plugin-system",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "OS + workspace tools for nebula: fs, shell, code, web, headless browser, skills — with a multi-tier execution sandbox",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"homepage": "https://github.com/rstfulzz/nebula",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/rstfulzz/nebula.git",
|
|
11
|
+
"directory": "packages/plugin-system"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/rstfulzz/nebula/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"nebula",
|
|
18
|
+
"ai",
|
|
19
|
+
"agent",
|
|
20
|
+
"fs",
|
|
21
|
+
"shell",
|
|
22
|
+
"browser",
|
|
23
|
+
"sandbox",
|
|
24
|
+
"tools",
|
|
25
|
+
"plugin"
|
|
26
|
+
],
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"bun": ">=1.1"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"src",
|
|
35
|
+
"!src/**/*.test.ts",
|
|
36
|
+
"README.md"
|
|
37
|
+
],
|
|
38
|
+
"main": "./src/index.ts",
|
|
39
|
+
"types": "./src/index.ts",
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsc -b",
|
|
42
|
+
"test": "bun test"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"nebula-ai-core": "0.1.0",
|
|
46
|
+
"agent-browser": "^0.26.0",
|
|
47
|
+
"zod": "^3.24.1"
|
|
48
|
+
}
|
|
49
|
+
}
|