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.
- package/README.md +7 -0
- package/bin.js +9 -0
- 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
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
|
+
}
|