@polka-codes/cli 0.4.1 → 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.
Files changed (3) hide show
  1. package/README.md +27 -3
  2. package/dist/index.js +24264 -20482
  3. package/package.json +3 -2
package/README.md CHANGED
@@ -25,13 +25,37 @@ 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
- polka task "improve readme"
31
+ polka-codes task "improve readme"
32
32
 
33
33
  # Create config file
34
- polka config
34
+ polka-codes config
35
+
36
+ # Generate commit message
37
+ polka-codes commit
38
+ ```
39
+
40
+ ### Commit Command
41
+
42
+ The `commit` subcommand helps generate meaningful commit messages based on your staged changes:
43
+
44
+ ```bash
45
+ # Generate commit message for staged changes
46
+ polka-codes commit
47
+
48
+ # Generate commit message with specific context
49
+ polka-codes commit "closes issue #123"
50
+
51
+ ```
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"
35
59
  ```
36
60
 
37
61
  ### Configuration