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
|[**Resource Name**](link)<br>by [Author](link)| Category | Sub-Cat | Full description... |
291
+
```
292
+
293
+
### Release Detection
294
+
295
+
The "Releases" sort option shows resources with published releases in the past 30 days. Release information is fetched from multiple sources in priority order:
296
+
297
+
1.**GitHub Releases** - Official release tags
298
+
2.**GitHub Tags** - Fallback if no releases
299
+
3.**npm Registry** - For JavaScript packages
300
+
4.**PyPI** - For Python packages
301
+
5.**crates.io** - For Rust packages
302
+
6.**Homebrew** - For Homebrew formulas
303
+
7.**README parsing** - Last resort version extraction
304
+
305
+
Release data is stored in the CSV with columns:
306
+
-`Latest Release` - Timestamp of the release
307
+
-`Release Version` - Version string
308
+
-`Release Source` - Which registry/method detected it
309
+
310
+
A disclaimer appears on all release views noting the best-effort nature of detection.
311
+
312
+
### Generator Architecture
313
+
314
+
The `generate_readme.py` script uses a class hierarchy for different README styles:
315
+
316
+
```python
317
+
ReadmeGenerator (ABC)
318
+
├── VisualReadmeGenerator # README.md (Extra)
319
+
├── MinimalReadmeGenerator # README_CLASSIC
320
+
└── ParameterizedFlatListGenerator # All flat views (parameterized by category + sort)
321
+
```
322
+
323
+
The `ParameterizedFlatListGenerator` takes `category_slug` and `sort_type` parameters, enabling generation of all 44 combinations from a single class.
324
+
325
+
### Navigation Badges
326
+
327
+
SVG badges are generated dynamically in `assets/`:
To remove a category: Delete its entry from `FLAT_CATEGORIES` and run the generator. Manually delete the orphaned `.md` files from `README_ALTERNATIVES/`.
355
+
356
+
### Adding/Removing Sort Types
357
+
358
+
To add a new sort option:
359
+
360
+
1.**Update `FLAT_SORT_TYPES`** in `scripts/generate_readme.py`:
361
+
```python
362
+
FLAT_SORT_TYPES= {
363
+
# ... existing sorts ...
364
+
"newsort": ("DISPLAY", "#hexcolor", "description for status text"),
365
+
}
366
+
```
367
+
368
+
2.**Implement sorting logic** in `ParameterizedFlatListGenerator.sort_resources()`:
369
+
```python
370
+
elifself.sort_type =="newsort":
371
+
# Custom sorting logic
372
+
returnsorted(resources, key=lambdax: ...)
373
+
```
374
+
375
+
3.**Regenerate READMEs**: Creates new views for all categories × new sort type.
376
+
377
+
### Adding/Removing README Styles
378
+
379
+
The main README styles are defined as generator classes:
380
+
381
+
| Style | Generator Class | Template | Output |
382
+
|-------|----------------|----------|--------|
383
+
| Extra |`VisualReadmeGenerator`|`README.template.md`|`README.md`|
@@ -192,22 +197,6 @@ _A well-balanced, "down-to-Earth" set of sub agents, skills, and commands, that
192
197
_Professional development environment for Claude Code with spec-driven workflow, TDD enforcement, cross-session memory, semantic search, quality hooks, and modular rules integration. A bit "heavyweight" but feature-packed and has wide coverage._
193
198

_Lightweight CLI tool for real-time communication between Claude Code sub agents using hooks. Enables multi-agent collaboration with @-mention targeting, live dashboard monitoring, and zero-dependency implementation. [NOTE: At the time of posting, this resource is a little unstable - I'm sharing it anyway, because I think it's incredibly promising and creative. I hope by the time you read this, it is production-ready.]_
197
-

_Claude Code skill that automates mountain route research for North American peaks. Aggregates data from 10+ mountaineering sources like Mountaineers.org, PeakBagger.com and SummitPost.com to generate detailed route beta reports with weather, avalanche conditions, and trip reports._
201
-

202
-
203
-
<ahref="https://github.com/Piebald-AI/claude-code-system-prompts"><imgsrc="assets/badge-claude-code-system-prompts.svg"alt="Claude Code System Prompts"></a>
204
-
_All parts of Claude Code's system prompt, including builtin tool descriptions, sub agent prompts (Plan/Explore/Task), utility prompts (CLAUDE.md, compact, Bash cmd, security review, agent creation, etc.). Updated for each Claude Code version._
205
-

_A well-organized, well-written set of plugins covering core developer activities, such as working with common cloud platforms like GitHub, Azure, MongoDB, and popular services such as Tavily, Playwright, and more. Clear, not overly-opinionated, and compatible with a few other providers._
209
-

210
-
211
200
212
201
<br>
213
202
@@ -1187,6 +1176,13 @@ _A highly customizable status line formatter for Claude Code CLI that displays m
_Enhanced 4-line statusline for Claude Code with themes, cost tracking, and MCP server monitoring_
1181
+

_A vim-style powerline statusline for Claude Code with real-time usage tracking, git integration, custom themes, and more_
1192
1188

@@ -1914,13 +1910,6 @@ _Provides detailed and emphatic instructions for Claude to follow as a coding ag
_Offers clear step-by-step installation instructions with multiple configuration options, detailed troubleshooting guidance, and concise architecture overview of the MCP protocol._
1919
-

@@ -71,50 +77,6 @@ Professional development environment for Claude Code with spec-driven workflow,
71
77
</details>
72
78
<br>
73
79
74
-
[`Claude Code Hook Comms (HCOM)`](https://github.com/aannoo/claude-hook-comms) by [aannoo](https://github.com/aannoo) ⚖️ MIT
75
-
Lightweight CLI tool for real-time communication between Claude Code sub agents using hooks. Enables multi-agent collaboration with @-mention targeting, live dashboard monitoring, and zero-dependency implementation. [NOTE: At the time of posting, this resource is a little unstable - I'm sharing it anyway, because I think it's incredibly promising and creative. I hope by the time you read this, it is production-ready.]
76
-
77
-
<details>
78
-
<summary>📊 GitHub Stats</summary>
79
-
80
-

81
-
82
-
</details>
83
-
<br>
84
-
85
-
[`Claude Mountaineering Skills`](https://github.com/dreamiurg/claude-mountaineering-skills) by [Dmytro Gaivoronsky](https://github.com/dreamiurg) ⚖️ MIT
86
-
Claude Code skill that automates mountain route research for North American peaks. Aggregates data from 10+ mountaineering sources like Mountaineers.org, PeakBagger.com and SummitPost.com to generate detailed route beta reports with weather, avalanche conditions, and trip reports.
87
-
88
-
<details>
89
-
<summary>📊 GitHub Stats</summary>
90
-
91
-

92
-
93
-
</details>
94
-
<br>
95
-
96
-
[`Claude Code System Prompts`](https://github.com/Piebald-AI/claude-code-system-prompts) by [Piebald AI](https://github.com/Piebald-AI) ⚖️ MIT
97
-
All parts of Claude Code's system prompt, including builtin tool descriptions, sub agent prompts (Plan/Explore/Task), utility prompts (CLAUDE.md, compact, Bash cmd, security review, agent creation, etc.). Updated for each Claude Code version.
98
-
99
-
<details>
100
-
<summary>📊 GitHub Stats</summary>
101
-
102
-

103
-
104
-
</details>
105
-
<br>
106
-
107
-
[`Claude Codex Settings`](https://github.com/fcakyon/claude-codex-settings) by [fatih akyon](https://github.com/fcakyon) ⚖️ Apache-2.0
108
-
A well-organized, well-written set of plugins covering core developer activities, such as working with common cloud platforms like GitHub, Azure, MongoDB, and popular services such as Tavily, Playwright, and more. Clear, not overly-opinionated, and compatible with a few other providers.
109
-
110
-
<details>
111
-
<summary>📊 GitHub Stats</summary>
112
-
113
-

114
-
115
-
</details>
116
-
<br>
117
-
118
80
119
81
## Contents [🔝](#awesome-claude-code)
120
82
@@ -1038,6 +1000,17 @@ A highly customizable status line formatter for Claude Code CLI that displays mo
1038
1000
</details>
1039
1001
<br>
1040
1002
1003
+
[`claude-code-statusline`](https://github.com/rz1989s/claude-code-statusline) by [rz1989s](https://github.com/rz1989s) ⚖️ MIT
1004
+
Enhanced 4-line statusline for Claude Code with themes, cost tracking, and MCP server monitoring
1005
+
1006
+
<details>
1007
+
<summary>📊 GitHub Stats</summary>
1008
+
1009
+

1010
+
1011
+
</details>
1012
+
<br>
1013
+
1041
1014
[`claude-powerline`](https://github.com/Owloops/claude-powerline) by [Owloops](https://github.com/Owloops) ⚖️ MIT
1042
1015
A vim-style powerline statusline for Claude Code with real-time usage tracking, git integration, custom themes, and more
1043
1016
@@ -1984,17 +1957,6 @@ Provides detailed and emphatic instructions for Claude to follow as a coding age
1984
1957
</details>
1985
1958
<br>
1986
1959
1987
-
[`Perplexity MCP`](https://github.com/Family-IT-Guy/perplexity-mcp/blob/main/CLAUDE.md) by [Family-IT-Guy](https://github.com/Family-IT-Guy) ⚖️ ISC
1988
-
Offers clear step-by-step installation instructions with multiple configuration options, detailed troubleshooting guidance, and concise architecture overview of the MCP protocol.
1989
-
1990
-
<details>
1991
-
<summary>📊 GitHub Stats</summary>
1992
-
1993
-

0 commit comments