commentme 1.0.5 โ 1.0.7
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 +38 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,39 +1,66 @@
|
|
|
1
|
-
#
|
|
1
|
+
# CommentMe ๐
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**Declutter your codebase without losing context.**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
CommentMe is an AI-powered CLI toolkit designed for developers who value clean, readable code. It allows you to "skim" comments out of your source files into a secure vault, keeping your core logic pristine while maintaining a searchable, UI-friendly history on the web.
|
|
6
|
+
|
|
7
|
+
### Key Capabilities:
|
|
8
|
+
- ๐งผ **Clean Code, Zero Loss**: Redact comments from files while keeping references for instant restoration.
|
|
9
|
+
- ๐ค **AI Documentation**: Generate JSDocs and per-function comments automatically with LLMs.
|
|
10
|
+
- ๐ง **Smart Explainer**: Get instant markdown-formatted architecture explanations for any code file.
|
|
11
|
+
- ๐ **Cloud Integration**: Manage and edit your extracted comments through a streamlined web interface.
|
|
6
12
|
|
|
13
|
+
## Installation
|
|
14
|
+
```bash
|
|
7
15
|
npm install -g commentme
|
|
16
|
+
```
|
|
8
17
|
|
|
9
18
|
## Usage
|
|
10
19
|
|
|
11
20
|
### Show help
|
|
21
|
+
```bash
|
|
12
22
|
commentme --help
|
|
23
|
+
```
|
|
13
24
|
|
|
14
25
|
### Signup
|
|
26
|
+
```bash
|
|
15
27
|
commentme --signup
|
|
28
|
+
```
|
|
16
29
|
|
|
17
30
|
### Login
|
|
31
|
+
```bash
|
|
18
32
|
commentme --login
|
|
33
|
+
```
|
|
19
34
|
|
|
20
35
|
### Get all comments
|
|
36
|
+
```bash
|
|
21
37
|
commentme --get lines "file-name"
|
|
38
|
+
```
|
|
22
39
|
|
|
23
40
|
### Get a specific comment
|
|
41
|
+
```bash
|
|
24
42
|
commentme --get line-7-7 "file-name"
|
|
43
|
+
```
|
|
25
44
|
|
|
26
45
|
### Edit a comment
|
|
46
|
+
```bash
|
|
27
47
|
commentme --edit line-7-7 "file-name"
|
|
48
|
+
```
|
|
28
49
|
|
|
29
50
|
### Delete a comment
|
|
51
|
+
```bash
|
|
30
52
|
commentme --delete line-7-7 "file-name"
|
|
53
|
+
```
|
|
31
54
|
|
|
32
55
|
### Redact comments from a file
|
|
56
|
+
```bash
|
|
33
57
|
commentme --skim "file-name"
|
|
58
|
+
```
|
|
34
59
|
|
|
35
60
|
### Restore comments to a file
|
|
61
|
+
```bash
|
|
36
62
|
commentme --unskim "file-name"
|
|
63
|
+
```
|
|
37
64
|
|
|
38
65
|
### AI Generation
|
|
39
66
|
Generate AI comments and JSDoc-style documentation for your code.
|
|
@@ -59,19 +86,21 @@ commentme --clear-key
|
|
|
59
86
|
```
|
|
60
87
|
|
|
61
88
|
### Logout
|
|
89
|
+
```bash
|
|
62
90
|
commentme --logout
|
|
91
|
+
```
|
|
63
92
|
|
|
64
93
|
## Features
|
|
65
94
|
|
|
66
|
-
- Clutter-free and smooth codebase
|
|
67
|
-
- Redact comments from files while keeping references
|
|
68
|
-
- Restore comments back to files whenever required
|
|
95
|
+
- **Clutter-free and smooth codebase**
|
|
96
|
+
- **Redact comments from files while keeping references**
|
|
97
|
+
- **Restore comments back to files whenever required**
|
|
69
98
|
- **AI-powered documentation generation (Function/Class/Line level)**
|
|
70
99
|
- **Full code explanation generator (Markdown output)**
|
|
71
100
|
- **Secure API Key management for custom AI models**
|
|
72
|
-
- User authentication and session management
|
|
73
|
-
- Per-codebase comment organization
|
|
74
|
-
- Dedicated website for more UI friendly & AI edits on comments
|
|
101
|
+
- **User authentication and session management**
|
|
102
|
+
- **Per-codebase comment organization**
|
|
103
|
+
- **Dedicated website for more UI friendly & AI edits on comments**
|
|
75
104
|
|
|
76
105
|
## Requirements
|
|
77
106
|
|