@polka-codes/cli 0.4.2 → 0.4.3
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 +9 -1
- package/dist/index.js +4065 -484
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ npx @polka-codes/cli
|
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
27
|
# Run interactive session
|
|
28
|
-
polka
|
|
28
|
+
polka-codes
|
|
29
29
|
|
|
30
30
|
# Run specific task
|
|
31
31
|
polka-codes task "improve readme"
|
|
@@ -50,6 +50,14 @@ polka-codes commit "closes issue #123"
|
|
|
50
50
|
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
+
### PR Command
|
|
54
|
+
|
|
55
|
+
Create a GitHub pull request with AI-generated details:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
polka-codes pr "optional message. e.g. closes #123"
|
|
59
|
+
```
|
|
60
|
+
|
|
53
61
|
### Configuration
|
|
54
62
|
|
|
55
63
|
Create a `.polkacodes.yml` file in your project root:
|