offlid 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,9 @@
1
+ # offlid
2
+
3
+ **Your Mac goes Offlid. Your agent stays online.**
4
+
5
+ Close your lid and walk away — your coding agent keeps working in the cloud and syncs back the moment you reopen.
6
+
7
+ This package name is reserved. The CLI is launching soon.
8
+
9
+ → https://offlid.com
package/bin/offlid.js ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+ console.log(
3
+ "\n offlid — Your Mac goes Offlid. Your agent stays online.\n\n" +
4
+ " Reserved and launching soon: https://offlid.com\n"
5
+ );
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "offlid",
3
+ "version": "0.0.1",
4
+ "description": "Your Mac goes Offlid. Your agent stays online. Reserved — the offlid CLI is launching soon.",
5
+ "homepage": "https://offlid.com",
6
+ "license": "UNLICENSED",
7
+ "keywords": ["offlid", "cli", "coding-agent", "cloud", "agent", "veto"],
8
+ "bin": { "offlid": "bin/offlid.js" },
9
+ "files": ["bin", "README.md"],
10
+ "engines": { "node": ">=18" },
11
+ "publishConfig": { "access": "public" }
12
+ }