@remnic/connector-droid 9.63.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 ADDED
@@ -0,0 +1,32 @@
1
+ # @remnic/connector-droid
2
+
3
+ > **Built by Droid.** This connector was implemented by Factory Droid itself.
4
+
5
+ Factory Droid connector for Remnic — connect [Droid](https://factory.ai) to
6
+ your shared memory store via HTTP MCP.
7
+
8
+ ## Install
9
+
10
+ ```bash
11
+ remnic connectors install droid
12
+ ```
13
+
14
+ This mints a host token, records Remnic-side connector state, and writes a
15
+ `remnic` entry to the **user-level** `~/.factory/mcp.json` with HTTP transport
16
+ and an `Authorization: Bearer <token>` header. The project-level
17
+ `.factory/mcp.json` is never touched.
18
+
19
+ ## Verify
20
+
21
+ ```bash
22
+ remnic connectors doctor droid
23
+ ```
24
+
25
+ ## Remove
26
+
27
+ ```bash
28
+ remnic connectors remove droid
29
+ ```
30
+
31
+ See [docs/integration/droid.md](../../docs/integration/droid.md) for the full
32
+ guide.
@@ -0,0 +1,22 @@
1
+ export { removeFactoryMcpRemnicEntry, resolveFactoryMcpPath, upsertFactoryMcpRemnicEntry } from '@remnic/core/connectors';
2
+
3
+ /**
4
+ * @remnic/connector-droid — Factory Droid connector for Remnic
5
+ *
6
+ * Connects Factory Droid to your shared Remnic memory store via HTTP MCP.
7
+ *
8
+ * Install with:
9
+ * remnic connectors install droid
10
+ *
11
+ * This mints a host token, records Remnic-side connector state, and writes
12
+ * the remnic MCP server entry (HTTP transport + Authorization bearer) into
13
+ * the user-level ~/.factory/mcp.json — never the project-level
14
+ * .factory/mcp.json.
15
+ *
16
+ * Built by Droid. See docs/integration/droid.md for the full walkthrough.
17
+ */
18
+
19
+ declare const CONNECTOR_ID: "droid";
20
+ declare const REMNIC_MCP_SERVER_KEY: "remnic";
21
+
22
+ export { CONNECTOR_ID, REMNIC_MCP_SERVER_KEY };
package/dist/index.js ADDED
@@ -0,0 +1,18 @@
1
+ // openclaw-engram: Local-first memory plugin
2
+
3
+ // src/index.ts
4
+ import {
5
+ resolveFactoryMcpPath,
6
+ upsertFactoryMcpRemnicEntry,
7
+ removeFactoryMcpRemnicEntry
8
+ } from "@remnic/core/connectors";
9
+ var CONNECTOR_ID = "droid";
10
+ var REMNIC_MCP_SERVER_KEY = "remnic";
11
+ export {
12
+ CONNECTOR_ID,
13
+ REMNIC_MCP_SERVER_KEY,
14
+ removeFactoryMcpRemnicEntry,
15
+ resolveFactoryMcpPath,
16
+ upsertFactoryMcpRemnicEntry
17
+ };
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["/**\n * @remnic/connector-droid — Factory Droid connector for Remnic\n *\n * Connects Factory Droid to your shared Remnic memory store via HTTP MCP.\n *\n * Install with:\n * remnic connectors install droid\n *\n * This mints a host token, records Remnic-side connector state, and writes\n * the remnic MCP server entry (HTTP transport + Authorization bearer) into\n * the user-level ~/.factory/mcp.json — never the project-level\n * .factory/mcp.json.\n *\n * Built by Droid. See docs/integration/droid.md for the full walkthrough.\n */\n\nexport {\n resolveFactoryMcpPath,\n upsertFactoryMcpRemnicEntry,\n removeFactoryMcpRemnicEntry,\n} from \"@remnic/core/connectors\";\n\nexport const CONNECTOR_ID = \"droid\" as const;\nexport const REMNIC_MCP_SERVER_KEY = \"remnic\" as const;\n"],"mappings":";;;AAgBA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAEA,IAAM,eAAe;AACrB,IAAM,wBAAwB;","names":[]}
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@remnic/connector-droid",
3
+ "version": "9.63.0",
4
+ "description": "Factory Droid connector for Remnic — connect Droid to your shared memory store via HTTP MCP",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "scripts": {
18
+ "build": "tsup src/index.ts --format esm --dts",
19
+ "precheck-types": "node ../../scripts/ensure-bench-build-deps.mjs",
20
+ "check-types": "tsc --noEmit",
21
+ "test": "NODE_OPTIONS=\"${NODE_OPTIONS:+$NODE_OPTIONS }--conditions=remnic-source\" tsx --test src/index.test.ts",
22
+ "prepublishOnly": "npm run build"
23
+ },
24
+ "publishConfig": {
25
+ "access": "public",
26
+ "provenance": true
27
+ },
28
+ "peerDependencies": {
29
+ "@remnic/core": "^9.63.0"
30
+ },
31
+ "peerDependenciesMeta": {
32
+ "@remnic/core": {
33
+ "optional": true
34
+ }
35
+ },
36
+ "devDependencies": {
37
+ "@remnic/core": "workspace:*",
38
+ "tsup": "^8.0.0",
39
+ "typescript": "^5.7.0",
40
+ "tsx": "^4.0.0"
41
+ },
42
+ "license": "MIT",
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "https://github.com/joshuaswarren/remnic.git",
46
+ "directory": "packages/connector-droid"
47
+ },
48
+ "keywords": [
49
+ "remnic",
50
+ "memory",
51
+ "droid",
52
+ "factory",
53
+ "ai",
54
+ "agent",
55
+ "mcp"
56
+ ]
57
+ }