prompt2task 0.1.0 → 0.1.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 +1 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,15 +16,12 @@ Local-first CLI that turns natural-language prompts into structured tasks, sends
|
|
|
16
16
|
## Installation
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
npm install
|
|
20
|
-
npm run build
|
|
21
|
-
npm link # makes `prompt2task` available globally
|
|
19
|
+
npm install prompt2task -g
|
|
22
20
|
```
|
|
23
21
|
|
|
24
22
|
Or run directly:
|
|
25
23
|
|
|
26
24
|
```bash
|
|
27
|
-
npm run dev -- "Build a login page"
|
|
28
25
|
npx prompt2task --help
|
|
29
26
|
```
|
|
30
27
|
|