appclean 1.8.0
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/.github/workflows/publish.yml +41 -0
- package/.github/workflows/test.yml +37 -0
- package/ACTION_CHECKLIST.md +342 -0
- package/APPCLEAN_SUMMARY.md +309 -0
- package/CHANGELOG.md +205 -0
- package/CODE_OF_CONDUCT.md +49 -0
- package/CODE_REVIEW_REPORT.md +447 -0
- package/COMMUNITY_POSTS.md +307 -0
- package/CONTRIBUTING.md +121 -0
- package/DEPLOYMENT_GUIDE.md +345 -0
- package/DEPLOYMENT_STATUS.md +182 -0
- package/EXECUTIVE_REPORT.md +393 -0
- package/GITHUB_OPTIMIZATION.md +383 -0
- package/INDEX.md +165 -0
- package/LICENSE +21 -0
- package/MARKETING_SUMMARY.md +352 -0
- package/NPM_PACKAGE_OPTIMIZATION.md +281 -0
- package/NPM_PUBLISH.md +116 -0
- package/PROJECT_SUMMARY.txt +249 -0
- package/QUICKSTART.md +219 -0
- package/README.md +548 -0
- package/SECURITY.md +104 -0
- package/SETUP_GITHUB.md +237 -0
- package/TESTING_SUMMARY.md +379 -0
- package/dist/core/appUpdateChecker.d.ts +23 -0
- package/dist/core/appUpdateChecker.d.ts.map +1 -0
- package/dist/core/appUpdateChecker.js +159 -0
- package/dist/core/appUpdateChecker.js.map +1 -0
- package/dist/core/detector.d.ts +13 -0
- package/dist/core/detector.d.ts.map +1 -0
- package/dist/core/detector.js +99 -0
- package/dist/core/detector.js.map +1 -0
- package/dist/core/duplicateFileFinder.d.ts +14 -0
- package/dist/core/duplicateFileFinder.d.ts.map +1 -0
- package/dist/core/duplicateFileFinder.js +80 -0
- package/dist/core/duplicateFileFinder.js.map +1 -0
- package/dist/core/orphanedDependencyDetector.d.ts +19 -0
- package/dist/core/orphanedDependencyDetector.d.ts.map +1 -0
- package/dist/core/orphanedDependencyDetector.js +148 -0
- package/dist/core/orphanedDependencyDetector.js.map +1 -0
- package/dist/core/performanceOptimizer.d.ts +37 -0
- package/dist/core/performanceOptimizer.d.ts.map +1 -0
- package/dist/core/performanceOptimizer.js +128 -0
- package/dist/core/performanceOptimizer.js.map +1 -0
- package/dist/core/permissionHandler.d.ts +9 -0
- package/dist/core/permissionHandler.d.ts.map +1 -0
- package/dist/core/permissionHandler.js +89 -0
- package/dist/core/permissionHandler.js.map +1 -0
- package/dist/core/pluginSystem.d.ts +39 -0
- package/dist/core/pluginSystem.d.ts.map +1 -0
- package/dist/core/pluginSystem.js +120 -0
- package/dist/core/pluginSystem.js.map +1 -0
- package/dist/core/removalRecorder.d.ts +32 -0
- package/dist/core/removalRecorder.d.ts.map +1 -0
- package/dist/core/removalRecorder.js +79 -0
- package/dist/core/removalRecorder.js.map +1 -0
- package/dist/core/remover.d.ts +15 -0
- package/dist/core/remover.d.ts.map +1 -0
- package/dist/core/remover.js +225 -0
- package/dist/core/remover.js.map +1 -0
- package/dist/core/reportGenerator.d.ts +9 -0
- package/dist/core/reportGenerator.d.ts.map +1 -0
- package/dist/core/reportGenerator.js +328 -0
- package/dist/core/reportGenerator.js.map +1 -0
- package/dist/core/scheduledCleanup.d.ts +38 -0
- package/dist/core/scheduledCleanup.d.ts.map +1 -0
- package/dist/core/scheduledCleanup.js +127 -0
- package/dist/core/scheduledCleanup.js.map +1 -0
- package/dist/core/serviceFileDetector.d.ts +18 -0
- package/dist/core/serviceFileDetector.d.ts.map +1 -0
- package/dist/core/serviceFileDetector.js +136 -0
- package/dist/core/serviceFileDetector.js.map +1 -0
- package/dist/core/verificationModule.d.ts +14 -0
- package/dist/core/verificationModule.d.ts.map +1 -0
- package/dist/core/verificationModule.js +102 -0
- package/dist/core/verificationModule.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +333 -0
- package/dist/index.js.map +1 -0
- package/dist/managers/brewManager.d.ts +10 -0
- package/dist/managers/brewManager.d.ts.map +1 -0
- package/dist/managers/brewManager.js +130 -0
- package/dist/managers/brewManager.js.map +1 -0
- package/dist/managers/customManager.d.ts +8 -0
- package/dist/managers/customManager.d.ts.map +1 -0
- package/dist/managers/customManager.js +139 -0
- package/dist/managers/customManager.js.map +1 -0
- package/dist/managers/linuxManager.d.ts +10 -0
- package/dist/managers/linuxManager.d.ts.map +1 -0
- package/dist/managers/linuxManager.js +191 -0
- package/dist/managers/linuxManager.js.map +1 -0
- package/dist/managers/npmManager.d.ts +10 -0
- package/dist/managers/npmManager.d.ts.map +1 -0
- package/dist/managers/npmManager.js +119 -0
- package/dist/managers/npmManager.js.map +1 -0
- package/dist/types/index.d.ts +44 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +3 -0
- package/dist/types/index.js.map +1 -0
- package/dist/ui/guiServer.d.ts +10 -0
- package/dist/ui/guiServer.d.ts.map +1 -0
- package/dist/ui/guiServer.js +134 -0
- package/dist/ui/guiServer.js.map +1 -0
- package/dist/ui/menu.d.ts +6 -0
- package/dist/ui/menu.d.ts.map +1 -0
- package/dist/ui/menu.js +93 -0
- package/dist/ui/menu.js.map +1 -0
- package/dist/ui/prompts.d.ts +13 -0
- package/dist/ui/prompts.d.ts.map +1 -0
- package/dist/ui/prompts.js +161 -0
- package/dist/ui/prompts.js.map +1 -0
- package/dist/utils/filesystem.d.ts +13 -0
- package/dist/utils/filesystem.d.ts.map +1 -0
- package/dist/utils/filesystem.js +152 -0
- package/dist/utils/filesystem.js.map +1 -0
- package/dist/utils/logger.d.ts +12 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/logger.js +49 -0
- package/dist/utils/logger.js.map +1 -0
- package/dist/utils/platform.d.ts +9 -0
- package/dist/utils/platform.d.ts.map +1 -0
- package/dist/utils/platform.js +75 -0
- package/dist/utils/platform.js.map +1 -0
- package/jest.config.js +20 -0
- package/logo.svg +60 -0
- package/package.json +55 -0
- package/setup-github.sh +125 -0
- package/src/core/appUpdateChecker.ts +220 -0
- package/src/core/detector.ts +133 -0
- package/src/core/duplicateFileFinder.ts +113 -0
- package/src/core/orphanedDependencyDetector.ts +195 -0
- package/src/core/performanceOptimizer.ts +209 -0
- package/src/core/permissionHandler.ts +121 -0
- package/src/core/pluginSystem.ts +194 -0
- package/src/core/removalRecorder.ts +146 -0
- package/src/core/remover.ts +280 -0
- package/src/core/reportGenerator.ts +354 -0
- package/src/core/scheduledCleanup.ts +204 -0
- package/src/core/serviceFileDetector.ts +181 -0
- package/src/core/verificationModule.ts +140 -0
- package/src/index.ts +449 -0
- package/src/managers/brewManager.ts +149 -0
- package/src/managers/customManager.ts +167 -0
- package/src/managers/linuxManager.ts +210 -0
- package/src/managers/npmManager.ts +137 -0
- package/src/types/index.ts +59 -0
- package/src/ui/guiServer.ts +155 -0
- package/src/ui/menu.ts +100 -0
- package/src/ui/prompts.ts +177 -0
- package/src/utils/filesystem.ts +145 -0
- package/src/utils/logger.ts +48 -0
- package/src/utils/platform.ts +75 -0
- package/tsconfig.json +20 -0
|
@@ -0,0 +1,383 @@
|
|
|
1
|
+
# GitHub Repository Optimization Guide
|
|
2
|
+
|
|
3
|
+
## Current Status ✅
|
|
4
|
+
|
|
5
|
+
### Topics (13 added)
|
|
6
|
+
```
|
|
7
|
+
app-management, cleanup, cli, cross-platform, homebrew, linux, macos, npm,
|
|
8
|
+
package-manager, system-cleanup, uninstall, uninstaller, windows
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
### About Section
|
|
12
|
+
- ✅ Description: Comprehensive problem/solution statement
|
|
13
|
+
- ✅ Website: https://github.com/praveenkay/AppClean
|
|
14
|
+
- ✅ All 13 topics added
|
|
15
|
+
|
|
16
|
+
## GitHub Discussions Setup
|
|
17
|
+
|
|
18
|
+
### Enable Discussions
|
|
19
|
+
1. Go to Settings → General
|
|
20
|
+
2. Scroll to "Features"
|
|
21
|
+
3. Check "Discussions" checkbox
|
|
22
|
+
4. Save
|
|
23
|
+
|
|
24
|
+
### Create Discussion Categories
|
|
25
|
+
|
|
26
|
+
#### 1. Announcements
|
|
27
|
+
- **Description**: Latest releases and feature announcements
|
|
28
|
+
- **Welcome message**: "Follow releases for major updates and new features"
|
|
29
|
+
- **Pin important posts**
|
|
30
|
+
|
|
31
|
+
#### 2. Q&A
|
|
32
|
+
- **Description**: Ask questions and get help
|
|
33
|
+
- **Welcome message**: "Got a question? Ask here! Use --help flag first"
|
|
34
|
+
- **Moderator: Enable answer marking**
|
|
35
|
+
|
|
36
|
+
#### 3. Ideas
|
|
37
|
+
- **Description**: Suggest new features
|
|
38
|
+
- **Welcome message**: "Have an idea? Suggest it here"
|
|
39
|
+
- **Vote on ideas**
|
|
40
|
+
|
|
41
|
+
#### 4. Show & Tell
|
|
42
|
+
- **Description**: Share how you use AppClean
|
|
43
|
+
- **Welcome message**: "Show your AppClean workflows and scripts"
|
|
44
|
+
|
|
45
|
+
#### 5. Troubleshooting
|
|
46
|
+
- **Description**: Debug issues and problems
|
|
47
|
+
- **Welcome message**: "Running into issues? Describe your problem with os/version"
|
|
48
|
+
|
|
49
|
+
### Pin Discussion Posts
|
|
50
|
+
```
|
|
51
|
+
"Which package managers do you use most?" - Get feedback
|
|
52
|
+
"AppClean v1.8.0 released" - Announcement
|
|
53
|
+
"Share your use cases" - Community engagement
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Social Preview Image
|
|
57
|
+
|
|
58
|
+
### Current Status
|
|
59
|
+
- No custom social preview image set
|
|
60
|
+
|
|
61
|
+
### Create OG Image
|
|
62
|
+
Dimensions: **1200 x 630 pixels**
|
|
63
|
+
|
|
64
|
+
Include:
|
|
65
|
+
- AppClean logo (large)
|
|
66
|
+
- "AppClean: Uninstall Apps Properly"
|
|
67
|
+
- "Remove all artifacts from npm, brew, apt, and more"
|
|
68
|
+
- GitHub logo
|
|
69
|
+
- Color: Blue/green gradient (#667eea to #764ba2)
|
|
70
|
+
|
|
71
|
+
### Set OG Image
|
|
72
|
+
1. Save as `og-image.png` in repo root
|
|
73
|
+
2. GitHub automatically uses it for social preview
|
|
74
|
+
|
|
75
|
+
## GitHub Pages / Website (Optional)
|
|
76
|
+
|
|
77
|
+
### Option 1: GitHub Pages Site
|
|
78
|
+
```bash
|
|
79
|
+
# Create docs/ folder
|
|
80
|
+
mkdir -p docs
|
|
81
|
+
|
|
82
|
+
# Add index.html with landing page
|
|
83
|
+
# Add features.html
|
|
84
|
+
# Add installation.html
|
|
85
|
+
|
|
86
|
+
# Enable in Settings -> Pages -> Source: /docs folder
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
### Option 2: Dedicated Website
|
|
90
|
+
```
|
|
91
|
+
appclean.dev (register domain)
|
|
92
|
+
Deploy Next.js or static site
|
|
93
|
+
Auto-sync docs from GitHub README
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
## Release Optimization
|
|
97
|
+
|
|
98
|
+
### Current v1.8.0 Release
|
|
99
|
+
- ✅ Release notes uploaded
|
|
100
|
+
- ✅ All 7 new versions (v1.2.0-v1.8.0) released
|
|
101
|
+
|
|
102
|
+
### Next Release Checklist
|
|
103
|
+
- [ ] Generate release notes automatically
|
|
104
|
+
- [ ] Create release assets (binaries for macOS/Linux/Windows)
|
|
105
|
+
- [ ] Tag all releases consistently (v1.x.x format)
|
|
106
|
+
- [ ] Mention in GitHub Activity Feed
|
|
107
|
+
|
|
108
|
+
### Release Template
|
|
109
|
+
|
|
110
|
+
```markdown
|
|
111
|
+
# v{version} - {Feature}
|
|
112
|
+
|
|
113
|
+
## What's New
|
|
114
|
+
[Brief 2-3 sentence summary]
|
|
115
|
+
|
|
116
|
+
## Features
|
|
117
|
+
[List of features]
|
|
118
|
+
|
|
119
|
+
## Installation
|
|
120
|
+
\`\`\`bash
|
|
121
|
+
npm install -g appclean@{version}
|
|
122
|
+
\`\`\`
|
|
123
|
+
|
|
124
|
+
## Changes
|
|
125
|
+
[Detailed changelog]
|
|
126
|
+
|
|
127
|
+
## Contributors
|
|
128
|
+
[Thank community members]
|
|
129
|
+
|
|
130
|
+
## What's Next
|
|
131
|
+
[Hint at future features]
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
## GitHub Stars Strategy
|
|
135
|
+
|
|
136
|
+
### Current Status
|
|
137
|
+
- ⭐ Repository is public and discoverable
|
|
138
|
+
- ✅ All topics optimized
|
|
139
|
+
- ✅ Description comprehensive
|
|
140
|
+
|
|
141
|
+
### To Increase Stars
|
|
142
|
+
|
|
143
|
+
1. **Awesome Lists**
|
|
144
|
+
- Add to: awesome-npm, awesome-cli-apps, awesome-node
|
|
145
|
+
- Search "awesome-" on GitHub and submit PR
|
|
146
|
+
|
|
147
|
+
2. **GitHub Trending**
|
|
148
|
+
- Happens automatically with high activity
|
|
149
|
+
- Create releases with clear, interesting titles
|
|
150
|
+
- Engage with issues and PRs
|
|
151
|
+
|
|
152
|
+
3. **Social Proof**
|
|
153
|
+
- Display star count prominently
|
|
154
|
+
- Create tweets when milestones reached (100 stars, 500, 1k)
|
|
155
|
+
|
|
156
|
+
4. **Quality Content**
|
|
157
|
+
- Comprehensive README ✅
|
|
158
|
+
- Good documentation ✅
|
|
159
|
+
- Active maintenance
|
|
160
|
+
- Community engagement
|
|
161
|
+
|
|
162
|
+
## Repository Health
|
|
163
|
+
|
|
164
|
+
### Current Badges
|
|
165
|
+
- ✅ Version badge
|
|
166
|
+
- ✅ License badge
|
|
167
|
+
- ✅ Platform badge
|
|
168
|
+
- ✅ npm downloads badge
|
|
169
|
+
|
|
170
|
+
### Add Health Badges
|
|
171
|
+
|
|
172
|
+
```markdown
|
|
173
|
+
<!-- GitHub Actions / CI Status -->
|
|
174
|
+
[](https://github.com/praveenkay/AppClean/actions)
|
|
175
|
+
|
|
176
|
+
<!-- Code Quality -->
|
|
177
|
+
[](https://codeclimate.com/...)
|
|
178
|
+
|
|
179
|
+
<!-- npm Package -->
|
|
180
|
+
[](https://www.npmjs.com/package/appclean)
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
## GitHub Collaborators & Permissions
|
|
184
|
+
|
|
185
|
+
### Recommended Structure
|
|
186
|
+
- **Owner**: Praveen Kothapally
|
|
187
|
+
- **Maintainer**: You (for issue triage)
|
|
188
|
+
- **Contributors**: Community members (who earn it)
|
|
189
|
+
|
|
190
|
+
### Guidelines for Contributors
|
|
191
|
+
1. Fork repository
|
|
192
|
+
2. Create feature branch
|
|
193
|
+
3. Submit pull request
|
|
194
|
+
4. Code review process
|
|
195
|
+
5. Merge and celebrate
|
|
196
|
+
|
|
197
|
+
## GitHub Actions / CI/CD
|
|
198
|
+
|
|
199
|
+
### Set Up Automated Testing
|
|
200
|
+
```yaml
|
|
201
|
+
# .github/workflows/test.yml
|
|
202
|
+
name: Tests
|
|
203
|
+
on: [push, pull_request]
|
|
204
|
+
jobs:
|
|
205
|
+
test:
|
|
206
|
+
runs-on: ubuntu-latest
|
|
207
|
+
steps:
|
|
208
|
+
- uses: actions/checkout@v2
|
|
209
|
+
- uses: actions/setup-node@v2
|
|
210
|
+
- run: npm install
|
|
211
|
+
- run: npm test
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
### Automated Publishing
|
|
215
|
+
```yaml
|
|
216
|
+
# Publish to npm on release
|
|
217
|
+
- run: npm publish --access public
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
## GitHub Security
|
|
221
|
+
|
|
222
|
+
### Enable Security Features
|
|
223
|
+
1. **Branch Protection**
|
|
224
|
+
- Require pull request reviews
|
|
225
|
+
- Require status checks to pass
|
|
226
|
+
- Dismiss stale reviews
|
|
227
|
+
|
|
228
|
+
2. **Dependabot**
|
|
229
|
+
- Enable automated dependency updates
|
|
230
|
+
- Set to weekly or monthly
|
|
231
|
+
|
|
232
|
+
3. **Security Scanning**
|
|
233
|
+
- Enable GitHub's security scanning
|
|
234
|
+
- Review security advisories
|
|
235
|
+
|
|
236
|
+
## GitHub Profile Optimization
|
|
237
|
+
|
|
238
|
+
### Your Profile
|
|
239
|
+
- Set profile picture
|
|
240
|
+
- Add bio: "Creator of AppClean"
|
|
241
|
+
- Link to website/Twitter
|
|
242
|
+
- Pin AppClean repository
|
|
243
|
+
|
|
244
|
+
### Highlight AppClean
|
|
245
|
+
- Pin on your GitHub profile
|
|
246
|
+
- Featured prominently
|
|
247
|
+
- Link to demo/documentation
|
|
248
|
+
|
|
249
|
+
## Community Building
|
|
250
|
+
|
|
251
|
+
### Create CONTRIBUTING.md
|
|
252
|
+
```markdown
|
|
253
|
+
# Contributing to AppClean
|
|
254
|
+
|
|
255
|
+
## Getting Started
|
|
256
|
+
1. Fork the repo
|
|
257
|
+
2. Clone your fork
|
|
258
|
+
3. npm install
|
|
259
|
+
4. npm run dev
|
|
260
|
+
|
|
261
|
+
## Making Changes
|
|
262
|
+
- Create feature branch
|
|
263
|
+
- Follow existing code style
|
|
264
|
+
- Add tests
|
|
265
|
+
- Update documentation
|
|
266
|
+
|
|
267
|
+
## Submitting PRs
|
|
268
|
+
- Link to issue
|
|
269
|
+
- Describe changes clearly
|
|
270
|
+
- Reference v1.x.0 compatibility
|
|
271
|
+
|
|
272
|
+
## Report Issues
|
|
273
|
+
- Use bug report template
|
|
274
|
+
- Include OS and Node version
|
|
275
|
+
- Provide reproduction steps
|
|
276
|
+
```
|
|
277
|
+
|
|
278
|
+
### Create CODE_OF_CONDUCT.md
|
|
279
|
+
```markdown
|
|
280
|
+
# Code of Conduct
|
|
281
|
+
|
|
282
|
+
## Our Pledge
|
|
283
|
+
We are committed to providing a welcoming and inspiring community...
|
|
284
|
+
|
|
285
|
+
## Our Standards
|
|
286
|
+
- Respectful language
|
|
287
|
+
- Constructive feedback
|
|
288
|
+
- Inclusivity
|
|
289
|
+
- No harassment
|
|
290
|
+
|
|
291
|
+
## Enforcement
|
|
292
|
+
- Issues will be reviewed
|
|
293
|
+
- Serious violations result in removal
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
### Create SECURITY.md
|
|
297
|
+
```markdown
|
|
298
|
+
# Security Policy
|
|
299
|
+
|
|
300
|
+
## Reporting Security Issues
|
|
301
|
+
Please email security@appclean.dev (or similar) instead of public issues.
|
|
302
|
+
|
|
303
|
+
## Supported Versions
|
|
304
|
+
- v1.8.0: Current (security updates)
|
|
305
|
+
- v1.7.0 and below: Best effort support
|
|
306
|
+
|
|
307
|
+
## Security Updates
|
|
308
|
+
Follow semantic versioning (patch versions for security)
|
|
309
|
+
```
|
|
310
|
+
|
|
311
|
+
## GitHub Wiki (Optional)
|
|
312
|
+
|
|
313
|
+
Create wiki pages for:
|
|
314
|
+
- Installation guide per OS
|
|
315
|
+
- Troubleshooting
|
|
316
|
+
- Advanced usage
|
|
317
|
+
- Plugin development
|
|
318
|
+
- FAQ
|
|
319
|
+
|
|
320
|
+
## Metrics to Track
|
|
321
|
+
|
|
322
|
+
```
|
|
323
|
+
Daily:
|
|
324
|
+
- New issues
|
|
325
|
+
- Discussion posts
|
|
326
|
+
- Pull requests
|
|
327
|
+
|
|
328
|
+
Weekly:
|
|
329
|
+
- Stars gained
|
|
330
|
+
- npm downloads
|
|
331
|
+
- GitHub traffic
|
|
332
|
+
|
|
333
|
+
Monthly:
|
|
334
|
+
- Community contributors
|
|
335
|
+
- Feature requests received
|
|
336
|
+
- Bugs reported
|
|
337
|
+
- Resolution rate
|
|
338
|
+
```
|
|
339
|
+
|
|
340
|
+
## Optimization Checklist
|
|
341
|
+
|
|
342
|
+
### Immediate (Week 1)
|
|
343
|
+
- [x] Add topics (13 total)
|
|
344
|
+
- [x] Update About section
|
|
345
|
+
- [ ] Enable Discussions
|
|
346
|
+
- [ ] Create discussion categories
|
|
347
|
+
- [ ] Post initial discussion (Announcement)
|
|
348
|
+
|
|
349
|
+
### Short-term (Month 1)
|
|
350
|
+
- [ ] Create social preview image
|
|
351
|
+
- [ ] Add CONTRIBUTING.md
|
|
352
|
+
- [ ] Add CODE_OF_CONDUCT.md
|
|
353
|
+
- [ ] Add SECURITY.md
|
|
354
|
+
- [ ] Set up GitHub Actions CI/CD
|
|
355
|
+
- [ ] Pin discussions
|
|
356
|
+
|
|
357
|
+
### Medium-term (Months 2-3)
|
|
358
|
+
- [ ] Set up GitHub Pages
|
|
359
|
+
- [ ] Create awesome-list submissions
|
|
360
|
+
- [ ] Reach 100+ stars
|
|
361
|
+
- [ ] Community contribution guidelines
|
|
362
|
+
- [ ] Add CI/CD badges
|
|
363
|
+
|
|
364
|
+
### Long-term (6+ months)
|
|
365
|
+
- [ ] 1k+ stars
|
|
366
|
+
- [ ] Regular contributors
|
|
367
|
+
- [ ] Community plugins
|
|
368
|
+
- [ ] Dedicated website
|
|
369
|
+
- [ ] Sponsorship/funding
|
|
370
|
+
|
|
371
|
+
## Links for Submissions
|
|
372
|
+
|
|
373
|
+
### Awesome Lists
|
|
374
|
+
- https://github.com/agarrharr/awesome-cli-apps
|
|
375
|
+
- https://github.com/sindresorhus/awesome-nodejs
|
|
376
|
+
- https://github.com/awesome-sh/awesome-shell
|
|
377
|
+
- https://github.com/k4m4/terminals-are-sexy
|
|
378
|
+
|
|
379
|
+
### Developer Communities
|
|
380
|
+
- Show HN: https://news.ycombinator.com/
|
|
381
|
+
- Product Hunt: https://www.producthunt.com/
|
|
382
|
+
- Dev.to: https://dev.to/
|
|
383
|
+
- Reddit r/commandline, r/linux, r/node, r/opensource
|
package/INDEX.md
ADDED
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
# 📑 AppClean Documentation Index
|
|
2
|
+
|
|
3
|
+
Welcome to AppClean! This index helps you navigate all documentation and resources.
|
|
4
|
+
|
|
5
|
+
## 🚀 Getting Started (Start Here!)
|
|
6
|
+
|
|
7
|
+
### For New Users
|
|
8
|
+
1. **[QUICKSTART.md](QUICKSTART.md)** - Quick start guide and 3-step deployment
|
|
9
|
+
2. **[SETUP_GITHUB.md](SETUP_GITHUB.md)** - Detailed GitHub & npm setup instructions
|
|
10
|
+
3. **[README.md](README.md)** - Full user documentation with examples
|
|
11
|
+
|
|
12
|
+
### For Developers
|
|
13
|
+
1. **[CONTRIBUTING.md](CONTRIBUTING.md)** - Developer guidelines and workflow
|
|
14
|
+
2. **[DEPLOYMENT_GUIDE.md](DEPLOYMENT_GUIDE.md)** - Full deployment checklist
|
|
15
|
+
3. **[APPCLEAN_SUMMARY.md](APPCLEAN_SUMMARY.md)** - Complete technical summary
|
|
16
|
+
|
|
17
|
+
## 📚 Documentation by Purpose
|
|
18
|
+
|
|
19
|
+
### Installation & Setup
|
|
20
|
+
| File | Purpose |
|
|
21
|
+
|------|---------|
|
|
22
|
+
| [QUICKSTART.md](QUICKSTART.md) | Quick start overview |
|
|
23
|
+
| [SETUP_GITHUB.md](SETUP_GITHUB.md) | GitHub & npm deployment |
|
|
24
|
+
| [setup-github.sh](setup-github.sh) | Automated setup script |
|
|
25
|
+
|
|
26
|
+
### User Documentation
|
|
27
|
+
| File | Purpose |
|
|
28
|
+
|------|---------|
|
|
29
|
+
| [README.md](README.md) | Features, installation, usage, examples |
|
|
30
|
+
| [PROJECT_SUMMARY.txt](PROJECT_SUMMARY.txt) | Project overview |
|
|
31
|
+
| [APPCLEAN_SUMMARY.md](APPCLEAN_SUMMARY.md) | Detailed summary |
|
|
32
|
+
|
|
33
|
+
### Developer Resources
|
|
34
|
+
| File | Purpose |
|
|
35
|
+
|------|---------|
|
|
36
|
+
| [CONTRIBUTING.md](CONTRIBUTING.md) | How to contribute |
|
|
37
|
+
| [DEPLOYMENT_GUIDE.md](DEPLOYMENT_GUIDE.md) | Deployment steps & checklist |
|
|
38
|
+
| [CHANGELOG.md](CHANGELOG.md) | Version history & roadmap |
|
|
39
|
+
|
|
40
|
+
### Code & Configuration
|
|
41
|
+
| File | Purpose |
|
|
42
|
+
|------|---------|
|
|
43
|
+
| [package.json](package.json) | Project metadata & dependencies |
|
|
44
|
+
| [tsconfig.json](tsconfig.json) | TypeScript configuration |
|
|
45
|
+
| [jest.config.js](jest.config.js) | Test configuration |
|
|
46
|
+
| [.gitignore](.gitignore) | Git ignore rules |
|
|
47
|
+
|
|
48
|
+
### GitHub Actions
|
|
49
|
+
| File | Purpose |
|
|
50
|
+
|------|---------|
|
|
51
|
+
| [.github/workflows/test.yml](.github/workflows/test.yml) | Automated testing |
|
|
52
|
+
| [.github/workflows/publish.yml](.github/workflows/publish.yml) | npm publishing |
|
|
53
|
+
|
|
54
|
+
### License
|
|
55
|
+
| File | Purpose |
|
|
56
|
+
|------|---------|
|
|
57
|
+
| [LICENSE](LICENSE) | MIT License |
|
|
58
|
+
|
|
59
|
+
## 🔍 Quick Navigation
|
|
60
|
+
|
|
61
|
+
### I want to...
|
|
62
|
+
|
|
63
|
+
**Deploy to GitHub**
|
|
64
|
+
→ Read [SETUP_GITHUB.md](SETUP_GITHUB.md)
|
|
65
|
+
|
|
66
|
+
**Publish to npm**
|
|
67
|
+
→ Read [SETUP_GITHUB.md](SETUP_GITHUB.md) (Section: "Setup npm Publishing")
|
|
68
|
+
|
|
69
|
+
**Contribute code**
|
|
70
|
+
→ Read [CONTRIBUTING.md](CONTRIBUTING.md)
|
|
71
|
+
|
|
72
|
+
**Understand the project**
|
|
73
|
+
→ Read [README.md](README.md) then [APPCLEAN_SUMMARY.md](APPCLEAN_SUMMARY.md)
|
|
74
|
+
|
|
75
|
+
**Get started quickly**
|
|
76
|
+
→ Read [QUICKSTART.md](QUICKSTART.md)
|
|
77
|
+
|
|
78
|
+
**Set up development environment**
|
|
79
|
+
→ Read [CONTRIBUTING.md](CONTRIBUTING.md) (Section: "Development Setup")
|
|
80
|
+
|
|
81
|
+
## 📊 Project Structure
|
|
82
|
+
|
|
83
|
+
```
|
|
84
|
+
appclean/
|
|
85
|
+
├── src/ # Source code (13 files)
|
|
86
|
+
│ ├── index.ts # Main CLI entry point
|
|
87
|
+
│ ├── core/
|
|
88
|
+
│ │ ├── detector.ts # App detection engine
|
|
89
|
+
│ │ └── remover.ts # Safe removal engine
|
|
90
|
+
│ ├── managers/
|
|
91
|
+
│ │ ├── npmManager.ts # npm/yarn/pnpm
|
|
92
|
+
│ │ ├── brewManager.ts # Homebrew
|
|
93
|
+
│ │ ├── linuxManager.ts # apt/yum/dnf
|
|
94
|
+
│ │ └── customManager.ts # Custom installers
|
|
95
|
+
│ ├── ui/
|
|
96
|
+
│ │ ├── menu.ts # Interactive menus
|
|
97
|
+
│ │ └── prompts.ts # User prompts
|
|
98
|
+
│ ├── types/
|
|
99
|
+
│ │ └── index.ts # TypeScript types
|
|
100
|
+
│ └── utils/
|
|
101
|
+
│ ├── platform.ts # Platform detection
|
|
102
|
+
│ ├── filesystem.ts # File operations
|
|
103
|
+
│ └── logger.ts # Logging
|
|
104
|
+
├── .github/workflows/ # CI/CD workflows
|
|
105
|
+
├── Configuration files # 4 config files
|
|
106
|
+
├── Documentation files # 8+ guides
|
|
107
|
+
└── LICENSE # MIT License
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
## 🎯 Deployment Checklist
|
|
111
|
+
|
|
112
|
+
- [ ] Read [QUICKSTART.md](QUICKSTART.md)
|
|
113
|
+
- [ ] Review [SETUP_GITHUB.md](SETUP_GITHUB.md)
|
|
114
|
+
- [ ] Create GitHub repository
|
|
115
|
+
- [ ] Update package.json with your info
|
|
116
|
+
- [ ] Push code to GitHub
|
|
117
|
+
- [ ] Create npm account
|
|
118
|
+
- [ ] Publish to npm registry
|
|
119
|
+
- [ ] Update GitHub repository topics
|
|
120
|
+
- [ ] Add GitHub Actions secret (NPM_TOKEN)
|
|
121
|
+
|
|
122
|
+
See [DEPLOYMENT_GUIDE.md](DEPLOYMENT_GUIDE.md) for detailed checklist.
|
|
123
|
+
|
|
124
|
+
## 📖 Recommended Reading Order
|
|
125
|
+
|
|
126
|
+
1. **First Time?** → [QUICKSTART.md](QUICKSTART.md)
|
|
127
|
+
2. **Ready to Deploy?** → [SETUP_GITHUB.md](SETUP_GITHUB.md)
|
|
128
|
+
3. **Want to Understand More?** → [README.md](README.md)
|
|
129
|
+
4. **Contributing Code?** → [CONTRIBUTING.md](CONTRIBUTING.md)
|
|
130
|
+
5. **Need Details?** → [APPCLEAN_SUMMARY.md](APPCLEAN_SUMMARY.md)
|
|
131
|
+
6. **Managing Project?** → [DEPLOYMENT_GUIDE.md](DEPLOYMENT_GUIDE.md)
|
|
132
|
+
|
|
133
|
+
## 🔗 External Links
|
|
134
|
+
|
|
135
|
+
- **GitHub**: https://github.com/new (Create repository)
|
|
136
|
+
- **npm**: https://www.npmjs.com/signup (Create account)
|
|
137
|
+
- **TypeScript**: https://www.typescriptlang.org/docs/
|
|
138
|
+
- **Node.js**: https://nodejs.org/
|
|
139
|
+
|
|
140
|
+
## 📞 Support & Questions
|
|
141
|
+
|
|
142
|
+
- **Bug Reports**: GitHub Issues
|
|
143
|
+
- **Questions**: GitHub Discussions
|
|
144
|
+
- **Documentation**: Check files in this directory
|
|
145
|
+
- **Help**: See [CONTRIBUTING.md](CONTRIBUTING.md) for development help
|
|
146
|
+
|
|
147
|
+
## ✨ Key Features
|
|
148
|
+
|
|
149
|
+
🔍 **Smart Detection** - Finds apps from 8+ installation methods
|
|
150
|
+
📊 **Deep Analysis** - Locates all related files and artifacts
|
|
151
|
+
🛡️ **Safe Removal** - Dry-run preview and backup support
|
|
152
|
+
🎨 **Beautiful UI** - Interactive menus with colors and animations
|
|
153
|
+
🚀 **Cross-Platform** - Works on macOS, Linux, Windows
|
|
154
|
+
|
|
155
|
+
## 🌟 You're All Set!
|
|
156
|
+
|
|
157
|
+
Your AppClean project is production-ready.
|
|
158
|
+
|
|
159
|
+
**Next Step:** Open [SETUP_GITHUB.md](SETUP_GITHUB.md) to begin deployment!
|
|
160
|
+
|
|
161
|
+
---
|
|
162
|
+
|
|
163
|
+
**Last Updated:** 2024-01-20
|
|
164
|
+
**License:** MIT
|
|
165
|
+
**Status:** ✅ Ready for Production
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Praveen Kothapally
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|