@nkmc/agent-fs 0.1.0 → 0.1.3

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 (2) hide show
  1. package/README.md +23 -0
  2. package/package.json +7 -2
package/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # @nkmc/agent-fs
2
+
3
+ > The gateway of internet for all agents. NaKaMiChi - the middle path, the right path.
4
+
5
+ Virtual filesystem abstraction for AI agents. Maps API calls to Unix-like commands (`ls`, `cat`, `grep`, `write`, `rm`).
6
+
7
+ ## Part of the [nkmc gateway](https://github.com/nkmc-ai/gateway)
8
+
9
+ ```bash
10
+ npm install @nkmc/agent-fs
11
+ ```
12
+
13
+ ## What it does
14
+
15
+ - **HTTP Backend** — REST APIs become browsable directories and files
16
+ - **RPC Backend** — JSON-RPC APIs (Ethereum, etc.) exposed as resources
17
+ - **Mount system** — Multiple APIs mounted at virtual paths
18
+ - **Pagination, retry, OAuth2** — Built-in support for real-world APIs
19
+
20
+ ## Links
21
+
22
+ - [Gateway repo](https://github.com/nkmc-ai/gateway)
23
+ - [Full reference](https://nkmc.ai/skill.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nkmc/agent-fs",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
@@ -21,5 +21,10 @@
21
21
  "build": "tsup",
22
22
  "dev": "tsup --watch"
23
23
  },
24
- "dependencies": {}
24
+ "dependencies": {},
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/nkmc-ai/gateway"
28
+ },
29
+ "description": "The gateway of internet for all agents — nkmc agent-fs"
25
30
  }