skillhub-ai 0.1.0__tar.gz

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.
Files changed (65) hide show
  1. skillhub_ai-0.1.0/.github/PULL_REQUEST_TEMPLATE.md +35 -0
  2. skillhub_ai-0.1.0/.gitignore +12 -0
  3. skillhub_ai-0.1.0/CONTRIBUTING.md +110 -0
  4. skillhub_ai-0.1.0/LICENSE +21 -0
  5. skillhub_ai-0.1.0/PKG-INFO +348 -0
  6. skillhub_ai-0.1.0/README.md +315 -0
  7. skillhub_ai-0.1.0/pyproject.toml +59 -0
  8. skillhub_ai-0.1.0/registry/index.json +226 -0
  9. skillhub_ai-0.1.0/skillhub/__init__.py +1 -0
  10. skillhub_ai-0.1.0/skillhub/adapters.py +87 -0
  11. skillhub_ai-0.1.0/skillhub/composer.py +153 -0
  12. skillhub_ai-0.1.0/skillhub/installer.py +100 -0
  13. skillhub_ai-0.1.0/skillhub/main.py +411 -0
  14. skillhub_ai-0.1.0/skillhub/registry.py +146 -0
  15. skillhub_ai-0.1.0/skills/agent-builder/SKILL.md +205 -0
  16. skillhub_ai-0.1.0/skills/agent-builder/skill.json +23 -0
  17. skillhub_ai-0.1.0/skills/api-design/SKILL.md +202 -0
  18. skillhub_ai-0.1.0/skills/api-design/skill.json +22 -0
  19. skillhub_ai-0.1.0/skills/code-reviewer/SKILL.md +133 -0
  20. skillhub_ai-0.1.0/skills/code-reviewer/skill.json +21 -0
  21. skillhub_ai-0.1.0/skills/cost-tracker/SKILL.md +121 -0
  22. skillhub_ai-0.1.0/skills/cost-tracker/skill.json +23 -0
  23. skillhub_ai-0.1.0/skills/debug-agent/SKILL.md +96 -0
  24. skillhub_ai-0.1.0/skills/debug-agent/skill.json +20 -0
  25. skillhub_ai-0.1.0/skills/doc-generator/SKILL.md +159 -0
  26. skillhub_ai-0.1.0/skills/doc-generator/skill.json +10 -0
  27. skillhub_ai-0.1.0/skills/docker-agent/SKILL.md +192 -0
  28. skillhub_ai-0.1.0/skills/docker-agent/skill.json +21 -0
  29. skillhub_ai-0.1.0/skills/fastapi-patterns/SKILL.md +210 -0
  30. skillhub_ai-0.1.0/skills/fastapi-patterns/skill.json +23 -0
  31. skillhub_ai-0.1.0/skills/git-workflow/SKILL.md +133 -0
  32. skillhub_ai-0.1.0/skills/git-workflow/skill.json +22 -0
  33. skillhub_ai-0.1.0/skills/llm-evaluator/SKILL.md +172 -0
  34. skillhub_ai-0.1.0/skills/llm-evaluator/skill.json +22 -0
  35. skillhub_ai-0.1.0/skills/mle-workflow/SKILL.md +205 -0
  36. skillhub_ai-0.1.0/skills/mle-workflow/skill.json +23 -0
  37. skillhub_ai-0.1.0/skills/pr-summarizer/SKILL.md +96 -0
  38. skillhub_ai-0.1.0/skills/pr-summarizer/skill.json +20 -0
  39. skillhub_ai-0.1.0/skills/prompt-optimizer/SKILL.md +164 -0
  40. skillhub_ai-0.1.0/skills/prompt-optimizer/skill.json +21 -0
  41. skillhub_ai-0.1.0/skills/python-patterns/SKILL.md +207 -0
  42. skillhub_ai-0.1.0/skills/python-patterns/skill.json +22 -0
  43. skillhub_ai-0.1.0/skills/rag-evaluator/SKILL.md +122 -0
  44. skillhub_ai-0.1.0/skills/rag-evaluator/skill.json +22 -0
  45. skillhub_ai-0.1.0/skills/react-patterns/SKILL.md +205 -0
  46. skillhub_ai-0.1.0/skills/react-patterns/skill.json +22 -0
  47. skillhub_ai-0.1.0/skills/refactor-agent/SKILL.md +199 -0
  48. skillhub_ai-0.1.0/skills/refactor-agent/skill.json +21 -0
  49. skillhub_ai-0.1.0/skills/research-agent/SKILL.md +108 -0
  50. skillhub_ai-0.1.0/skills/research-agent/skill.json +21 -0
  51. skillhub_ai-0.1.0/skills/security-review/SKILL.md +166 -0
  52. skillhub_ai-0.1.0/skills/security-review/skill.json +22 -0
  53. skillhub_ai-0.1.0/skills/sql-agent/SKILL.md +130 -0
  54. skillhub_ai-0.1.0/skills/sql-agent/skill.json +21 -0
  55. skillhub_ai-0.1.0/skills/test-writer/SKILL.md +128 -0
  56. skillhub_ai-0.1.0/skills/test-writer/skill.json +21 -0
  57. skillhub_ai-0.1.0/skills/yc-job-tracker/SKILL.md +97 -0
  58. skillhub_ai-0.1.0/skills/yc-job-tracker/skill.json +22 -0
  59. skillhub_ai-0.1.0/tests/__init__.py +1 -0
  60. skillhub_ai-0.1.0/tests/conftest.py +137 -0
  61. skillhub_ai-0.1.0/tests/test_adapters.py +152 -0
  62. skillhub_ai-0.1.0/tests/test_cli.py +123 -0
  63. skillhub_ai-0.1.0/tests/test_composer.py +179 -0
  64. skillhub_ai-0.1.0/tests/test_installer.py +115 -0
  65. skillhub_ai-0.1.0/tests/test_registry.py +149 -0
