agentrealm 0.0.1

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.
Files changed (3) hide show
  1. package/README.md +3 -0
  2. package/bin.js +2 -0
  3. package/package.json +22 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # realm
2
+
3
+ Agentless sandbox workspaces. Placeholder — full release coming soon.
package/bin.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log("realm — placeholder. Full release coming soon. https://github.com/exisz/realm");
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "agentrealm",
3
+ "version": "0.0.1",
4
+ "description": "Realm — agentless sandbox workspaces (placeholder, full release coming)",
5
+ "bin": {
6
+ "realm": "./bin.js"
7
+ },
8
+ "main": "bin.js",
9
+ "license": "MIT",
10
+ "author": "exisz",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/exisz/realm.git"
14
+ },
15
+ "keywords": [
16
+ "realm",
17
+ "sandbox",
18
+ "workspace",
19
+ "agent",
20
+ "ai"
21
+ ]
22
+ }