palmagent 0.0.1-alpha.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.
Files changed (3) hide show
  1. package/README.md +8 -0
  2. package/cli.js +15 -0
  3. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # palmagent
2
+
3
+ 🚧 **Coming soon.**
4
+
5
+ This package is a placeholder that reserves the npm name `palmagent`.
6
+ The real tool isn't published yet — there's nothing to install or run for now.
7
+
8
+ Watch this space.
package/cli.js ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env node
2
+ // palmagent — placeholder binary. Reserves the npm name; the real tool isn't
3
+ // published yet. Any invocation just prints the notice and exits 0.
4
+ const msg = [
5
+ "",
6
+ " palmagent — coming soon 🚧",
7
+ "",
8
+ ' This is a placeholder that reserves the npm package name "palmagent".',
9
+ " The tool isn't published yet — there's nothing to run here.",
10
+ "",
11
+ " Watch this space.",
12
+ "",
13
+ ].join("\n");
14
+ console.log(msg);
15
+ process.exit(0);
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "palmagent",
3
+ "version": "0.0.1-alpha.0",
4
+ "description": "palmagent — coming soon (placeholder reserving the npm name)",
5
+ "bin": {
6
+ "palmagent": "cli.js"
7
+ },
8
+ "files": [
9
+ "cli.js",
10
+ "README.md"
11
+ ],
12
+ "keywords": [
13
+ "placeholder",
14
+ "coming-soon"
15
+ ],
16
+ "license": "MIT",
17
+ "engines": {
18
+ "node": ">=14"
19
+ }
20
+ }