@@ -0,0 +1,35 @@
1
+ ## Skill Name
2
+
3
+ <!-- The exact name from skill.json -->
4
+
5
+ ## Problem This Solves
6
+
7
+ <!-- Describe the specific situation where you needed this skill and it didn't exist.
8
+ "This could be useful" is not a problem statement.
9
+ "I was building a RAG pipeline and had no systematic way to evaluate faithfulness" is. -->
10
+
11
+ ## What the Skill Does
12
+
13
+ <!-- The workflow the skill provides. Not a list of the file's contents. -->
14
+
15
+ ## Checklist
16
+
17
+ - [ ] `skills/<name>/SKILL.md` exists with valid frontmatter (name, description, version, agents, tags)
18
+ - [ ] `skills/<name>/skill.json` exists with all required fields
19
+ - [ ] Entry added to `registry/index.json` in alphabetical order
20
+ - [ ] Skill name is lowercase-hyphen-separated and matches the directory name
21
+ - [ ] Description is under 1024 characters and includes "Use when..."
22
+ - [ ] Skill is under 500 lines (or uses supporting files for overflow)
23
+ - [ ] I searched for existing skills and this doesn't duplicate one: `skillhub search <topic>`
24
+ - [ ] This is a single skill (not multiple skills bundled together)
25
+
26
+ ## Authoring
27
+
28
+ <!-- Required: who wrote this? -->
29
+ - [ ] Written by hand (no AI assistance)
30
+ - [ ] AI-assisted — model used: __________, I reviewed the complete diff before submitting
31
+
32
+ ## Existing PRs / Issues
33
+
34
+ <!-- Search open AND closed PRs for this skill or related ones. What did you find?
35
+ If a prior PR was closed, what's different about this one? -->
@@ -0,0 +1,12 @@
1
+ __pycache__/
2
+ *.pyc
3
+ *.pyo
4
+ .env
5
+ .venv/
6
+ venv/
7
+ dist/
8
+ build/
9
+ *.egg-info/
10
+ .pytest_cache/
11
+ .mypy_cache/
12
+ ~/.skillhub/
@@ -0,0 +1,110 @@
1
+ # Contributing to skillhub
2
+
3
+ Skills are reviewed for quality before merging. One excellent skill is worth ten mediocre ones.
4
+
5
+ ## Before You Submit
6
+
7
+ Ask yourself:
8
+ - **Is this skill genuinely useful to other developers?** Not just to me, not just for my project.
9
+ - **Does it describe a workflow, not just facts?** Skills are processes, not reference docs.
10
+ - **Is it specific and actionable?** "Run `npm test`" beats "verify the tests work."
11
+
12
+ If yes to all three — welcome.
13
+
14
+ ## What We Will Not Accept
15
+
16
+ - Skills that only work for one specific company's stack
17
+ - Skills that add third-party service dependencies without a fallback
18
+ - Rewrites of existing skills without clear improvement evidence
19
+ - Duplicate skills (search first: `skillhub search <topic>`)
20
+ - Bulk submissions (one skill per PR, understood deeply)
21
+
22
+ ## Skill Format
23
+
24
+ Every skill is a folder under `skills/` containing:
25
+
26
+ ```
27
+ skills/
28
+ your-skill-name/
29
+ SKILL.md ← required
30
+ skill.json ← required
31
+ ```
32
+
33
+ ### SKILL.md frontmatter (required)
34
+
35
+ ```yaml
36
+ ---
37
+ name: your-skill-name
38
+ description: What this skill does and when to use it. Max 1024 chars.
39
+ version: 1.0.0
40
+ agents: [claude, cursor, codex, gemini]
41
+ tags: [tag1, tag2, tag3]
42
+ ---
43
+ ```
44
+
45
+ ### skill.json (required)
46
+
47
+ ```json
48
+ {
49
+ "name": "your-skill-name",
50
+ "display_name": "Your Skill Name",
51
+ "description": "One-line description for the registry listing.",
52
+ "version": "1.0.0",
53
+ "agents": ["claude", "cursor", "codex", "gemini"],
54
+ "tags": ["tag1", "tag2"],
55
+ "author": "your-github-username",
56
+ "license": "MIT"
57
+ }
58
+ ```
59
+
60
+ ### registry/index.json entry (required)
61
+
62
+ Add your skill to `registry/index.json` in alphabetical order:
63
+
64
+ ```json
65
+ {
66
+ "name": "your-skill-name",
67
+ "display_name": "Your Skill Name",
68
+ "description": "One-line description.",
69
+ "version": "1.0.0",
70
+ "agents": ["claude", "cursor", "codex", "gemini"],
71
+ "tags": ["tag1", "tag2"],
72
+ "author": "your-github-username",
73
+ "license": "MIT"
74
+ }
75
+ ```
76
+
77
+ ## PR Requirements
78
+
79
+ 1. **One skill per PR.** Split multiple skills into separate PRs.
80
+ 2. **Fill in the PR template completely.** Empty sections = closed PR.
81
+ 3. **A human must review the diff before submitting.** If an AI wrote it, you reviewed it.
82
+ 4. **Disclose your authoring environment** in the PR: wrote by hand, or which AI tool helped.
83
+ 5. **Real problem only.** Describe the specific scenario where you needed this skill and it didn't exist.
84
+
85
+ ## Skill Quality Bar
86
+
87
+ Read `skills/research-agent/SKILL.md` and `skills/code-reviewer/SKILL.md` as examples of the quality bar.
88
+
89
+ Key properties of a good skill:
90
+ - **Process over knowledge**: steps to follow, not facts to memorize
91
+ - **Specific over general**: exact commands and outputs, not "run the tests"
92
+ - **Anti-rationalization**: every step that could be skipped has a rebuttal
93
+ - **Verification**: checklist of exit criteria with evidence requirements
94
+ - **Under 500 lines**: if longer, split into a main skill + supporting files
95
+
96
+ ## Development Setup
97
+
98
+ ```bash
99
+ git clone https://github.com/chandrudp29/skillhub
100
+ cd skillhub
101
+ pip install -e ".[dev]"
102
+
103
+ # Verify the CLI works
104
+ skillhub list
105
+ skillhub install research-agent
106
+ ```
107
+
108
+ ## Questions
109
+
110
+ Open an issue before starting work on a large skill — saves you time if it's already in progress.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Chandrashekar DP
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.
@@ -0,0 +1,348 @@
1
+ Metadata-Version: 2.4
2
+ Name: skillhub-ai
3
+ Version: 0.1.0
4
+ Summary: The package manager for AI agent skills — install, compose, and publish skills for Claude Code, Cursor, Codex, and Gemini CLI
5
+ Project-URL: Homepage, https://github.com/chandrudp29/skillhub
6
+ Project-URL: Repository, https://github.com/chandrudp29/skillhub
7
+ Project-URL: Issues, https://github.com/chandrudp29/skillhub/issues
8
+ Project-URL: Changelog, https://github.com/chandrudp29/skillhub/blob/main/CHANGELOG.md
9
+ Author-email: Chandrashekar DP <chandrudp29@gmail.com>
10
+ License: MIT
11
+ License-File: LICENSE
12
+ Keywords: agents,ai,claude,claude-code,codex,cursor,gemini,llm,package-manager,skills
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Environment :: Console
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
+ Classifier: Topic :: Utilities
24
+ Requires-Python: >=3.9
25
+ Requires-Dist: httpx>=0.27.0
26
+ Requires-Dist: pyyaml>=6.0
27
+ Requires-Dist: rich>=13.0.0
28
+ Requires-Dist: typer>=0.12.0
29
+ Provides-Extra: dev
30
+ Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
31
+ Requires-Dist: pytest>=8.0.0; extra == 'dev'
32
+ Description-Content-Type: text/markdown
33
+
34
+ # skillhub
35
+
36
+ [![PyPI version](https://img.shields.io/pypi/v/skillhub-ai.svg)](https://pypi.org/project/skillhub-ai/)
37
+ [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
38
+ [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
39
+ [![Skills](https://img.shields.io/badge/skills-22-purple.svg)](#available-skills)
40
+
41
+ **The package manager for AI agent skills.**
42
+
43
+ Install, compose, and publish reusable prompting workflows for Claude Code, Cursor, Codex, and Gemini CLI — in one command.
44
+
45
+ ```bash
46
+ pip install skillhub-ai
47
+ skillhub install research-agent
48
+ ```
49
+
50
+ ---
51
+
52
+ ## Why skillhub?
53
+
54
+ You've been copying skill files manually:
55
+
56
+ ```bash
57
+ # The old way
58
+ git clone https://github.com/someone/skills
59
+ cp skills/research-agent/SKILL.md .claude/commands/
60
+ cp skills/research-agent/SKILL.md .cursor/rules/
61
+ # repeat for every skill, every project, every agent...
62
+ ```
63
+
64
+ No versioning. No search. No way to combine skills. Every agent needs different files in different places.
65
+
66
+ **skillhub fixes this:**
67
+
68
+ ```bash
69
+ # The new way
70
+ skillhub install research-agent --all-agents # Done. All 4 agents configured.
71
+ ```
72
+
73
+ ---
74
+
75
+ ## Installation
76
+
77
+ ```bash
78
+ pip install skillhub-ai
79
+ ```
80
+
81
+ Requires Python 3.9+. No other dependencies needed.
82
+
83
+ **Verify installation:**
84
+ ```bash
85
+ skillhub --help
86
+ ```
87
+
88
+ ---
89
+
90
+ ## Quick Start
91
+
92
+ ### Search & Discover
93
+
94
+ ```bash
95
+ # Search by keyword
96
+ skillhub search "debug"
97
+
98
+ # Search by tag
99
+ skillhub search "research" --tag analysis
100
+
101
+ # List all 22 available skills
102
+ skillhub list
103
+
104
+ # Get detailed info on a skill
105
+ skillhub info research-agent
106
+ ```
107
+
108
+ ### Install Skills
109
+
110
+ ```bash
111
+ # Install for Claude Code (default)
112
+ skillhub install research-agent
113
+
114
+ # Install for a specific agent
115
+ skillhub install debug-agent --agent cursor
116
+ skillhub install debug-agent --agent codex
117
+ skillhub install debug-agent --agent gemini
118
+
119
+ # Install for ALL agents at once
120
+ skillhub install debug-agent --all-agents
121
+
122
+ # Preview what will be installed (no changes made)
123
+ skillhub install debug-agent --dry-run
124
+ ```
125
+
126
+ ### Manage Installed Skills
127
+
128
+ ```bash
129
+ # See what's installed in this project
130
+ skillhub list --installed
131
+
132
+ # Update all installed skills to latest
133
+ skillhub update
134
+
135
+ # Remove a skill
136
+ skillhub uninstall debug-agent
137
+ ```
138
+
139
+ ---
140
+
141
+ ## Skill Composer (The Killer Feature)
142
+
143
+ Combine multiple skills into one unified file — conflicts resolved automatically:
144
+
145
+ ```bash
146
+ skillhub compose research-agent code-reviewer security-review -o my-review-skill
147
+ ```
148
+
149
+ **What it does:**
150
+ - Merges descriptions from all skills
151
+ - Combines sections without duplication
152
+ - Detects conflicts (first-writer wins)
153
+ - Reports what was merged
154
+
155
+ **Preview first:**
156
+ ```bash
157
+ skillhub compose debug-agent test-writer --dry-run -o qa-skill
158
+ ```
159
+
160
+ ---
161
+
162
+ ## Available Skills (22)
163
+
164
+ ### Research & Analysis
165
+ | Skill | Description |
166
+ |-------|-------------|
167
+ | `research-agent` | Multi-source deep research with synthesis and citations |
168
+ | `rag-evaluator` | Evaluate RAG pipelines: faithfulness, relevance, hallucination |
169
+ | `llm-evaluator` | Build evaluation frameworks for LLM outputs |
170
+
171
+ ### Code Quality
172
+ | Skill | Description |
173
+ |-------|-------------|
174
+ | `code-reviewer` | Five-axis code review (correctness, security, performance, readability, maintainability) |
175
+ | `debug-agent` | Systematic root cause analysis — feedback loop first |
176
+ | `refactor-agent` | Safe, incremental refactoring with verification |
177
+ | `test-writer` | Write meaningful tests that actually catch bugs |
178
+ | `security-review` | OWASP-based security auditing |
179
+
180
+ ### Documentation
181
+ | Skill | Description |
182
+ |-------|-------------|
183
+ | `doc-generator` | README, API docs, docstrings, changelogs |
184
+ | `pr-summarizer` | Generate PR descriptions: what, why, how, risks |
185
+
186
+ ### Development Patterns
187
+ | Skill | Description |
188
+ |-------|-------------|
189
+ | `python-patterns` | Modern Python best practices (typing, async, dataclasses) |
190
+ | `react-patterns` | React 18+ patterns (hooks, suspense, server components) |
191
+ | `fastapi-patterns` | Production FastAPI patterns |
192
+ | `api-design` | REST API conventions and best practices |
193
+ | `sql-agent` | Write, optimize, and explain SQL with query plans |
194
+
195
+ ### DevOps
196
+ | Skill | Description |
197
+ |-------|-------------|
198
+ | `docker-agent` | Dockerfile optimization, multi-stage builds |
199
+ | `git-workflow` | Branching strategies, commit conventions |
200
+
201
+ ### AI/ML Engineering
202
+ | Skill | Description |
203
+ |-------|-------------|
204
+ | `agent-builder` | Build LangGraph agents with proper patterns |
205
+ | `prompt-optimizer` | Diagnose and improve underperforming prompts |
206
+ | `mle-workflow` | Production ML workflow: data, training, deployment |
207
+ | `cost-tracker` | Track and optimize LLM API costs |
208
+
209
+ ### Career
210
+ | Skill | Description |
211
+ |-------|-------------|
212
+ | `yc-job-tracker` | Daily AI/ML job tracking at YC startups |
213
+
214
+ ```bash
215
+ skillhub list # See all with descriptions
216
+ skillhub info <name> # Full details on one skill
217
+ ```
218
+
219
+ ---
220
+
221
+ ## Supported Agents
222
+
223
+ | Agent | Install Path | Flag |
224
+ |-------|--------------|------|
225
+ | **Claude Code** | `.claude/commands/{name}.md` | default |
226
+ | **Cursor** | `.cursor/rules/{name}.mdc` | `--agent cursor` |
227
+ | **OpenAI Codex** | `AGENTS.md` (appended) | `--agent codex` |
228
+ | **Gemini CLI** | `.gemini/skills/{name}.md` | `--agent gemini` |
229
+
230
+ ---
231
+
232
+ ## Command Reference
233
+
234
+ | Command | Description |
235
+ |---------|-------------|
236
+ | `skillhub search <query>` | Find skills by name, description, or tag |
237
+ | `skillhub list` | Show all available skills |
238
+ | `skillhub list --installed` | Show installed skills in current project |
239
+ | `skillhub info <name>` | Detailed information about a skill |
240
+ | `skillhub install <name>` | Install a skill |
241
+ | `skillhub install <name> --dry-run` | Preview install without writing |
242
+ | `skillhub install <name> --all-agents` | Install for all 4 agents |
243
+ | `skillhub uninstall <name>` | Remove an installed skill |
244
+ | `skillhub update` | Update all installed skills |
245
+ | `skillhub compose <a> <b> -o <name>` | Merge multiple skills into one |
246
+ | `skillhub publish <path>` | Submit your skill to the registry |
247
+
248
+ ---
249
+
250
+ ## Environment Variables
251
+
252
+ | Variable | Default | Description |
253
+ |----------|---------|-------------|
254
+ | `SKILLHUB_CACHE_TTL` | `3600` | Cache duration in seconds (1 hour) |
255
+ | `SKILLHUB_QUIET` | `0` | Set to `1` to suppress warnings |
256
+
257
+ ---
258
+
259
+ ## How It Works
260
+
261
+ ```
262
+ skillhub install research-agent
263
+
264
+
265
+ ┌─────────────────────────────────┐
266
+ │ Fetch registry from GitHub │ (cached 1 hour)
267
+ │ registry/index.json │
268
+ └─────────────────────────────────┘
269
+
270
+
271
+ ┌─────────────────────────────────┐
272
+ │ Download SKILL.md for agent │
273
+ │ skills/research-agent/SKILL.md │
274
+ └─────────────────────────────────┘
275
+
276
+
277
+ ┌─────────────────────────────────┐
278
+ │ Write to correct agent path │
279
+ │ .claude/commands/research-agent.md
280
+ └─────────────────────────────────┘
281
+
282
+
283
+ Done! ✓
284
+ ```
285
+
286
+ **Offline support:** Falls back to bundled skills when network is unavailable.
287
+
288
+ ---
289
+
290
+ ## Publish Your Own Skill
291
+
292
+ Have a skill that would help others? Submit it:
293
+
294
+ ```bash
295
+ skillhub publish ./my-skill
296
+ ```
297
+
298
+ This opens a guided PR flow. See [CONTRIBUTING.md](CONTRIBUTING.md) for the full guide.
299
+
300
+ **Quality bar:** We review for usefulness, not quantity. One genuinely helpful skill beats ten mediocre ones.
301
+
302
+ ---
303
+
304
+ ## Troubleshooting
305
+
306
+ **Skill not found?**
307
+ ```bash
308
+ skillhub search <partial-name> # Find similar skills
309
+ skillhub list # See everything available
310
+ ```
311
+
312
+ **Already installed error?**
313
+ ```bash
314
+ skillhub install <name> --overwrite # Replace existing
315
+ ```
316
+
317
+ **Network issues?**
318
+ ```bash
319
+ # skillhub falls back to bundled skills automatically
320
+ # To force refresh:
321
+ SKILLHUB_CACHE_TTL=0 skillhub list
322
+ ```
323
+
324
+ ---
325
+
326
+ ## Contributing
327
+
328
+ See [CONTRIBUTING.md](CONTRIBUTING.md) for the full guide.
329
+
330
+ **Quick start:**
331
+ 1. Fork this repo
332
+ 2. Add your skill under `skills/<your-skill-name>/SKILL.md`
333
+ 3. Add entry to `registry/index.json`
334
+ 4. Open a PR
335
+
336
+ ---
337
+
338
+ ## Author
339
+
340
+ Built by [Chandrashekar DP](https://github.com/chandrudp29) — AI/ML Engineer building open source tools for developers.
341
+
342
+ If skillhub saves you time, consider starring it — it helps others find it.
343
+
344
+ ---
345
+
346
+ ## License
347
+
348
+ MIT