sck_0
dc6f3c51e5
feat: update clean-code skill and stabilize registry ( #69 )
...
- Updated clean-code skill with Robert C. Martin's Clean Code principles
- Refined content: naming, functions, comments, error handling, class design
- Fixed invalid heading format (## ## When to Use -> ## When to Use)
- Stabilized registry: use SOURCE_DATE_EPOCH for deterministic CI builds
- Improved catalog sorting for cross-environment consistency
- Regenerated all catalog and index files
Co-authored-by: jackjin1997 <jackjin1997@users.noreply.github.com >
2026-02-08 11:02:14 +01:00
github-actions[bot]
2675db4d2f
chore: update star history chart
2026-02-08 06:44:43 +00:00
github-actions[bot]
9c4724fb71
chore: update star history chart
2026-02-07 06:38:10 +00:00
github-actions[bot]
e94d250e55
chore: sync generated registry files [ci skip]
2026-02-06 08:53:44 +00:00
sck_0
29e6cf6966
docs(readme): increase support CTA visibility
2026-02-06 09:53:27 +01:00
github-actions[bot]
6fc7543a96
chore: sync generated registry files [ci skip]
2026-02-06 08:50:37 +00:00
sck_0
b85ba3500f
docs(readme): make support section transparent and community-first
2026-02-06 09:50:22 +01:00
github-actions[bot]
4419102cc9
chore: sync generated registry files [ci skip]
2026-02-06 08:32:28 +00:00
sck_0
41cd889ebd
docs(readme): clarify curated collections and bundle usage
2026-02-06 09:32:08 +01:00
github-actions[bot]
c12f68780b
chore: sync generated registry files [ci skip]
2026-02-06 08:28:40 +00:00
sck_0
f4b23f7480
docs(bundles): refresh usage guidance and add maintainer packs
2026-02-06 09:28:25 +01:00
github-actions[bot]
4df02e8068
chore: sync generated registry files [ci skip]
2026-02-06 08:13:24 +00:00
sck_0
3c899d01f2
docs(readme): reorder sections for onboarding flow
2026-02-06 09:13:08 +01:00
github-actions[bot]
b7a64f7b3b
chore: sync generated registry files [ci skip]
2026-02-06 08:08:49 +00:00
sck_0
d556615959
docs(readme): improve quick start and add troubleshooting
2026-02-06 09:08:25 +01:00
github-actions[bot]
67a3d81894
chore: sync generated registry files [ci skip]
2026-02-06 07:59:29 +00:00
sck_0
b690d7beb2
docs(release): expand 4.10.0 notes with detailed scope
2026-02-06 08:59:13 +01:00
github-actions[bot]
03c6270dc6
chore: sync generated registry files [ci skip]
2026-02-06 07:53:06 +00:00
sck_0
69e1545618
chore(release): 4.10.0
2026-02-06 08:52:45 +01:00
github-actions[bot]
4dcc4b29b0
chore: sync generated registry files [ci skip]
2026-02-06 07:49:30 +00:00
Nguyễn Văn Chán
797bf03dd1
Added detailed documentation for .NET/C# backend developer skills, including expertise, responsibilities, code patterns, and best practices. ( #65 )
...
* Create SKILL.md for .NET backend developer
Added detailed documentation for .NET/C# backend developer skills, including expertise, responsibilities, code patterns, and best practices.
* fix(dotnet-backend): add quality bar metadata and usage sections
---------
Co-authored-by: sck_0 <samujackson1337@gmail.com >
2026-02-06 08:49:07 +01:00
github-actions[bot]
1b2bed231d
chore: sync generated registry files [ci skip]
2026-02-06 07:44:10 +00:00
Soham
45e5ebbdbd
Add 78 Composio app automation skills via Rube MCP ( #64 )
...
Production-ready automation skills for 78 SaaS apps covering CRM,
project management, communication, email, DevOps, storage, and more.
Each skill includes workflow patterns, tool sequences, known pitfalls,
and quick reference tables.
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-02-06 08:43:50 +01:00
github-actions[bot]
0824bef4ba
chore: update star history chart
2026-02-06 06:51:12 +00:00
github-actions[bot]
c124b3b174
chore: sync generated registry files [ci skip]
2026-02-05 08:27:17 +00:00
sck_0
b328c91767
docs: enforce gh release create in maintenance guide
2026-02-05 09:26:56 +01:00
github-actions[bot]
31f1697e28
chore: sync generated registry files [ci skip]
2026-02-05 08:20:57 +00:00
sck_0
a58aa5628c
docs: update contributors list
2026-02-05 09:20:37 +01:00
github-actions[bot]
7eabe62ae8
chore: sync generated registry files [ci skip]
2026-02-05 08:14:33 +00:00
sck_0
37684d0fed
4.9.0
2026-02-05 09:14:07 +01:00
sck_0
601649074d
docs: update changelog for 4.9.0
2026-02-05 09:14:06 +01:00
sck_0
a648e1adb7
Merge PR #62 : Add CLI AI Skills (Resolved Conflicts via Regeneration)
2026-02-05 09:13:35 +01:00
github-actions[bot]
2a88369687
chore: sync generated registry files [ci skip]
2026-02-05 08:12:43 +00:00
sickn33
1a60d58ba0
Merge pull request #61 from jackjin1997/main
...
feat: add OSS Hunter skill for automated contribution hunting
2026-02-05 09:12:23 +01:00
github-actions[bot]
d1a14dfab9
chore: update star history chart
2026-02-05 06:55:35 +00:00
Eric Andrade
621dbe008e
fix: propagate exit codes in youtube-summarizer --list mode
...
Fixed automation-breaking issue where --list mode always returned exit code 0,
even when list_available_transcripts() failed due to invalid video ID or network errors.
Changes:
- extract-transcript.py: Capture return value and exit with proper status code
- Before: list_available_transcripts(video_id); sys.exit(0)
- After: success = list_available_transcripts(video_id); sys.exit(0 if success else 1)
- SKILL.md: Bumped version to 1.2.1
- CHANGELOG.md: Created changelog with v1.2.1 release notes
Impact: Automation scripts can now detect failures correctly via exit codes.
Identified by Codex automated review in antigravity-awesome-skills PR #62 .
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
2026-02-04 18:47:37 -03:00
Eric Andrade
eb493121d3
fix: remove unsafe file deletion in audio-transcriber cleanup
...
Remove cleanup_temp_files() function that was deleting fixed-name files
(metadata.json, transcription.json) without verifying script ownership.
This addresses security concern raised by Codex review:
- Risk: Could delete user's existing files with same names
- Solution: Removed cleanup since no temp JSON files are actually created
Changes:
- Remove cleanup_temp_files() function entirely
- Remove --keep-temp argument (no longer needed)
- Remove all cleanup_temp_files() calls
Fixes #62 (review comment)
2026-02-04 18:35:17 -03:00
Eric Andrade
801c8fa475
feat: add 4 universal skills from cli-ai-skills
...
- Add audio-transcriber skill (v1.2.0): Transform audio to Markdown with Whisper
- Add youtube-summarizer skill (v1.2.0): Generate summaries from YouTube videos
- Update prompt-engineer skill: Enhanced with 11 optimization frameworks
- Update skill-creator skill: Improved automation workflow
All skills are zero-config, cross-platform (Claude Code, Copilot CLI, Codex)
and follow Quality Bar V4 standards.
Source: https://github.com/ericgandrade/cli-ai-skills
2026-02-04 17:37:45 -03:00
JackJin
cf00d4fcca
feat: add OSS Hunter skill for automated contribution hunting
2026-02-05 01:30:29 +08:00
github-actions[bot]
6070da6a63
chore: sync generated registry files [ci skip]
2026-02-04 08:08:21 +00:00
sck_0
fd9b119040
chore: sync skills_index.json
2026-02-04 09:07:00 +01:00
sck_0
ca2551fe2b
fix: resolve YAML syntax errors and harden CI workflow
2026-02-04 09:07:00 +01:00
github-actions[bot]
0da99cd2c9
chore: sync generated registry files [ci skip]
2026-02-04 07:59:22 +00:00
sck_0
ce852bed63
docs: update contributors list
2026-02-04 08:58:45 +01:00
github-actions[bot]
53671205f0
chore: sync generated registry files [ci skip]
2026-02-04 07:53:25 +00:00
sck_0
ac20cc63b6
chore(release): v4.8.0 - Computer Vision & Angular
2026-02-04 08:52:08 +01:00
github-actions[bot]
e1c84cd8f4
chore: sync generated registry files [ci skip]
2026-02-04 07:49:25 +00:00
sickn33
73e51321ca
Merge pull request #60 from chauey/main
...
feat: add angular
2026-02-04 08:49:08 +01:00
sickn33
eca46228ed
Merge pull request #58 from PabloSMD/main
...
feat(skills): add computer-vision-expert (SOTA 2026: YOLO26, SAM 3)
2026-02-04 08:48:51 +01:00
Chau (Joe) Nguyen
aa164fac16
fix(angular): Add risk and source fields to meet quality bar requirements
2026-02-04 01:25:24 -06:00