agent48 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.
Files changed (3) hide show
  1. package/README.md +7 -0
  2. package/bin.js +9 -0
  3. package/package.json +24 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # agent48
2
+
3
+ See something wrong in your app? Screenshot it, say what you want, get a live
4
+ preview on your phone, approve it. Your engineers get one tidy, traceable PR.
5
+ No tickets, no chasing, no Figma round-trips.
6
+
7
+ **Coming soon.** This release reserves the package name.
package/bin.js ADDED
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env node
2
+ console.log(`
3
+ agent48 — coming soon.
4
+
5
+ See something wrong in your app? Screenshot it, say what you want,
6
+ get a live preview, approve it. No tickets, no chasing.
7
+
8
+ This is a placeholder release reserving the package name.
9
+ `);
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "agent48",
3
+ "version": "0.0.1",
4
+ "description": "See something wrong in your app? Screenshot it, say what you want, get a live preview, approve it. No tickets, no chasing, no Figma round-trips. Coming soon.",
5
+ "bin": {
6
+ "agent48": "bin.js"
7
+ },
8
+ "files": [
9
+ "bin.js",
10
+ "README.md"
11
+ ],
12
+ "engines": {
13
+ "node": ">=20"
14
+ },
15
+ "keywords": [
16
+ "expo",
17
+ "react-native",
18
+ "preview",
19
+ "slack",
20
+ "design",
21
+ "agent"
22
+ ],
23
+ "license": "UNLICENSED"
24
+ }