autonym-local 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.
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # autonym-local
2
+
3
+ Local mode for Autonym, the user-owned personal context record. This is a
4
+ pre-release placeholder that reserves the package name. See https://autonym.dev
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log("Autonym local mode is not yet released. See https://autonym.dev");
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "autonym-local",
3
+ "version": "0.0.1",
4
+ "description": "Local mode for Autonym, the user-owned personal context record. Pre-release placeholder.",
5
+ "license": "Apache-2.0",
6
+ "homepage": "https://autonym.dev",
7
+ "repository": { "type": "git", "url": "git+https://github.com/autonymproject/autonym-local.git" },
8
+ "keywords": ["autonym", "personal-context", "mcp"],
9
+ "bin": { "autonym-local": "bin/autonym-local.js" },
10
+ "files": ["bin", "README.md"]
11
+ }