create-worktable 0.0.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,11 @@
1
+ # create-worktable
2
+
3
+ Reserved package for the Worktable first-run installer.
4
+
5
+ Future usage:
6
+
7
+ ```bash
8
+ npm create worktable
9
+ Worktable is a local-first workspace for humans and agents.
10
+
11
+ This package is not currently licensed for public use. All rights reserved.
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env node
2
+ console.log(`
3
+ Worktable
4
+
5
+ The Worktable first-run installer is not available yet.
6
+ This package is reserved for the Worktable project.
7
+
8
+ More soon: https://worktable.dev
9
+ `);
package/package.json ADDED
@@ -0,0 +1 @@
1
+ {"name":"create-worktable","version":"0.0.0","description":"Create a new Worktable workspace.","license":"UNLICENSED","type":"module","bin":{"create-worktable":"./bin/create-worktable.js"},"files":["bin","README.md"]}