chameleon-cv 0.1.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/AGENTS.md +186 -0
- package/LICENSE +21 -0
- package/Makefile +136 -0
- package/README.md +356 -0
- package/bin/chameleon.js +136 -0
- package/chameleon.bat +286 -0
- package/chameleon.sh +353 -0
- package/package.json +39 -0
- package/profiles/github_repos.json +1266 -0
- package/requirements.txt +5 -0
- package/scan.sh +12 -0
- package/score.sh +12 -0
- package/scripts/__init__.py +1 -0
- package/scripts/__main_tui__.py +11 -0
- package/scripts/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/__pycache__/__main_tui__.cpython-313.pyc +0 -0
- package/scripts/__pycache__/ats_ghost.cpython-313.pyc +0 -0
- package/scripts/__pycache__/cache.cpython-313.pyc +0 -0
- package/scripts/__pycache__/config.cpython-312.pyc +0 -0
- package/scripts/__pycache__/config.cpython-313.pyc +0 -0
- package/scripts/__pycache__/cover_letter.cpython-313.pyc +0 -0
- package/scripts/__pycache__/db.cpython-312.pyc +0 -0
- package/scripts/__pycache__/db.cpython-313.pyc +0 -0
- package/scripts/__pycache__/fonts.cpython-312.pyc +0 -0
- package/scripts/__pycache__/fonts.cpython-313.pyc +0 -0
- package/scripts/__pycache__/ghost.cpython-313.pyc +0 -0
- package/scripts/__pycache__/job_matcher.cpython-312.pyc +0 -0
- package/scripts/__pycache__/job_matcher.cpython-313.pyc +0 -0
- package/scripts/__pycache__/question.cpython-313.pyc +0 -0
- package/scripts/__pycache__/render.cpython-313.pyc +0 -0
- package/scripts/__pycache__/review.cpython-313.pyc +0 -0
- package/scripts/__pycache__/setup.cpython-312.pyc +0 -0
- package/scripts/__pycache__/tailor_brief.cpython-312.pyc +0 -0
- package/scripts/__pycache__/tailor_brief.cpython-313.pyc +0 -0
- package/scripts/__pycache__/tailor_cv.cpython-312.pyc +0 -0
- package/scripts/__pycache__/tailor_cv.cpython-313.pyc +0 -0
- package/scripts/__pycache__/tailor_prompts.cpython-312.pyc +0 -0
- package/scripts/__pycache__/tailor_prompts.cpython-313.pyc +0 -0
- package/scripts/__pycache__/tui_app.cpython-312.pyc +0 -0
- package/scripts/__pycache__/tui_app.cpython-313.pyc +0 -0
- package/scripts/ats_ghost.py +170 -0
- package/scripts/cache.py +63 -0
- package/scripts/cli.py +109 -0
- package/scripts/config.py +376 -0
- package/scripts/cover_letter.py +105 -0
- package/scripts/db.py +331 -0
- package/scripts/fonts.py +186 -0
- package/scripts/ghost.py +88 -0
- package/scripts/job_matcher.py +636 -0
- package/scripts/job_scanner/__init__.py +8 -0
- package/scripts/job_scanner/__main__.py +6 -0
- package/scripts/job_scanner/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/job_scanner/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/job_scanner/__pycache__/__main__.cpython-312.pyc +0 -0
- package/scripts/job_scanner/__pycache__/__main__.cpython-313.pyc +0 -0
- package/scripts/job_scanner/__pycache__/base.cpython-312.pyc +0 -0
- package/scripts/job_scanner/__pycache__/base.cpython-313.pyc +0 -0
- package/scripts/job_scanner/__pycache__/browser.cpython-312.pyc +0 -0
- package/scripts/job_scanner/__pycache__/browser.cpython-313.pyc +0 -0
- package/scripts/job_scanner/__pycache__/cli.cpython-313.pyc +0 -0
- package/scripts/job_scanner/__pycache__/registry.cpython-312.pyc +0 -0
- package/scripts/job_scanner/__pycache__/registry.cpython-313.pyc +0 -0
- package/scripts/job_scanner/__pycache__/scanner.cpython-312.pyc +0 -0
- package/scripts/job_scanner/__pycache__/scanner.cpython-313.pyc +0 -0
- package/scripts/job_scanner/base.py +197 -0
- package/scripts/job_scanner/browser.py +244 -0
- package/scripts/job_scanner/cli.py +6 -0
- package/scripts/job_scanner/parsers/__init__.py +24 -0
- package/scripts/job_scanner/parsers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/adzuna.cpython-312.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/adzuna.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/arc.cpython-312.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/arc.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/crypto_careers.cpython-312.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/crypto_careers.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/dailyremote.cpython-312.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/dailyremote.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/flexjobs.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/himalayas.cpython-312.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/himalayas.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/hn_hiring.cpython-312.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/hn_hiring.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/indeed.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/jobicy.cpython-312.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/jobicy.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/jooble.cpython-312.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/jooble.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/linkedin.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/opentoworkremote.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/relocate.cpython-312.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/relocate.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/remote_rocketship.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/remoteok.cpython-312.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/remoteok.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/remotive.cpython-312.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/remotive.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/web3_career.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/wellfound.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/weworkremotely.cpython-312.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/weworkremotely.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/__pycache__/ycomb.cpython-313.pyc +0 -0
- package/scripts/job_scanner/parsers/adzuna.py +81 -0
- package/scripts/job_scanner/parsers/arc.py +65 -0
- package/scripts/job_scanner/parsers/crypto_careers.py +88 -0
- package/scripts/job_scanner/parsers/dailyremote.py +91 -0
- package/scripts/job_scanner/parsers/flexjobs.py +91 -0
- package/scripts/job_scanner/parsers/himalayas.py +47 -0
- package/scripts/job_scanner/parsers/hn_hiring.py +94 -0
- package/scripts/job_scanner/parsers/indeed.py +98 -0
- package/scripts/job_scanner/parsers/jobicy.py +60 -0
- package/scripts/job_scanner/parsers/jooble.py +68 -0
- package/scripts/job_scanner/parsers/linkedin.py +140 -0
- package/scripts/job_scanner/parsers/opentoworkremote.py +53 -0
- package/scripts/job_scanner/parsers/relocate.py +95 -0
- package/scripts/job_scanner/parsers/remote_rocketship.py +90 -0
- package/scripts/job_scanner/parsers/remoteok.py +63 -0
- package/scripts/job_scanner/parsers/remotive.py +57 -0
- package/scripts/job_scanner/parsers/web3_career.py +92 -0
- package/scripts/job_scanner/parsers/wellfound.py +94 -0
- package/scripts/job_scanner/parsers/weworkremotely.py +60 -0
- package/scripts/job_scanner/parsers/ycomb.py +83 -0
- package/scripts/job_scanner/registry.py +65 -0
- package/scripts/job_scanner/scanner.py +162 -0
- package/scripts/question.py +107 -0
- package/scripts/render.py +110 -0
- package/scripts/review.py +89 -0
- package/scripts/setup.py +139 -0
- package/scripts/tailor_brief.py +379 -0
- package/scripts/tailor_cv.py +746 -0
- package/scripts/tailor_prompts.py +101 -0
- package/scripts/tui/__init__.py +1 -0
- package/scripts/tui/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/tui/__pycache__/__init__.cpython-313.pyc +0 -0
- package/scripts/tui/__pycache__/app.cpython-312.pyc +0 -0
- package/scripts/tui/__pycache__/app.cpython-313.pyc +0 -0
- package/scripts/tui/__pycache__/helpers.cpython-312.pyc +0 -0
- package/scripts/tui/__pycache__/helpers.cpython-313.pyc +0 -0
- package/scripts/tui/__pycache__/screens.cpython-312.pyc +0 -0
- package/scripts/tui/__pycache__/screens.cpython-313.pyc +0 -0
- package/scripts/tui/__pycache__/widgets.cpython-312.pyc +0 -0
- package/scripts/tui/__pycache__/widgets.cpython-313.pyc +0 -0
- package/scripts/tui/app.py +1547 -0
- package/scripts/tui/helpers.py +65 -0
- package/scripts/tui/screens.py +642 -0
- package/scripts/tui/widgets.py +276 -0
- package/scripts/tui_app.py +25 -0
- package/scripts/wizard.py +109 -0
- package/tui.bat +50 -0
- package/tui.sh +59 -0
|
@@ -0,0 +1,1266 @@
|
|
|
1
|
+
{
|
|
2
|
+
"user": "HautlyS",
|
|
3
|
+
"name": "Tupã Levi Pelizer Alves",
|
|
4
|
+
"total_public_repos": 47,
|
|
5
|
+
"scraped_at": "2026-07-26",
|
|
6
|
+
"repos": [
|
|
7
|
+
{
|
|
8
|
+
"name": "audit-auto",
|
|
9
|
+
"description": null,
|
|
10
|
+
"language": "JavaScript",
|
|
11
|
+
"url": "https://github.com/HautlyS/audit-auto",
|
|
12
|
+
"created_at": "2026-07-23T01:56:00Z",
|
|
13
|
+
"updated_at": "2026-07-26T02:45:01Z",
|
|
14
|
+
"size_kb": 654,
|
|
15
|
+
"stars": 0,
|
|
16
|
+
"forks": 0,
|
|
17
|
+
"topics": [],
|
|
18
|
+
"is_fork": false,
|
|
19
|
+
"tech_stack_inferred": [
|
|
20
|
+
"JavaScript",
|
|
21
|
+
"DevOps",
|
|
22
|
+
"CI/CD"
|
|
23
|
+
],
|
|
24
|
+
"domains": [
|
|
25
|
+
"devops",
|
|
26
|
+
"automation"
|
|
27
|
+
],
|
|
28
|
+
"infrastructure": [
|
|
29
|
+
"CI/CD"
|
|
30
|
+
],
|
|
31
|
+
"category": "devops",
|
|
32
|
+
"summary": "Automated audit tool for system compliance and security scanning."
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "Cybermanju-Drive",
|
|
36
|
+
"description": null,
|
|
37
|
+
"language": "Rust",
|
|
38
|
+
"url": "https://github.com/HautlyS/Cybermanju-Drive",
|
|
39
|
+
"created_at": "2026-06-14T21:32:49Z",
|
|
40
|
+
"updated_at": "2026-06-14T22:27:25Z",
|
|
41
|
+
"size_kb": 253075,
|
|
42
|
+
"stars": 0,
|
|
43
|
+
"forks": 0,
|
|
44
|
+
"topics": [],
|
|
45
|
+
"is_fork": false,
|
|
46
|
+
"tech_stack_inferred": [
|
|
47
|
+
"Rust",
|
|
48
|
+
"Rust CLI"
|
|
49
|
+
],
|
|
50
|
+
"domains": [
|
|
51
|
+
"file-management",
|
|
52
|
+
"data-storage"
|
|
53
|
+
],
|
|
54
|
+
"infrastructure": [
|
|
55
|
+
"Rust CLI"
|
|
56
|
+
],
|
|
57
|
+
"category": "desktop-app",
|
|
58
|
+
"summary": "Rust-based drive/file management tool with cross-platform support."
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "Autitude",
|
|
62
|
+
"description": null,
|
|
63
|
+
"language": "JavaScript",
|
|
64
|
+
"url": "https://github.com/HautlyS/Autitude",
|
|
65
|
+
"created_at": "2026-05-06T12:39:49Z",
|
|
66
|
+
"updated_at": "2026-06-06T15:13:43Z",
|
|
67
|
+
"size_kb": 24285,
|
|
68
|
+
"stars": 0,
|
|
69
|
+
"forks": 0,
|
|
70
|
+
"topics": [],
|
|
71
|
+
"is_fork": false,
|
|
72
|
+
"tech_stack_inferred": [
|
|
73
|
+
"JavaScript"
|
|
74
|
+
],
|
|
75
|
+
"domains": [
|
|
76
|
+
"web-apps",
|
|
77
|
+
"automation"
|
|
78
|
+
],
|
|
79
|
+
"infrastructure": [],
|
|
80
|
+
"category": "web-app",
|
|
81
|
+
"summary": "JavaScript automation utility for web workflows."
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "Earth_Guardians_App",
|
|
85
|
+
"description": null,
|
|
86
|
+
"language": "TypeScript",
|
|
87
|
+
"url": "https://github.com/HautlyS/Earth_Guardians_App",
|
|
88
|
+
"created_at": "2026-05-24T19:34:53Z",
|
|
89
|
+
"updated_at": "2026-06-03T22:41:00Z",
|
|
90
|
+
"size_kb": 310,
|
|
91
|
+
"stars": 0,
|
|
92
|
+
"forks": 0,
|
|
93
|
+
"topics": [],
|
|
94
|
+
"is_fork": false,
|
|
95
|
+
"tech_stack_inferred": [
|
|
96
|
+
"TypeScript"
|
|
97
|
+
],
|
|
98
|
+
"domains": [
|
|
99
|
+
"geospatial",
|
|
100
|
+
"environmental"
|
|
101
|
+
],
|
|
102
|
+
"infrastructure": [],
|
|
103
|
+
"category": "web-app",
|
|
104
|
+
"summary": "TypeScript app for environmental monitoring and earth guardian initiatives."
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "any-proxy",
|
|
108
|
+
"description": "Route website Claude, Qwen, OpenHands or Deepseek chats into Opencode using proxy.",
|
|
109
|
+
"language": "TypeScript",
|
|
110
|
+
"url": "https://github.com/HautlyS/any-proxy",
|
|
111
|
+
"created_at": "2026-05-27T00:14:10Z",
|
|
112
|
+
"updated_at": "2026-05-27T00:27:44Z",
|
|
113
|
+
"size_kb": 60,
|
|
114
|
+
"stars": 0,
|
|
115
|
+
"forks": 0,
|
|
116
|
+
"topics": [],
|
|
117
|
+
"is_fork": false,
|
|
118
|
+
"tech_stack_inferred": [
|
|
119
|
+
"TypeScript",
|
|
120
|
+
"AI",
|
|
121
|
+
"LLM",
|
|
122
|
+
"proxy"
|
|
123
|
+
],
|
|
124
|
+
"domains": [
|
|
125
|
+
"web-apps",
|
|
126
|
+
"web-automation",
|
|
127
|
+
"AI"
|
|
128
|
+
],
|
|
129
|
+
"infrastructure": [
|
|
130
|
+
"proxy"
|
|
131
|
+
],
|
|
132
|
+
"category": "library",
|
|
133
|
+
"summary": "Route website Claude, Qwen, OpenHands or Deepseek chats into Opencode using proxy."
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "MagicCursor",
|
|
137
|
+
"description": null,
|
|
138
|
+
"language": "TypeScript",
|
|
139
|
+
"url": "https://github.com/HautlyS/MagicCursor",
|
|
140
|
+
"created_at": "2025-11-02T14:42:05Z",
|
|
141
|
+
"updated_at": "2026-05-24T21:48:42Z",
|
|
142
|
+
"size_kb": 507,
|
|
143
|
+
"stars": 0,
|
|
144
|
+
"forks": 0,
|
|
145
|
+
"topics": [],
|
|
146
|
+
"is_fork": false,
|
|
147
|
+
"tech_stack_inferred": [
|
|
148
|
+
"TypeScript"
|
|
149
|
+
],
|
|
150
|
+
"domains": [
|
|
151
|
+
"desktop-apps",
|
|
152
|
+
"productivity"
|
|
153
|
+
],
|
|
154
|
+
"infrastructure": [],
|
|
155
|
+
"category": "desktop-app",
|
|
156
|
+
"summary": "TypeScript desktop application for enhanced cursor/mouse control."
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"name": "cosmic-update",
|
|
160
|
+
"description": null,
|
|
161
|
+
"language": null,
|
|
162
|
+
"url": "https://github.com/HautlyS/cosmic-update",
|
|
163
|
+
"created_at": "2026-05-20T18:21:23Z",
|
|
164
|
+
"updated_at": "2026-05-20T18:23:26Z",
|
|
165
|
+
"size_kb": 18,
|
|
166
|
+
"stars": 0,
|
|
167
|
+
"forks": 0,
|
|
168
|
+
"topics": [],
|
|
169
|
+
"is_fork": false,
|
|
170
|
+
"tech_stack_inferred": [
|
|
171
|
+
"DevOps",
|
|
172
|
+
"update-management"
|
|
173
|
+
],
|
|
174
|
+
"domains": [
|
|
175
|
+
"devops",
|
|
176
|
+
"automation"
|
|
177
|
+
],
|
|
178
|
+
"infrastructure": [
|
|
179
|
+
"update-management"
|
|
180
|
+
],
|
|
181
|
+
"category": "tool",
|
|
182
|
+
"summary": "Automated update management utility."
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "coder_docky",
|
|
186
|
+
"description": null,
|
|
187
|
+
"language": "Shell",
|
|
188
|
+
"url": "https://github.com/HautlyS/coder_docky",
|
|
189
|
+
"created_at": "2026-03-31T19:12:22Z",
|
|
190
|
+
"updated_at": "2026-05-20T15:11:07Z",
|
|
191
|
+
"size_kb": 14961,
|
|
192
|
+
"stars": 0,
|
|
193
|
+
"forks": 0,
|
|
194
|
+
"topics": [],
|
|
195
|
+
"is_fork": false,
|
|
196
|
+
"tech_stack_inferred": [
|
|
197
|
+
"DevOps",
|
|
198
|
+
"Docker"
|
|
199
|
+
],
|
|
200
|
+
"domains": [
|
|
201
|
+
"devops",
|
|
202
|
+
"containerization"
|
|
203
|
+
],
|
|
204
|
+
"infrastructure": [
|
|
205
|
+
"Docker"
|
|
206
|
+
],
|
|
207
|
+
"category": "tool",
|
|
208
|
+
"summary": "Shell-based Docker container management for development environments."
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"name": "portfolio",
|
|
212
|
+
"description": null,
|
|
213
|
+
"language": "HTML",
|
|
214
|
+
"url": "https://github.com/HautlyS/portfolio",
|
|
215
|
+
"created_at": "2026-03-27T22:09:44Z",
|
|
216
|
+
"updated_at": "2026-05-14T15:22:11Z",
|
|
217
|
+
"size_kb": 7215,
|
|
218
|
+
"stars": 0,
|
|
219
|
+
"forks": 0,
|
|
220
|
+
"topics": [],
|
|
221
|
+
"is_fork": false,
|
|
222
|
+
"tech_stack_inferred": [
|
|
223
|
+
"HTML"
|
|
224
|
+
],
|
|
225
|
+
"domains": [
|
|
226
|
+
"web-apps"
|
|
227
|
+
],
|
|
228
|
+
"infrastructure": [],
|
|
229
|
+
"category": "web-app",
|
|
230
|
+
"summary": "Personal portfolio website showcasing projects and skills."
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"name": "iMAGE",
|
|
234
|
+
"description": null,
|
|
235
|
+
"language": "Vue",
|
|
236
|
+
"url": "https://github.com/HautlyS/iMAGE",
|
|
237
|
+
"created_at": "2026-02-17T12:48:34Z",
|
|
238
|
+
"updated_at": "2026-05-02T15:30:31Z",
|
|
239
|
+
"size_kb": 213,
|
|
240
|
+
"stars": 1,
|
|
241
|
+
"forks": 0,
|
|
242
|
+
"topics": [],
|
|
243
|
+
"is_fork": false,
|
|
244
|
+
"tech_stack_inferred": [
|
|
245
|
+
"Vue",
|
|
246
|
+
"Vue.js",
|
|
247
|
+
"Frontend"
|
|
248
|
+
],
|
|
249
|
+
"domains": [
|
|
250
|
+
"web-apps",
|
|
251
|
+
"media"
|
|
252
|
+
],
|
|
253
|
+
"infrastructure": [],
|
|
254
|
+
"category": "web-app",
|
|
255
|
+
"summary": "Vue.js image processing and management web application."
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "qoder-bot",
|
|
259
|
+
"description": "Telegram/Whatsapp qodercli wrapper ",
|
|
260
|
+
"language": null,
|
|
261
|
+
"url": "https://github.com/HautlyS/qoder-bot",
|
|
262
|
+
"created_at": "2026-04-21T22:46:37Z",
|
|
263
|
+
"updated_at": "2026-04-21T22:46:38Z",
|
|
264
|
+
"size_kb": 0,
|
|
265
|
+
"stars": 0,
|
|
266
|
+
"forks": 0,
|
|
267
|
+
"topics": [],
|
|
268
|
+
"is_fork": false,
|
|
269
|
+
"tech_stack_inferred": [
|
|
270
|
+
"AI",
|
|
271
|
+
"LLM",
|
|
272
|
+
"Telegram API",
|
|
273
|
+
"WhatsApp API"
|
|
274
|
+
],
|
|
275
|
+
"domains": [
|
|
276
|
+
"AI",
|
|
277
|
+
"automation",
|
|
278
|
+
"messaging"
|
|
279
|
+
],
|
|
280
|
+
"infrastructure": [
|
|
281
|
+
"Telegram API",
|
|
282
|
+
"WhatsApp API"
|
|
283
|
+
],
|
|
284
|
+
"category": "web-app",
|
|
285
|
+
"summary": "Telegram and WhatsApp bot wrapper for qoder CLI automation."
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"name": "mycelium",
|
|
289
|
+
"description": "Decentralized P2P Self-Replicating AI - Rust-based system with latent-space processing, federated LoRA tuning, and self-replication via spore protocol",
|
|
290
|
+
"language": "Rust",
|
|
291
|
+
"url": "https://github.com/HautlyS/mycelium",
|
|
292
|
+
"created_at": "2026-04-10T05:00:19Z",
|
|
293
|
+
"updated_at": "2026-04-10T23:18:15Z",
|
|
294
|
+
"size_kb": 870,
|
|
295
|
+
"stars": 0,
|
|
296
|
+
"forks": 0,
|
|
297
|
+
"topics": [],
|
|
298
|
+
"is_fork": false,
|
|
299
|
+
"tech_stack_inferred": [
|
|
300
|
+
"Rust",
|
|
301
|
+
"AI",
|
|
302
|
+
"LLM",
|
|
303
|
+
"federated-learning",
|
|
304
|
+
"LoRA"
|
|
305
|
+
],
|
|
306
|
+
"domains": [
|
|
307
|
+
"AI/ML",
|
|
308
|
+
"distributed-systems",
|
|
309
|
+
"P2P"
|
|
310
|
+
],
|
|
311
|
+
"infrastructure": [
|
|
312
|
+
"Rust",
|
|
313
|
+
"federated-learning",
|
|
314
|
+
"LoRA"
|
|
315
|
+
],
|
|
316
|
+
"category": "web-app",
|
|
317
|
+
"summary": "Decentralized P2P self-replicating AI system with latent-space processing, federated LoRA tuning, and self-replication via spore protocol."
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"name": "technosutra-app",
|
|
321
|
+
"description": "TechnoSutra - Avatamsaka Sutra PWA with 3D AR",
|
|
322
|
+
"language": null,
|
|
323
|
+
"url": "https://github.com/HautlyS/technosutra-app",
|
|
324
|
+
"created_at": "2026-04-10T21:38:08Z",
|
|
325
|
+
"updated_at": "2026-04-10T21:38:36Z",
|
|
326
|
+
"size_kb": 0,
|
|
327
|
+
"stars": 0,
|
|
328
|
+
"forks": 0,
|
|
329
|
+
"topics": [
|
|
330
|
+
"3d",
|
|
331
|
+
"ar",
|
|
332
|
+
"avatamsaka",
|
|
333
|
+
"buddhism",
|
|
334
|
+
"pwa"
|
|
335
|
+
],
|
|
336
|
+
"is_fork": false,
|
|
337
|
+
"tech_stack_inferred": [
|
|
338
|
+
"PWA",
|
|
339
|
+
"3D",
|
|
340
|
+
"AR"
|
|
341
|
+
],
|
|
342
|
+
"domains": [
|
|
343
|
+
"web-apps",
|
|
344
|
+
"AR",
|
|
345
|
+
"3D"
|
|
346
|
+
],
|
|
347
|
+
"infrastructure": [
|
|
348
|
+
"PWA",
|
|
349
|
+
"3D",
|
|
350
|
+
"AR"
|
|
351
|
+
],
|
|
352
|
+
"category": "web-app",
|
|
353
|
+
"summary": "TechnoSutra - Avatamsaka Sutra PWA with 3D AR experience."
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"name": "Gimpsky",
|
|
357
|
+
"description": null,
|
|
358
|
+
"language": "Shell",
|
|
359
|
+
"url": "https://github.com/HautlyS/Gimpsky",
|
|
360
|
+
"created_at": "2026-04-06T23:51:46Z",
|
|
361
|
+
"updated_at": "2026-04-07T00:54:16Z",
|
|
362
|
+
"size_kb": 46,
|
|
363
|
+
"stars": 0,
|
|
364
|
+
"forks": 0,
|
|
365
|
+
"topics": [],
|
|
366
|
+
"is_fork": false,
|
|
367
|
+
"tech_stack_inferred": [],
|
|
368
|
+
"domains": [
|
|
369
|
+
"image-processing"
|
|
370
|
+
],
|
|
371
|
+
"infrastructure": [],
|
|
372
|
+
"category": "tool",
|
|
373
|
+
"summary": "Shell-based image processing utility (Gimp + Sky replacement)."
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"name": "Housaky",
|
|
377
|
+
"description": "HOUSAKY PROJECT",
|
|
378
|
+
"language": "Rust",
|
|
379
|
+
"url": "https://github.com/HautlyS/Housaky",
|
|
380
|
+
"created_at": "2025-11-30T14:07:27Z",
|
|
381
|
+
"updated_at": "2026-03-25T05:05:32Z",
|
|
382
|
+
"size_kb": 61340,
|
|
383
|
+
"stars": 0,
|
|
384
|
+
"forks": 1,
|
|
385
|
+
"topics": [],
|
|
386
|
+
"is_fork": false,
|
|
387
|
+
"tech_stack_inferred": [
|
|
388
|
+
"Rust"
|
|
389
|
+
],
|
|
390
|
+
"domains": [
|
|
391
|
+
"web-apps",
|
|
392
|
+
"real-estate"
|
|
393
|
+
],
|
|
394
|
+
"infrastructure": [
|
|
395
|
+
"Rust"
|
|
396
|
+
],
|
|
397
|
+
"category": "web-app",
|
|
398
|
+
"summary": "Rust-based web application for real estate/property management."
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"name": "projects",
|
|
402
|
+
"description": null,
|
|
403
|
+
"language": "JavaScript",
|
|
404
|
+
"url": "https://github.com/HautlyS/projects",
|
|
405
|
+
"created_at": "2026-03-24T18:38:50Z",
|
|
406
|
+
"updated_at": "2026-03-24T20:27:12Z",
|
|
407
|
+
"size_kb": 269,
|
|
408
|
+
"stars": 0,
|
|
409
|
+
"forks": 0,
|
|
410
|
+
"topics": [],
|
|
411
|
+
"is_fork": false,
|
|
412
|
+
"tech_stack_inferred": [
|
|
413
|
+
"JavaScript"
|
|
414
|
+
],
|
|
415
|
+
"domains": [
|
|
416
|
+
"web-apps"
|
|
417
|
+
],
|
|
418
|
+
"infrastructure": [],
|
|
419
|
+
"category": "web-app",
|
|
420
|
+
"summary": "JavaScript project collection and management app."
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"name": "test1",
|
|
424
|
+
"description": null,
|
|
425
|
+
"language": "JavaScript",
|
|
426
|
+
"url": "https://github.com/HautlyS/test1",
|
|
427
|
+
"created_at": "2026-02-24T03:42:20Z",
|
|
428
|
+
"updated_at": "2026-02-24T03:43:27Z",
|
|
429
|
+
"size_kb": 75185,
|
|
430
|
+
"stars": 0,
|
|
431
|
+
"forks": 0,
|
|
432
|
+
"topics": [],
|
|
433
|
+
"is_fork": false,
|
|
434
|
+
"tech_stack_inferred": [
|
|
435
|
+
"JavaScript"
|
|
436
|
+
],
|
|
437
|
+
"domains": [
|
|
438
|
+
"general"
|
|
439
|
+
],
|
|
440
|
+
"infrastructure": [],
|
|
441
|
+
"category": "web-app",
|
|
442
|
+
"summary": "JavaScript test/experimentation project."
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"name": "VKM",
|
|
446
|
+
"description": null,
|
|
447
|
+
"language": "JavaScript",
|
|
448
|
+
"url": "https://github.com/HautlyS/VKM",
|
|
449
|
+
"created_at": "2026-02-15T04:12:32Z",
|
|
450
|
+
"updated_at": "2026-02-19T12:47:22Z",
|
|
451
|
+
"size_kb": 70,
|
|
452
|
+
"stars": 0,
|
|
453
|
+
"forks": 0,
|
|
454
|
+
"topics": [],
|
|
455
|
+
"is_fork": false,
|
|
456
|
+
"tech_stack_inferred": [
|
|
457
|
+
"JavaScript"
|
|
458
|
+
],
|
|
459
|
+
"domains": [
|
|
460
|
+
"web-apps"
|
|
461
|
+
],
|
|
462
|
+
"infrastructure": [],
|
|
463
|
+
"category": "web-app",
|
|
464
|
+
"summary": "JavaScript web application."
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"name": "STEM-A-PLAY",
|
|
468
|
+
"description": null,
|
|
469
|
+
"language": "Vue",
|
|
470
|
+
"url": "https://github.com/HautlyS/STEM-A-PLAY",
|
|
471
|
+
"created_at": "2026-02-15T23:12:13Z",
|
|
472
|
+
"updated_at": "2026-02-17T16:29:14Z",
|
|
473
|
+
"size_kb": 54759,
|
|
474
|
+
"stars": 0,
|
|
475
|
+
"forks": 0,
|
|
476
|
+
"topics": [],
|
|
477
|
+
"is_fork": false,
|
|
478
|
+
"tech_stack_inferred": [
|
|
479
|
+
"Vue",
|
|
480
|
+
"Vue.js",
|
|
481
|
+
"Frontend"
|
|
482
|
+
],
|
|
483
|
+
"domains": [
|
|
484
|
+
"education",
|
|
485
|
+
"web-apps"
|
|
486
|
+
],
|
|
487
|
+
"infrastructure": [],
|
|
488
|
+
"category": "web-app",
|
|
489
|
+
"summary": "Vue.js educational STEM platform with interactive learning modules."
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"name": "ubuntu",
|
|
493
|
+
"description": null,
|
|
494
|
+
"language": null,
|
|
495
|
+
"url": "https://github.com/HautlyS/ubuntu",
|
|
496
|
+
"created_at": "2026-02-15T02:47:54Z",
|
|
497
|
+
"updated_at": "2026-02-15T02:47:54Z",
|
|
498
|
+
"size_kb": 0,
|
|
499
|
+
"stars": 0,
|
|
500
|
+
"forks": 0,
|
|
501
|
+
"topics": [],
|
|
502
|
+
"is_fork": false,
|
|
503
|
+
"tech_stack_inferred": [],
|
|
504
|
+
"domains": [
|
|
505
|
+
"general"
|
|
506
|
+
],
|
|
507
|
+
"infrastructure": [],
|
|
508
|
+
"category": "other",
|
|
509
|
+
"summary": "Ubuntu configuration and setup project."
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"name": "Vortex-R3D",
|
|
513
|
+
"description": null,
|
|
514
|
+
"language": "Rust",
|
|
515
|
+
"url": "https://github.com/HautlyS/Vortex-R3D",
|
|
516
|
+
"created_at": "2026-01-10T08:44:12Z",
|
|
517
|
+
"updated_at": "2026-02-15T02:23:53Z",
|
|
518
|
+
"size_kb": 202347,
|
|
519
|
+
"stars": 0,
|
|
520
|
+
"forks": 0,
|
|
521
|
+
"topics": [],
|
|
522
|
+
"is_fork": false,
|
|
523
|
+
"tech_stack_inferred": [
|
|
524
|
+
"Rust",
|
|
525
|
+
"3D"
|
|
526
|
+
],
|
|
527
|
+
"domains": [
|
|
528
|
+
"desktop-apps",
|
|
529
|
+
"multimedia"
|
|
530
|
+
],
|
|
531
|
+
"infrastructure": [
|
|
532
|
+
"Rust",
|
|
533
|
+
"3D"
|
|
534
|
+
],
|
|
535
|
+
"category": "desktop-app",
|
|
536
|
+
"summary": "Rust-based 3D rendering and graphics application."
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"name": "cargo-save",
|
|
540
|
+
"description": null,
|
|
541
|
+
"language": "Makefile",
|
|
542
|
+
"url": "https://github.com/HautlyS/cargo-save",
|
|
543
|
+
"created_at": "2026-02-09T19:00:28Z",
|
|
544
|
+
"updated_at": "2026-02-14T15:28:13Z",
|
|
545
|
+
"size_kb": 240274,
|
|
546
|
+
"stars": 0,
|
|
547
|
+
"forks": 0,
|
|
548
|
+
"topics": [],
|
|
549
|
+
"is_fork": false,
|
|
550
|
+
"tech_stack_inferred": [
|
|
551
|
+
"Rust",
|
|
552
|
+
"DevOps",
|
|
553
|
+
"cargo"
|
|
554
|
+
],
|
|
555
|
+
"domains": [
|
|
556
|
+
"devops",
|
|
557
|
+
"package-management"
|
|
558
|
+
],
|
|
559
|
+
"infrastructure": [
|
|
560
|
+
"Rust",
|
|
561
|
+
"cargo"
|
|
562
|
+
],
|
|
563
|
+
"category": "tool",
|
|
564
|
+
"summary": "Rust cargo extension for project save/backup workflows."
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"name": "RNOT",
|
|
568
|
+
"description": null,
|
|
569
|
+
"language": "Rust",
|
|
570
|
+
"url": "https://github.com/HautlyS/RNOT",
|
|
571
|
+
"created_at": "2026-02-13T13:15:23Z",
|
|
572
|
+
"updated_at": "2026-02-14T13:16:42Z",
|
|
573
|
+
"size_kb": 44,
|
|
574
|
+
"stars": 0,
|
|
575
|
+
"forks": 0,
|
|
576
|
+
"topics": [],
|
|
577
|
+
"is_fork": false,
|
|
578
|
+
"tech_stack_inferred": [
|
|
579
|
+
"Rust"
|
|
580
|
+
],
|
|
581
|
+
"domains": [
|
|
582
|
+
"productivity"
|
|
583
|
+
],
|
|
584
|
+
"infrastructure": [
|
|
585
|
+
"Rust"
|
|
586
|
+
],
|
|
587
|
+
"category": "tool",
|
|
588
|
+
"summary": "Rust-based note-taking and organization tool."
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"name": "RUSSH",
|
|
592
|
+
"description": null,
|
|
593
|
+
"language": "Rust",
|
|
594
|
+
"url": "https://github.com/HautlyS/RUSSH",
|
|
595
|
+
"created_at": "2025-12-28T20:38:13Z",
|
|
596
|
+
"updated_at": "2026-02-13T18:31:56Z",
|
|
597
|
+
"size_kb": 1591,
|
|
598
|
+
"stars": 1,
|
|
599
|
+
"forks": 0,
|
|
600
|
+
"topics": [],
|
|
601
|
+
"is_fork": false,
|
|
602
|
+
"tech_stack_inferred": [
|
|
603
|
+
"Rust"
|
|
604
|
+
],
|
|
605
|
+
"domains": [
|
|
606
|
+
"shell",
|
|
607
|
+
"productivity"
|
|
608
|
+
],
|
|
609
|
+
"infrastructure": [
|
|
610
|
+
"Rust"
|
|
611
|
+
],
|
|
612
|
+
"category": "tool",
|
|
613
|
+
"summary": "Rust shell enhancement with custom features and workflow improvements."
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"name": "claw2",
|
|
617
|
+
"description": null,
|
|
618
|
+
"language": "Shell",
|
|
619
|
+
"url": "https://github.com/HautlyS/claw2",
|
|
620
|
+
"created_at": "2026-02-10T23:11:21Z",
|
|
621
|
+
"updated_at": "2026-02-10T23:18:42Z",
|
|
622
|
+
"size_kb": 204,
|
|
623
|
+
"stars": 0,
|
|
624
|
+
"forks": 0,
|
|
625
|
+
"topics": [],
|
|
626
|
+
"is_fork": false,
|
|
627
|
+
"tech_stack_inferred": [],
|
|
628
|
+
"domains": [
|
|
629
|
+
"automation"
|
|
630
|
+
],
|
|
631
|
+
"infrastructure": [],
|
|
632
|
+
"category": "tool",
|
|
633
|
+
"summary": "Shell-based automation and scraping utility."
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"name": "housaky-clown",
|
|
637
|
+
"description": null,
|
|
638
|
+
"language": null,
|
|
639
|
+
"url": "https://github.com/HautlyS/housaky-clown",
|
|
640
|
+
"created_at": "2026-02-10T22:53:08Z",
|
|
641
|
+
"updated_at": "2026-02-10T22:53:08Z",
|
|
642
|
+
"size_kb": 0,
|
|
643
|
+
"stars": 0,
|
|
644
|
+
"forks": 0,
|
|
645
|
+
"topics": [],
|
|
646
|
+
"is_fork": false,
|
|
647
|
+
"tech_stack_inferred": [],
|
|
648
|
+
"domains": [
|
|
649
|
+
"general"
|
|
650
|
+
],
|
|
651
|
+
"infrastructure": [],
|
|
652
|
+
"category": "other",
|
|
653
|
+
"summary": "Companion/experimental project related to Housaky."
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"name": "save-html",
|
|
657
|
+
"description": "bunch of saves for study",
|
|
658
|
+
"language": "HTML",
|
|
659
|
+
"url": "https://github.com/HautlyS/save-html",
|
|
660
|
+
"created_at": "2026-02-10T04:08:27Z",
|
|
661
|
+
"updated_at": "2026-02-10T04:48:18Z",
|
|
662
|
+
"size_kb": 36,
|
|
663
|
+
"stars": 0,
|
|
664
|
+
"forks": 0,
|
|
665
|
+
"topics": [],
|
|
666
|
+
"is_fork": false,
|
|
667
|
+
"tech_stack_inferred": [
|
|
668
|
+
"AI",
|
|
669
|
+
"LLM"
|
|
670
|
+
],
|
|
671
|
+
"domains": [
|
|
672
|
+
"AI/ML",
|
|
673
|
+
"education"
|
|
674
|
+
],
|
|
675
|
+
"infrastructure": [],
|
|
676
|
+
"category": "web-app",
|
|
677
|
+
"summary": "HTML study collection for AI/ML learning resources."
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"name": "liberali-portfolio",
|
|
681
|
+
"description": "Liberali portfolio.",
|
|
682
|
+
"language": null,
|
|
683
|
+
"url": "https://github.com/HautlyS/liberali-portfolio",
|
|
684
|
+
"created_at": "2026-02-10T03:42:22Z",
|
|
685
|
+
"updated_at": "2026-02-10T03:42:22Z",
|
|
686
|
+
"size_kb": 24618,
|
|
687
|
+
"stars": 0,
|
|
688
|
+
"forks": 0,
|
|
689
|
+
"topics": [],
|
|
690
|
+
"is_fork": false,
|
|
691
|
+
"tech_stack_inferred": [],
|
|
692
|
+
"domains": [
|
|
693
|
+
"web-apps"
|
|
694
|
+
],
|
|
695
|
+
"infrastructure": [],
|
|
696
|
+
"category": "web-app",
|
|
697
|
+
"summary": "Liberali agency portfolio and showcase website."
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"name": "SP-COVERAGE",
|
|
701
|
+
"description": null,
|
|
702
|
+
"language": "HTML",
|
|
703
|
+
"url": "https://github.com/HautlyS/SP-COVERAGE",
|
|
704
|
+
"created_at": "2026-02-05T23:43:12Z",
|
|
705
|
+
"updated_at": "2026-02-10T02:47:45Z",
|
|
706
|
+
"size_kb": 118354,
|
|
707
|
+
"stars": 0,
|
|
708
|
+
"forks": 0,
|
|
709
|
+
"topics": [],
|
|
710
|
+
"is_fork": false,
|
|
711
|
+
"tech_stack_inferred": [
|
|
712
|
+
"AI",
|
|
713
|
+
"LLM"
|
|
714
|
+
],
|
|
715
|
+
"domains": [
|
|
716
|
+
"AI/ML",
|
|
717
|
+
"data-analysis"
|
|
718
|
+
],
|
|
719
|
+
"infrastructure": [],
|
|
720
|
+
"category": "web-app",
|
|
721
|
+
"summary": "HTML-based data coverage analysis tool for SP region."
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"name": "Vortex-cpx",
|
|
725
|
+
"description": "Advanced iPhone media sync tool with TUI and GUI interfaces - Apple device copy/upload to GitHub with async processing",
|
|
726
|
+
"language": null,
|
|
727
|
+
"url": "https://github.com/HautlyS/Vortex-cpx",
|
|
728
|
+
"created_at": "2026-01-17T13:31:25Z",
|
|
729
|
+
"updated_at": "2026-01-17T13:31:26Z",
|
|
730
|
+
"size_kb": 0,
|
|
731
|
+
"stars": 0,
|
|
732
|
+
"forks": 0,
|
|
733
|
+
"topics": [],
|
|
734
|
+
"is_fork": false,
|
|
735
|
+
"tech_stack_inferred": [
|
|
736
|
+
"async-processing"
|
|
737
|
+
],
|
|
738
|
+
"domains": [
|
|
739
|
+
"file-management",
|
|
740
|
+
"mobile"
|
|
741
|
+
],
|
|
742
|
+
"infrastructure": [
|
|
743
|
+
"async-processing"
|
|
744
|
+
],
|
|
745
|
+
"category": "web-app",
|
|
746
|
+
"summary": "Advanced iPhone media sync tool with TUI and GUI interfaces for Apple device copy/upload with async processing."
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"name": "RSCAN",
|
|
750
|
+
"description": null,
|
|
751
|
+
"language": "Makefile",
|
|
752
|
+
"url": "https://github.com/HautlyS/RSCAN",
|
|
753
|
+
"created_at": "2026-01-13T18:34:52Z",
|
|
754
|
+
"updated_at": "2026-01-13T18:59:43Z",
|
|
755
|
+
"size_kb": 233305,
|
|
756
|
+
"stars": 0,
|
|
757
|
+
"forks": 0,
|
|
758
|
+
"topics": [],
|
|
759
|
+
"is_fork": false,
|
|
760
|
+
"tech_stack_inferred": [
|
|
761
|
+
"DevOps"
|
|
762
|
+
],
|
|
763
|
+
"domains": [
|
|
764
|
+
"devops",
|
|
765
|
+
"security"
|
|
766
|
+
],
|
|
767
|
+
"infrastructure": [],
|
|
768
|
+
"category": "tool",
|
|
769
|
+
"summary": "System scanning and analysis tool."
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"name": "Github-Watcher",
|
|
773
|
+
"description": null,
|
|
774
|
+
"language": "Rust",
|
|
775
|
+
"url": "https://github.com/HautlyS/Github-Watcher",
|
|
776
|
+
"created_at": "2026-01-10T18:22:25Z",
|
|
777
|
+
"updated_at": "2026-01-10T18:24:07Z",
|
|
778
|
+
"size_kb": 16,
|
|
779
|
+
"stars": 0,
|
|
780
|
+
"forks": 0,
|
|
781
|
+
"topics": [],
|
|
782
|
+
"is_fork": false,
|
|
783
|
+
"tech_stack_inferred": [
|
|
784
|
+
"Rust",
|
|
785
|
+
"DevOps",
|
|
786
|
+
"GitHub API"
|
|
787
|
+
],
|
|
788
|
+
"domains": [
|
|
789
|
+
"devops",
|
|
790
|
+
"automation"
|
|
791
|
+
],
|
|
792
|
+
"infrastructure": [
|
|
793
|
+
"GitHub API"
|
|
794
|
+
],
|
|
795
|
+
"category": "web-app",
|
|
796
|
+
"summary": "Rust-based GitHub repository monitoring and watchlist manager."
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"name": "Vue-Components",
|
|
800
|
+
"description": null,
|
|
801
|
+
"language": "Vue",
|
|
802
|
+
"url": "https://github.com/HautlyS/Vue-Components",
|
|
803
|
+
"created_at": "2026-01-10T18:21:00Z",
|
|
804
|
+
"updated_at": "2026-01-10T18:21:28Z",
|
|
805
|
+
"size_kb": 805,
|
|
806
|
+
"stars": 0,
|
|
807
|
+
"forks": 0,
|
|
808
|
+
"topics": [],
|
|
809
|
+
"is_fork": false,
|
|
810
|
+
"tech_stack_inferred": [
|
|
811
|
+
"Vue",
|
|
812
|
+
"Vue.js",
|
|
813
|
+
"Frontend"
|
|
814
|
+
],
|
|
815
|
+
"domains": [
|
|
816
|
+
"web-apps",
|
|
817
|
+
"UI"
|
|
818
|
+
],
|
|
819
|
+
"infrastructure": [
|
|
820
|
+
"Vue.js"
|
|
821
|
+
],
|
|
822
|
+
"category": "web-app",
|
|
823
|
+
"summary": "Reusable Vue.js component library for rapid web development."
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"name": "Portif-lio-Maker",
|
|
827
|
+
"description": null,
|
|
828
|
+
"language": "Vue",
|
|
829
|
+
"url": "https://github.com/HautlyS/Portif-lio-Maker",
|
|
830
|
+
"created_at": "2026-01-10T18:19:14Z",
|
|
831
|
+
"updated_at": "2026-01-10T18:19:45Z",
|
|
832
|
+
"size_kb": 200,
|
|
833
|
+
"stars": 0,
|
|
834
|
+
"forks": 0,
|
|
835
|
+
"topics": [],
|
|
836
|
+
"is_fork": false,
|
|
837
|
+
"tech_stack_inferred": [
|
|
838
|
+
"Vue",
|
|
839
|
+
"Vue.js",
|
|
840
|
+
"Frontend"
|
|
841
|
+
],
|
|
842
|
+
"domains": [
|
|
843
|
+
"web-apps"
|
|
844
|
+
],
|
|
845
|
+
"infrastructure": [
|
|
846
|
+
"Vue.js"
|
|
847
|
+
],
|
|
848
|
+
"category": "web-app",
|
|
849
|
+
"summary": "Vue.js portfolio generator for creating personal project showcases."
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"name": "Vortex-iMAGE",
|
|
853
|
+
"description": null,
|
|
854
|
+
"language": "Vue",
|
|
855
|
+
"url": "https://github.com/HautlyS/Vortex-iMAGE",
|
|
856
|
+
"created_at": "2025-12-21T15:40:05Z",
|
|
857
|
+
"updated_at": "2026-01-10T18:17:15Z",
|
|
858
|
+
"size_kb": 5227,
|
|
859
|
+
"stars": 0,
|
|
860
|
+
"forks": 0,
|
|
861
|
+
"topics": [],
|
|
862
|
+
"is_fork": false,
|
|
863
|
+
"tech_stack_inferred": [
|
|
864
|
+
"Vue",
|
|
865
|
+
"Vue.js",
|
|
866
|
+
"Frontend"
|
|
867
|
+
],
|
|
868
|
+
"domains": [
|
|
869
|
+
"web-apps",
|
|
870
|
+
"media"
|
|
871
|
+
],
|
|
872
|
+
"infrastructure": [
|
|
873
|
+
"Vue.js"
|
|
874
|
+
],
|
|
875
|
+
"category": "web-app",
|
|
876
|
+
"summary": "Vue.js image management and processing tool."
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"name": "Vortex-ROOK",
|
|
880
|
+
"description": null,
|
|
881
|
+
"language": "Rust",
|
|
882
|
+
"url": "https://github.com/HautlyS/Vortex-ROOK",
|
|
883
|
+
"created_at": "2026-01-05T11:55:37Z",
|
|
884
|
+
"updated_at": "2026-01-10T18:16:54Z",
|
|
885
|
+
"size_kb": 25737,
|
|
886
|
+
"stars": 0,
|
|
887
|
+
"forks": 0,
|
|
888
|
+
"topics": [],
|
|
889
|
+
"is_fork": false,
|
|
890
|
+
"tech_stack_inferred": [
|
|
891
|
+
"Rust"
|
|
892
|
+
],
|
|
893
|
+
"domains": [
|
|
894
|
+
"file-management",
|
|
895
|
+
"storage"
|
|
896
|
+
],
|
|
897
|
+
"infrastructure": [
|
|
898
|
+
"Rust"
|
|
899
|
+
],
|
|
900
|
+
"category": "app",
|
|
901
|
+
"summary": "Rust-based file storage and management system."
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"name": "check1",
|
|
905
|
+
"description": null,
|
|
906
|
+
"language": null,
|
|
907
|
+
"url": "https://github.com/HautlyS/check1",
|
|
908
|
+
"created_at": "2025-12-21T19:25:00Z",
|
|
909
|
+
"updated_at": "2025-12-22T16:00:24Z",
|
|
910
|
+
"size_kb": 55146,
|
|
911
|
+
"stars": 0,
|
|
912
|
+
"forks": 0,
|
|
913
|
+
"topics": [],
|
|
914
|
+
"is_fork": false,
|
|
915
|
+
"tech_stack_inferred": [],
|
|
916
|
+
"domains": [
|
|
917
|
+
"general"
|
|
918
|
+
],
|
|
919
|
+
"infrastructure": [],
|
|
920
|
+
"category": "other",
|
|
921
|
+
"summary": "Testing and experimentation project."
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
"name": "Vortex",
|
|
925
|
+
"description": null,
|
|
926
|
+
"language": "Rust",
|
|
927
|
+
"url": "https://github.com/HautlyS/Vortex",
|
|
928
|
+
"created_at": "2025-12-08T14:28:19Z",
|
|
929
|
+
"updated_at": "2025-12-21T14:05:50Z",
|
|
930
|
+
"size_kb": 30099,
|
|
931
|
+
"stars": 0,
|
|
932
|
+
"forks": 0,
|
|
933
|
+
"topics": [],
|
|
934
|
+
"is_fork": false,
|
|
935
|
+
"tech_stack_inferred": [
|
|
936
|
+
"Rust"
|
|
937
|
+
],
|
|
938
|
+
"domains": [
|
|
939
|
+
"file-management",
|
|
940
|
+
"media"
|
|
941
|
+
],
|
|
942
|
+
"infrastructure": [
|
|
943
|
+
"Rust"
|
|
944
|
+
],
|
|
945
|
+
"category": "app",
|
|
946
|
+
"summary": "Core Rust-based media management and processing system."
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"name": "ECODRAW-KDE",
|
|
950
|
+
"description": null,
|
|
951
|
+
"language": "JavaScript",
|
|
952
|
+
"url": "https://github.com/HautlyS/ECODRAW-KDE",
|
|
953
|
+
"created_at": "2025-12-09T13:36:35Z",
|
|
954
|
+
"updated_at": "2025-12-09T13:38:21Z",
|
|
955
|
+
"size_kb": 7943,
|
|
956
|
+
"stars": 0,
|
|
957
|
+
"forks": 0,
|
|
958
|
+
"topics": [],
|
|
959
|
+
"is_fork": false,
|
|
960
|
+
"tech_stack_inferred": [
|
|
961
|
+
"JavaScript"
|
|
962
|
+
],
|
|
963
|
+
"domains": [
|
|
964
|
+
"web-apps",
|
|
965
|
+
"education"
|
|
966
|
+
],
|
|
967
|
+
"infrastructure": [],
|
|
968
|
+
"category": "web-app",
|
|
969
|
+
"summary": "KDE-integrated ecological drawing and educational tool."
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"name": "PARALLEL",
|
|
973
|
+
"description": null,
|
|
974
|
+
"language": "Rust",
|
|
975
|
+
"url": "https://github.com/HautlyS/PARALLEL",
|
|
976
|
+
"created_at": "2025-12-04T11:19:09Z",
|
|
977
|
+
"updated_at": "2025-12-04T11:20:09Z",
|
|
978
|
+
"size_kb": 297,
|
|
979
|
+
"stars": 0,
|
|
980
|
+
"forks": 0,
|
|
981
|
+
"topics": [],
|
|
982
|
+
"is_fork": false,
|
|
983
|
+
"tech_stack_inferred": [
|
|
984
|
+
"Rust"
|
|
985
|
+
],
|
|
986
|
+
"domains": [
|
|
987
|
+
"systems",
|
|
988
|
+
"parallel-computing"
|
|
989
|
+
],
|
|
990
|
+
"infrastructure": [
|
|
991
|
+
"Rust"
|
|
992
|
+
],
|
|
993
|
+
"category": "tool",
|
|
994
|
+
"summary": "Rust-based parallel computing and task execution utility."
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
"name": "CHROME-HIJACK",
|
|
998
|
+
"description": null,
|
|
999
|
+
"language": "CSS",
|
|
1000
|
+
"url": "https://github.com/HautlyS/CHROME-HIJACK",
|
|
1001
|
+
"created_at": "2025-12-04T11:17:00Z",
|
|
1002
|
+
"updated_at": "2025-12-04T11:17:33Z",
|
|
1003
|
+
"size_kb": 250,
|
|
1004
|
+
"stars": 0,
|
|
1005
|
+
"forks": 0,
|
|
1006
|
+
"topics": [],
|
|
1007
|
+
"is_fork": false,
|
|
1008
|
+
"tech_stack_inferred": [
|
|
1009
|
+
"CSS"
|
|
1010
|
+
],
|
|
1011
|
+
"domains": [
|
|
1012
|
+
"web-automation",
|
|
1013
|
+
"browser"
|
|
1014
|
+
],
|
|
1015
|
+
"infrastructure": [],
|
|
1016
|
+
"category": "tool",
|
|
1017
|
+
"summary": "CSS/JavaScript browser customization and UI modification project."
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"name": "agroecologia-desenhada-ecodraw",
|
|
1021
|
+
"description": null,
|
|
1022
|
+
"language": "JavaScript",
|
|
1023
|
+
"url": "https://github.com/HautlyS/agroecologia-desenhada-ecodraw",
|
|
1024
|
+
"created_at": "2025-11-09T13:03:41Z",
|
|
1025
|
+
"updated_at": "2025-11-09T15:46:07Z",
|
|
1026
|
+
"size_kb": 868,
|
|
1027
|
+
"stars": 0,
|
|
1028
|
+
"forks": 0,
|
|
1029
|
+
"topics": [],
|
|
1030
|
+
"is_fork": false,
|
|
1031
|
+
"tech_stack_inferred": [
|
|
1032
|
+
"JavaScript"
|
|
1033
|
+
],
|
|
1034
|
+
"domains": [
|
|
1035
|
+
"web-apps",
|
|
1036
|
+
"education",
|
|
1037
|
+
"sustainability"
|
|
1038
|
+
],
|
|
1039
|
+
"infrastructure": [],
|
|
1040
|
+
"category": "web-app",
|
|
1041
|
+
"summary": "JavaScript educational drawing tool for agroecology concepts."
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"name": "agroecologia-desenhada",
|
|
1045
|
+
"description": null,
|
|
1046
|
+
"language": "TypeScript",
|
|
1047
|
+
"url": "https://github.com/HautlyS/agroecologia-desenhada",
|
|
1048
|
+
"created_at": "2025-07-05T15:17:51Z",
|
|
1049
|
+
"updated_at": "2025-11-02T07:20:27Z",
|
|
1050
|
+
"size_kb": 1146,
|
|
1051
|
+
"stars": 0,
|
|
1052
|
+
"forks": 0,
|
|
1053
|
+
"topics": [],
|
|
1054
|
+
"is_fork": false,
|
|
1055
|
+
"tech_stack_inferred": [
|
|
1056
|
+
"TypeScript"
|
|
1057
|
+
],
|
|
1058
|
+
"domains": [
|
|
1059
|
+
"web-apps",
|
|
1060
|
+
"education",
|
|
1061
|
+
"sustainability"
|
|
1062
|
+
],
|
|
1063
|
+
"infrastructure": [
|
|
1064
|
+
"TypeScript"
|
|
1065
|
+
],
|
|
1066
|
+
"category": "web-app",
|
|
1067
|
+
"summary": "TypeScript educational platform for agroecology visual learning."
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"name": "ecodraw",
|
|
1071
|
+
"description": null,
|
|
1072
|
+
"language": "TypeScript",
|
|
1073
|
+
"url": "https://github.com/HautlyS/ecodraw",
|
|
1074
|
+
"created_at": "2025-06-16T21:54:30Z",
|
|
1075
|
+
"updated_at": "2025-10-28T21:33:34Z",
|
|
1076
|
+
"size_kb": 1770,
|
|
1077
|
+
"stars": 0,
|
|
1078
|
+
"forks": 0,
|
|
1079
|
+
"topics": [],
|
|
1080
|
+
"is_fork": false,
|
|
1081
|
+
"tech_stack_inferred": [
|
|
1082
|
+
"TypeScript"
|
|
1083
|
+
],
|
|
1084
|
+
"domains": [
|
|
1085
|
+
"web-apps",
|
|
1086
|
+
"education"
|
|
1087
|
+
],
|
|
1088
|
+
"infrastructure": [
|
|
1089
|
+
"TypeScript"
|
|
1090
|
+
],
|
|
1091
|
+
"category": "web-app",
|
|
1092
|
+
"summary": "TypeScript drawing and visualization educational tool."
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
"name": "mouse-spark",
|
|
1096
|
+
"description": null,
|
|
1097
|
+
"language": "JavaScript",
|
|
1098
|
+
"url": "https://github.com/HautlyS/mouse-spark",
|
|
1099
|
+
"created_at": "2025-08-17T14:53:33Z",
|
|
1100
|
+
"updated_at": "2025-08-17T14:53:55Z",
|
|
1101
|
+
"size_kb": 46,
|
|
1102
|
+
"stars": 0,
|
|
1103
|
+
"forks": 0,
|
|
1104
|
+
"topics": [],
|
|
1105
|
+
"is_fork": false,
|
|
1106
|
+
"tech_stack_inferred": [
|
|
1107
|
+
"JavaScript"
|
|
1108
|
+
],
|
|
1109
|
+
"domains": [
|
|
1110
|
+
"web-apps",
|
|
1111
|
+
"UI"
|
|
1112
|
+
],
|
|
1113
|
+
"infrastructure": [],
|
|
1114
|
+
"category": "web-app",
|
|
1115
|
+
"summary": "JavaScript mouse trail and sparkle effect library."
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"name": "circo-natureza-digital-showcase",
|
|
1119
|
+
"description": null,
|
|
1120
|
+
"language": "TypeScript",
|
|
1121
|
+
"url": "https://github.com/HautlyS/circo-natureza-digital-showcase",
|
|
1122
|
+
"created_at": "2025-07-19T00:38:49Z",
|
|
1123
|
+
"updated_at": "2025-07-19T00:41:38Z",
|
|
1124
|
+
"size_kb": 770,
|
|
1125
|
+
"stars": 0,
|
|
1126
|
+
"forks": 0,
|
|
1127
|
+
"topics": [],
|
|
1128
|
+
"is_fork": false,
|
|
1129
|
+
"tech_stack_inferred": [
|
|
1130
|
+
"TypeScript"
|
|
1131
|
+
],
|
|
1132
|
+
"domains": [
|
|
1133
|
+
"web-apps",
|
|
1134
|
+
"education",
|
|
1135
|
+
"sustainability"
|
|
1136
|
+
],
|
|
1137
|
+
"infrastructure": [
|
|
1138
|
+
"TypeScript"
|
|
1139
|
+
],
|
|
1140
|
+
"category": "web-app",
|
|
1141
|
+
"summary": "TypeScript showcase for Circus of Digital Nature - digital nature exhibition."
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
"name": "dharma-ar-mandala-sutra",
|
|
1145
|
+
"description": null,
|
|
1146
|
+
"language": "TypeScript",
|
|
1147
|
+
"url": "https://github.com/HautlyS/dharma-ar-mandala-sutra",
|
|
1148
|
+
"created_at": "2025-06-16T21:50:50Z",
|
|
1149
|
+
"updated_at": "2025-06-21T22:07:00Z",
|
|
1150
|
+
"size_kb": 3222,
|
|
1151
|
+
"stars": 0,
|
|
1152
|
+
"forks": 0,
|
|
1153
|
+
"topics": [],
|
|
1154
|
+
"is_fork": false,
|
|
1155
|
+
"tech_stack_inferred": [
|
|
1156
|
+
"TypeScript",
|
|
1157
|
+
"AR"
|
|
1158
|
+
],
|
|
1159
|
+
"domains": [
|
|
1160
|
+
"web-apps",
|
|
1161
|
+
"AR",
|
|
1162
|
+
"spirituality"
|
|
1163
|
+
],
|
|
1164
|
+
"infrastructure": [
|
|
1165
|
+
"AR",
|
|
1166
|
+
"TypeScript"
|
|
1167
|
+
],
|
|
1168
|
+
"category": "web-app",
|
|
1169
|
+
"summary": "TypeScript AR mandala sutra experience combining dharma and digital art."
|
|
1170
|
+
}
|
|
1171
|
+
],
|
|
1172
|
+
"skills_summary": {
|
|
1173
|
+
"languages": {
|
|
1174
|
+
"Rust": 10,
|
|
1175
|
+
"JavaScript": 8,
|
|
1176
|
+
"TypeScript": 7,
|
|
1177
|
+
"Vue": 5
|
|
1178
|
+
},
|
|
1179
|
+
"tech_stack": [
|
|
1180
|
+
"3D",
|
|
1181
|
+
"AI",
|
|
1182
|
+
"AR",
|
|
1183
|
+
"CI/CD",
|
|
1184
|
+
"CSS",
|
|
1185
|
+
"DevOps",
|
|
1186
|
+
"Docker",
|
|
1187
|
+
"Frontend",
|
|
1188
|
+
"GitHub API",
|
|
1189
|
+
"HTML",
|
|
1190
|
+
"JavaScript",
|
|
1191
|
+
"LLM",
|
|
1192
|
+
"LoRA",
|
|
1193
|
+
"PWA",
|
|
1194
|
+
"Rust",
|
|
1195
|
+
"Rust CLI",
|
|
1196
|
+
"Telegram API",
|
|
1197
|
+
"TypeScript",
|
|
1198
|
+
"Vue",
|
|
1199
|
+
"Vue.js",
|
|
1200
|
+
"WhatsApp API",
|
|
1201
|
+
"async-processing",
|
|
1202
|
+
"cargo",
|
|
1203
|
+
"federated-learning",
|
|
1204
|
+
"proxy",
|
|
1205
|
+
"update-management"
|
|
1206
|
+
],
|
|
1207
|
+
"domains": [
|
|
1208
|
+
"3D",
|
|
1209
|
+
"AI",
|
|
1210
|
+
"AI/ML",
|
|
1211
|
+
"AR",
|
|
1212
|
+
"P2P",
|
|
1213
|
+
"UI",
|
|
1214
|
+
"automation",
|
|
1215
|
+
"browser",
|
|
1216
|
+
"containerization",
|
|
1217
|
+
"data-analysis",
|
|
1218
|
+
"data-storage",
|
|
1219
|
+
"desktop-apps",
|
|
1220
|
+
"devops",
|
|
1221
|
+
"distributed-systems",
|
|
1222
|
+
"education",
|
|
1223
|
+
"environmental",
|
|
1224
|
+
"file-management",
|
|
1225
|
+
"geospatial",
|
|
1226
|
+
"image-processing",
|
|
1227
|
+
"media",
|
|
1228
|
+
"messaging",
|
|
1229
|
+
"mobile",
|
|
1230
|
+
"multimedia",
|
|
1231
|
+
"package-management",
|
|
1232
|
+
"parallel-computing",
|
|
1233
|
+
"productivity",
|
|
1234
|
+
"real-estate",
|
|
1235
|
+
"security",
|
|
1236
|
+
"shell",
|
|
1237
|
+
"spirituality",
|
|
1238
|
+
"storage",
|
|
1239
|
+
"sustainability",
|
|
1240
|
+
"systems",
|
|
1241
|
+
"web-apps",
|
|
1242
|
+
"web-automation"
|
|
1243
|
+
],
|
|
1244
|
+
"infrastructure": [
|
|
1245
|
+
"3D",
|
|
1246
|
+
"AR",
|
|
1247
|
+
"CI/CD",
|
|
1248
|
+
"Docker",
|
|
1249
|
+
"GitHub API",
|
|
1250
|
+
"LoRA",
|
|
1251
|
+
"PWA",
|
|
1252
|
+
"Rust",
|
|
1253
|
+
"Rust CLI",
|
|
1254
|
+
"Telegram API",
|
|
1255
|
+
"TypeScript",
|
|
1256
|
+
"Vue.js",
|
|
1257
|
+
"WhatsApp API",
|
|
1258
|
+
"async-processing",
|
|
1259
|
+
"cargo",
|
|
1260
|
+
"federated-learning",
|
|
1261
|
+
"proxy",
|
|
1262
|
+
"update-management"
|
|
1263
|
+
]
|
|
1264
|
+
},
|
|
1265
|
+
"enriched_at": "2026-07-27"
|
|
1266
|
+
}
|