You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: penify_hook/main.py
+6-8Lines changed: 6 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -45,11 +45,9 @@ def main():
45
45
46
46
# Multi-line description using triple quotes
47
47
description="""Penify CLI tool for:
48
-
1. AI commit message generation
49
-
2. Using JIRA descriptions to enhance commit messages
50
-
3. Generating code documentation for code files
51
-
4. Installing Git hooks for automatic documentation generation
52
-
5. For more information, visit https://docs.penify.dev/
48
+
1. AI commit message generation with JIRA integration to enhance commit messages. By default, it uses local-LLM but can be configured to use Penify's LLM.
49
+
2. Generating Code Documentation, it requires SignUp to Penify
50
+
3. For more information, visit https://docs.penify.dev/
docgen_parser=subparsers.add_parser("docgen", help="[REQUIRES LOGIN] Generate code documentation for the file or folder", description=docgen_description, formatter_class=argparse.RawDescriptionHelpFormatter)
116
+
docgen_parser=subparsers.add_parser("docgen", help="[REQUIRES LOGIN] Generate code documentation for the Git diff, file or folder.", description=docgen_description, formatter_class=argparse.RawDescriptionHelpFormatter)
0 commit comments