cc-recommender 0.6.1 → 0.7.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/CHANGELOG.md +9 -0
- package/README.ja.md +6 -4
- package/README.md +6 -4
- package/data/mcp-servers.json +27306 -1614
- package/data/plugins.json +48 -95
- package/data/skills.json +156 -26
- package/dist/config/official-skills.d.ts +35 -0
- package/dist/config/official-skills.d.ts.map +1 -0
- package/dist/config/official-skills.js +67 -0
- package/dist/config/official-skills.js.map +1 -0
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/repositories/recommendation.repository.js +4 -4
- package/dist/repositories/recommendation.repository.js.map +1 -1
- package/dist/repositories/remote-data.repository.js +23 -23
- package/dist/repositories/remote-data.repository.js.map +1 -1
- package/dist/schemas/tool-schemas.d.ts.map +1 -1
- package/dist/schemas/tool-schemas.js +2 -2
- package/dist/schemas/tool-schemas.js.map +1 -1
- package/dist/server/mcp-server.js +1 -1
- package/dist/server/mcp-server.js.map +1 -1
- package/dist/server/tool-registry.d.ts.map +1 -1
- package/dist/server/tool-registry.js +3 -3
- package/dist/server/tool-registry.js.map +1 -1
- package/dist/services/fetchers/official-skill-fetcher.d.ts +12 -0
- package/dist/services/fetchers/official-skill-fetcher.d.ts.map +1 -0
- package/dist/services/fetchers/official-skill-fetcher.js +379 -0
- package/dist/services/fetchers/official-skill-fetcher.js.map +1 -0
- package/dist/services/recommender/formatters.d.ts.map +1 -1
- package/dist/services/recommender/formatters.js +78 -34
- package/dist/services/recommender/formatters.js.map +1 -1
- package/dist/services/security-scanner.service.d.ts.map +1 -1
- package/dist/services/security-scanner.service.js +1 -1
- package/dist/services/security-scanner.service.js.map +1 -1
- package/dist/utils/retry.d.ts +30 -0
- package/dist/utils/retry.d.ts.map +1 -0
- package/dist/utils/retry.js +71 -0
- package/dist/utils/retry.js.map +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.7.0](https://github.com/yuji0809/cc-recommender/compare/v0.6.1...v0.7.0) (2026-01-31)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* add official skills support from GitHub repositories ([195d44b](https://github.com/yuji0809/cc-recommender/commit/195d44b15b5dc46603a6345339cf6613dc41da54))
|
|
14
|
+
* enhance documentation and pre-commit checks ([048e23c](https://github.com/yuji0809/cc-recommender/commit/048e23ccca7de068345d7489847236cfea0705dd))
|
|
15
|
+
* use raw GitHub data to avoid API rate limits ([473d6b2](https://github.com/yuji0809/cc-recommender/commit/473d6b26d5134bea974f07a090387d89a90fe2d6))
|
|
16
|
+
|
|
8
17
|
## [0.6.1](https://github.com/yuji0809/cc-recommender/compare/v0.6.0...v0.6.1) (2026-01-31)
|
|
9
18
|
|
|
10
19
|
|
package/README.ja.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# cc-recommender
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/cc-recommender)
|
|
4
|
-
[](https://www.npmjs.com/package/cc-recommender)
|
|
5
4
|
[](https://github.com/yuji0809/cc-recommender/actions/workflows/ci.yml)
|
|
6
5
|
[](https://codecov.io/gh/yuji0809/cc-recommender)
|
|
7
6
|
[](https://opensource.org/licenses/MIT)
|
|
@@ -154,9 +153,9 @@ Claude: [search_skills ツールを使用]
|
|
|
154
153
|
|
|
155
154
|
| ソース | 内容 | 更新頻度 |
|
|
156
155
|
|--------|------|---------|
|
|
157
|
-
| [anthropics/claude-plugins-official](https://github.com/anthropics/claude-plugins-official) | 公式プラグインマーケットプレイス |
|
|
158
|
-
| [punkpeye/awesome-mcp-servers](https://github.com/punkpeye/awesome-mcp-servers) | MCPサーバーのキュレーションリスト |
|
|
159
|
-
| [hesreallyhim/awesome-claude-code](https://github.com/hesreallyhim/awesome-claude-code) | スキル/ワークフロー/フックのリスト |
|
|
156
|
+
| [anthropics/claude-plugins-official](https://github.com/anthropics/claude-plugins-official) | 公式プラグインマーケットプレイス | 日次 |
|
|
157
|
+
| [punkpeye/awesome-mcp-servers](https://github.com/punkpeye/awesome-mcp-servers) | MCPサーバーのキュレーションリスト | 日次 |
|
|
158
|
+
| [hesreallyhim/awesome-claude-code](https://github.com/hesreallyhim/awesome-claude-code) | スキル/ワークフロー/フックのリスト | 日次 |
|
|
160
159
|
|
|
161
160
|
### 自動更新機能
|
|
162
161
|
|
|
@@ -187,8 +186,11 @@ Claude: [search_skills ツールを使用]
|
|
|
187
186
|
| 変数 | 説明 | デフォルト |
|
|
188
187
|
|------|------|-----------|
|
|
189
188
|
| `CC_RECOMMENDER_OFFLINE_MODE` | 自動更新を無効化してバンドル版データのみを使用 | `false` |
|
|
189
|
+
| `GITHUB_TOKEN` | GitHub パーソナルアクセストークン(API レート制限を 60 → 5000 req/hour に拡大) | 未設定 |
|
|
190
190
|
| `SKIP_SECURITY_SCAN` | データ取得時にセキュリティスキャンをスキップ(開発者向け) | `false` |
|
|
191
191
|
|
|
192
|
+
**注意:** GitHub から公式スキル(Anthropic、Supabase など)を取得する場合、レート制限を回避するために GitHub トークンの設定を推奨します。https://github.com/settings/tokens で `public_repo` スコープのトークンを作成してください。
|
|
193
|
+
|
|
192
194
|
## 開発
|
|
193
195
|
|
|
194
196
|
開発セットアップと貢献ガイドラインについては、以下を参照してください:
|
package/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# cc-recommender
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/cc-recommender)
|
|
4
|
-
[](https://www.npmjs.com/package/cc-recommender)
|
|
5
4
|
[](https://github.com/yuji0809/cc-recommender/actions/workflows/ci.yml)
|
|
6
5
|
[](https://codecov.io/gh/yuji0809/cc-recommender)
|
|
7
6
|
[](https://opensource.org/licenses/MIT)
|
|
@@ -154,9 +153,9 @@ This MCP server aggregates data from the following sources:
|
|
|
154
153
|
|
|
155
154
|
| Source | Content | Update Frequency |
|
|
156
155
|
|--------|---------|------------------|
|
|
157
|
-
| [anthropics/claude-plugins-official](https://github.com/anthropics/claude-plugins-official) | Official plugin marketplace |
|
|
158
|
-
| [punkpeye/awesome-mcp-servers](https://github.com/punkpeye/awesome-mcp-servers) | Curated list of MCP servers |
|
|
159
|
-
| [hesreallyhim/awesome-claude-code](https://github.com/hesreallyhim/awesome-claude-code) | List of skills/workflows/hooks |
|
|
156
|
+
| [anthropics/claude-plugins-official](https://github.com/anthropics/claude-plugins-official) | Official plugin marketplace | Daily |
|
|
157
|
+
| [punkpeye/awesome-mcp-servers](https://github.com/punkpeye/awesome-mcp-servers) | Curated list of MCP servers | Daily |
|
|
158
|
+
| [hesreallyhim/awesome-claude-code](https://github.com/hesreallyhim/awesome-claude-code) | List of skills/workflows/hooks | Daily |
|
|
160
159
|
|
|
161
160
|
### Auto-Update Feature
|
|
162
161
|
|
|
@@ -187,8 +186,11 @@ When `CC_RECOMMENDER_OFFLINE_MODE` is enabled, only bundled data is used (no rem
|
|
|
187
186
|
| Variable | Description | Default |
|
|
188
187
|
|----------|-------------|---------|
|
|
189
188
|
| `CC_RECOMMENDER_OFFLINE_MODE` | Disable auto-updates and use only bundled data | `false` |
|
|
189
|
+
| `GITHUB_TOKEN` | GitHub personal access token (increases API rate limit from 60 to 5000 req/hour) | Not set |
|
|
190
190
|
| `SKIP_SECURITY_SCAN` | Skip security scanning during data fetch (for developers) | `false` |
|
|
191
191
|
|
|
192
|
+
**Note:** To fetch official skills from GitHub (Anthropic, Supabase, etc.), a GitHub token is recommended to avoid rate limits. Create a token at https://github.com/settings/tokens with `public_repo` scope.
|
|
193
|
+
|
|
192
194
|
## Development
|
|
193
195
|
|
|
194
196
|
For development setup and contribution guidelines, see:
|