@1dolinski/fastforms 0.1.1 → 0.1.2
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 +2 -2
- package/SKILL.md +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,13 +6,13 @@ Fill any form fast. Manage personas locally, fill forms from your terminal.
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# 1. Create your personas
|
|
9
|
-
npx fastforms init
|
|
9
|
+
npx @1dolinski/fastforms init
|
|
10
10
|
|
|
11
11
|
# 2. Enable remote debugging in Chrome
|
|
12
12
|
# Open chrome://inspect/#remote-debugging and toggle it on
|
|
13
13
|
|
|
14
14
|
# 3. Fill any form (never submits)
|
|
15
|
-
npx fastforms fill https://example.com/apply
|
|
15
|
+
npx @1dolinski/fastforms fill https://example.com/apply
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## How it works
|
package/SKILL.md
CHANGED
|
@@ -24,22 +24,22 @@ Use this skill when the user says any of:
|
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
26
|
# 1. Create your personas interactively
|
|
27
|
-
npx fastforms init
|
|
27
|
+
npx @1dolinski/fastforms init
|
|
28
28
|
|
|
29
29
|
# 2. Enable remote debugging in Chrome
|
|
30
30
|
# Open chrome://inspect/#remote-debugging
|
|
31
31
|
|
|
32
32
|
# 3. Fill any form
|
|
33
|
-
npx fastforms fill https://example.com/apply
|
|
33
|
+
npx @1dolinski/fastforms fill https://example.com/apply
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
## Commands
|
|
37
37
|
|
|
38
|
-
### `npx fastforms init`
|
|
38
|
+
### `npx @1dolinski/fastforms init`
|
|
39
39
|
|
|
40
40
|
Conversational persona builder. Walks through user + business persona fields, saves to `.fastforms/user.json` and `.fastforms/business.json`.
|
|
41
41
|
|
|
42
|
-
### `npx fastforms fill <url>`
|
|
42
|
+
### `npx @1dolinski/fastforms fill <url>`
|
|
43
43
|
|
|
44
44
|
Fills any form. Reads personas from local `.fastforms/` directory by default.
|
|
45
45
|
|
|
@@ -48,11 +48,11 @@ Options:
|
|
|
48
48
|
- `--dir <path>` — custom path to persona directory
|
|
49
49
|
- `--port <port>` — Chrome debug port (auto-detected by default)
|
|
50
50
|
|
|
51
|
-
### `npx fastforms edit`
|
|
51
|
+
### `npx @1dolinski/fastforms edit`
|
|
52
52
|
|
|
53
53
|
Re-run the persona builder with current values pre-filled.
|
|
54
54
|
|
|
55
|
-
### `npx fastforms personas`
|
|
55
|
+
### `npx @1dolinski/fastforms personas`
|
|
56
56
|
|
|
57
57
|
Opens the web persona manager in Chrome.
|
|
58
58
|
|
|
@@ -73,7 +73,7 @@ Opens the web persona manager in Chrome.
|
|
|
73
73
|
|
|
74
74
|
When the user asks you to fill a form:
|
|
75
75
|
|
|
76
|
-
1. Check if `.fastforms/` exists. If not, run `npx fastforms init`
|
|
77
|
-
2. Run `npx fastforms fill <the-url>`
|
|
76
|
+
1. Check if `.fastforms/` exists. If not, run `npx @1dolinski/fastforms init`
|
|
77
|
+
2. Run `npx @1dolinski/fastforms fill <the-url>`
|
|
78
78
|
3. If Chrome debugging isn't enabled, tell the user to open `chrome://inspect/#remote-debugging`
|
|
79
79
|
4. After filling, tell the user to review in Chrome and submit manually
|