@skillsmith/mcp-server 0.3.3 → 0.3.5
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/README.md +5 -3
- package/dist/.tsbuildinfo +1 -1
- package/dist/src/__tests__/LocalIndexer.test.d.ts +5 -0
- package/dist/src/__tests__/LocalIndexer.test.d.ts.map +1 -0
- package/dist/src/__tests__/LocalIndexer.test.js +396 -0
- package/dist/src/__tests__/LocalIndexer.test.js.map +1 -0
- package/dist/src/__tests__/context.test.d.ts +10 -0
- package/dist/src/__tests__/context.test.d.ts.map +1 -0
- package/dist/src/__tests__/context.test.js +345 -0
- package/dist/src/__tests__/context.test.js.map +1 -0
- package/dist/src/__tests__/get-skill.test.d.ts +1 -0
- package/dist/src/__tests__/get-skill.test.d.ts.map +1 -1
- package/dist/src/__tests__/get-skill.test.js +279 -0
- package/dist/src/__tests__/get-skill.test.js.map +1 -1
- package/dist/src/__tests__/index-local.test.d.ts +5 -0
- package/dist/src/__tests__/index-local.test.d.ts.map +1 -0
- package/dist/src/__tests__/index-local.test.js +203 -0
- package/dist/src/__tests__/index-local.test.js.map +1 -0
- package/dist/src/__tests__/middleware/license.test.js +180 -78
- package/dist/src/__tests__/middleware/license.test.js.map +1 -1
- package/dist/src/__tests__/recommend.test.d.ts +7 -0
- package/dist/src/__tests__/recommend.test.d.ts.map +1 -0
- package/dist/src/__tests__/recommend.test.js +277 -0
- package/dist/src/__tests__/recommend.test.js.map +1 -0
- package/dist/src/__tests__/search.test.js +140 -1
- package/dist/src/__tests__/search.test.js.map +1 -1
- package/dist/src/__tests__/utils/validation.test.d.ts +7 -0
- package/dist/src/__tests__/utils/validation.test.d.ts.map +1 -0
- package/dist/src/__tests__/utils/validation.test.js +82 -0
- package/dist/src/__tests__/utils/validation.test.js.map +1 -0
- package/dist/src/context.d.ts +22 -0
- package/dist/src/context.d.ts.map +1 -1
- package/dist/src/context.js +63 -9
- package/dist/src/context.js.map +1 -1
- package/dist/src/index.js +15 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/indexer/FrontmatterParser.d.ts +30 -0
- package/dist/src/indexer/FrontmatterParser.d.ts.map +1 -0
- package/dist/src/indexer/FrontmatterParser.js +109 -0
- package/dist/src/indexer/FrontmatterParser.js.map +1 -0
- package/dist/src/indexer/LocalIndexer.d.ts +136 -0
- package/dist/src/indexer/LocalIndexer.d.ts.map +1 -0
- package/dist/src/indexer/LocalIndexer.js +271 -0
- package/dist/src/indexer/LocalIndexer.js.map +1 -0
- package/dist/src/indexer/index.d.ts +8 -0
- package/dist/src/indexer/index.d.ts.map +1 -0
- package/dist/src/indexer/index.js +8 -0
- package/dist/src/indexer/index.js.map +1 -0
- package/dist/src/llm/failover.d.ts +210 -0
- package/dist/src/llm/failover.d.ts.map +1 -0
- package/dist/src/llm/failover.js +329 -0
- package/dist/src/llm/failover.js.map +1 -0
- package/dist/src/middleware/errorFormatter.d.ts +27 -0
- package/dist/src/middleware/errorFormatter.d.ts.map +1 -1
- package/dist/src/middleware/errorFormatter.js +95 -0
- package/dist/src/middleware/errorFormatter.js.map +1 -1
- package/dist/src/middleware/index.d.ts +1 -1
- package/dist/src/middleware/index.d.ts.map +1 -1
- package/dist/src/middleware/index.js.map +1 -1
- package/dist/src/middleware/license.d.ts +5 -0
- package/dist/src/middleware/license.d.ts.map +1 -1
- package/dist/src/middleware/license.js +2 -1
- package/dist/src/middleware/license.js.map +1 -1
- package/dist/src/middleware/quota-helpers.d.ts +40 -0
- package/dist/src/middleware/quota-helpers.d.ts.map +1 -0
- package/dist/src/middleware/quota-helpers.js +90 -0
- package/dist/src/middleware/quota-helpers.js.map +1 -0
- package/dist/src/middleware/quota-types.d.ts +105 -0
- package/dist/src/middleware/quota-types.d.ts.map +1 -0
- package/dist/src/middleware/quota-types.js +4 -0
- package/dist/src/middleware/quota-types.js.map +1 -0
- package/dist/src/middleware/quota.d.ts +3 -97
- package/dist/src/middleware/quota.d.ts.map +1 -1
- package/dist/src/middleware/quota.js +2 -87
- package/dist/src/middleware/quota.js.map +1 -1
- package/dist/src/tools/LocalSkillSearch.d.ts +32 -0
- package/dist/src/tools/LocalSkillSearch.d.ts.map +1 -0
- package/dist/src/tools/LocalSkillSearch.js +74 -0
- package/dist/src/tools/LocalSkillSearch.js.map +1 -0
- package/dist/src/tools/compare.d.ts +3 -102
- package/dist/src/tools/compare.d.ts.map +1 -1
- package/dist/src/tools/compare.helpers.d.ts +36 -0
- package/dist/src/tools/compare.helpers.d.ts.map +1 -0
- package/dist/src/tools/compare.helpers.js +252 -0
- package/dist/src/tools/compare.helpers.js.map +1 -0
- package/dist/src/tools/compare.js +6 -288
- package/dist/src/tools/compare.js.map +1 -1
- package/dist/src/tools/compare.types.d.ts +134 -0
- package/dist/src/tools/compare.types.d.ts.map +1 -0
- package/dist/src/tools/compare.types.js +47 -0
- package/dist/src/tools/compare.types.js.map +1 -0
- package/dist/src/tools/get-skill.d.ts.map +1 -1
- package/dist/src/tools/get-skill.js +38 -2
- package/dist/src/tools/get-skill.js.map +1 -1
- package/dist/src/tools/index-local.d.ts +117 -0
- package/dist/src/tools/index-local.d.ts.map +1 -0
- package/dist/src/tools/index-local.js +126 -0
- package/dist/src/tools/index-local.js.map +1 -0
- package/dist/src/tools/index.d.ts +2 -0
- package/dist/src/tools/index.d.ts.map +1 -1
- package/dist/src/tools/index.js +2 -0
- package/dist/src/tools/index.js.map +1 -1
- package/dist/src/tools/install.conflict-helpers.d.ts +64 -0
- package/dist/src/tools/install.conflict-helpers.d.ts.map +1 -0
- package/dist/src/tools/install.conflict-helpers.js +165 -0
- package/dist/src/tools/install.conflict-helpers.js.map +1 -0
- package/dist/src/tools/install.conflict-helpers.test.d.ts +15 -0
- package/dist/src/tools/install.conflict-helpers.test.d.ts.map +1 -0
- package/dist/src/tools/install.conflict-helpers.test.js +243 -0
- package/dist/src/tools/install.conflict-helpers.test.js.map +1 -0
- package/dist/src/tools/install.conflict.d.ts +58 -0
- package/dist/src/tools/install.conflict.d.ts.map +1 -0
- package/dist/src/tools/install.conflict.js +160 -0
- package/dist/src/tools/install.conflict.js.map +1 -0
- package/dist/src/tools/install.conflict.test.d.ts +15 -0
- package/dist/src/tools/install.conflict.test.d.ts.map +1 -0
- package/dist/src/tools/install.conflict.test.js +354 -0
- package/dist/src/tools/install.conflict.test.js.map +1 -0
- package/dist/src/tools/install.d.ts +11 -60
- package/dist/src/tools/install.d.ts.map +1 -1
- package/dist/src/tools/install.helpers.d.ts +83 -0
- package/dist/src/tools/install.helpers.d.ts.map +1 -0
- package/dist/src/tools/install.helpers.js +333 -0
- package/dist/src/tools/install.helpers.js.map +1 -0
- package/dist/src/tools/install.js +199 -255
- package/dist/src/tools/install.js.map +1 -1
- package/dist/src/tools/install.types.d.ts +178 -0
- package/dist/src/tools/install.types.d.ts.map +1 -0
- package/dist/src/tools/install.types.js +105 -0
- package/dist/src/tools/install.types.js.map +1 -0
- package/dist/src/tools/merge.d.ts +53 -0
- package/dist/src/tools/merge.d.ts.map +1 -0
- package/dist/src/tools/merge.js +276 -0
- package/dist/src/tools/merge.js.map +1 -0
- package/dist/src/tools/merge.test.d.ts +11 -0
- package/dist/src/tools/merge.test.d.ts.map +1 -0
- package/dist/src/tools/merge.test.js +224 -0
- package/dist/src/tools/merge.test.js.map +1 -0
- package/dist/src/tools/recommend.d.ts +3 -148
- package/dist/src/tools/recommend.d.ts.map +1 -1
- package/dist/src/tools/recommend.helpers.d.ts +42 -0
- package/dist/src/tools/recommend.helpers.d.ts.map +1 -0
- package/dist/src/tools/recommend.helpers.js +155 -0
- package/dist/src/tools/recommend.helpers.js.map +1 -0
- package/dist/src/tools/recommend.js +216 -154
- package/dist/src/tools/recommend.js.map +1 -1
- package/dist/src/tools/recommend.types.d.ts +164 -0
- package/dist/src/tools/recommend.types.d.ts.map +1 -0
- package/dist/src/tools/recommend.types.js +87 -0
- package/dist/src/tools/recommend.types.js.map +1 -0
- package/dist/src/tools/search.d.ts +18 -4
- package/dist/src/tools/search.d.ts.map +1 -1
- package/dist/src/tools/search.js +91 -16
- package/dist/src/tools/search.js.map +1 -1
- package/dist/src/tools/validate.d.ts +3 -70
- package/dist/src/tools/validate.d.ts.map +1 -1
- package/dist/src/tools/validate.helpers.d.ts +22 -0
- package/dist/src/tools/validate.helpers.d.ts.map +1 -0
- package/dist/src/tools/validate.helpers.js +276 -0
- package/dist/src/tools/validate.helpers.js.map +1 -0
- package/dist/src/tools/validate.js +4 -337
- package/dist/src/tools/validate.js.map +1 -1
- package/dist/src/tools/validate.types.d.ts +96 -0
- package/dist/src/tools/validate.types.d.ts.map +1 -0
- package/dist/src/tools/validate.types.js +71 -0
- package/dist/src/tools/validate.types.js.map +1 -0
- package/dist/src/utils/validation.d.ts +6 -2
- package/dist/src/utils/validation.d.ts.map +1 -1
- package/dist/src/utils/validation.js +11 -2
- package/dist/src/utils/validation.js.map +1 -1
- package/dist/src/webhooks/index.d.ts +1 -0
- package/dist/src/webhooks/index.d.ts.map +1 -1
- package/dist/src/webhooks/index.js +2 -0
- package/dist/src/webhooks/index.js.map +1 -1
- package/dist/src/webhooks/stripe-webhook-endpoint.d.ts +68 -0
- package/dist/src/webhooks/stripe-webhook-endpoint.d.ts.map +1 -0
- package/dist/src/webhooks/stripe-webhook-endpoint.js +213 -0
- package/dist/src/webhooks/stripe-webhook-endpoint.js.map +1 -0
- package/dist/src/webhooks/webhook-endpoint.d.ts +4 -49
- package/dist/src/webhooks/webhook-endpoint.d.ts.map +1 -1
- package/dist/src/webhooks/webhook-endpoint.js +3 -125
- package/dist/src/webhooks/webhook-endpoint.js.map +1 -1
- package/dist/src/webhooks/webhook-helpers.d.ts +69 -0
- package/dist/src/webhooks/webhook-helpers.d.ts.map +1 -0
- package/dist/src/webhooks/webhook-helpers.js +146 -0
- package/dist/src/webhooks/webhook-helpers.js.map +1 -0
- package/dist/tests/e2e/conflict-resolution.e2e.test.d.ts +12 -0
- package/dist/tests/e2e/conflict-resolution.e2e.test.d.ts.map +1 -0
- package/dist/tests/e2e/conflict-resolution.e2e.test.js +343 -0
- package/dist/tests/e2e/conflict-resolution.e2e.test.js.map +1 -0
- package/dist/tests/integration/fixtures/development-skills.d.ts +22 -0
- package/dist/tests/integration/fixtures/development-skills.d.ts.map +1 -0
- package/dist/tests/integration/fixtures/development-skills.js +165 -0
- package/dist/tests/integration/fixtures/development-skills.js.map +1 -0
- package/dist/tests/integration/fixtures/devops-skills.d.ts +10 -0
- package/dist/tests/integration/fixtures/devops-skills.d.ts.map +1 -0
- package/dist/tests/integration/fixtures/devops-skills.js +70 -0
- package/dist/tests/integration/fixtures/devops-skills.js.map +1 -0
- package/dist/tests/integration/fixtures/experimental-skills.d.ts +14 -0
- package/dist/tests/integration/fixtures/experimental-skills.d.ts.map +1 -0
- package/dist/tests/integration/fixtures/experimental-skills.js +255 -0
- package/dist/tests/integration/fixtures/experimental-skills.js.map +1 -0
- package/dist/tests/integration/fixtures/skill-types.d.ts +18 -0
- package/dist/tests/integration/fixtures/skill-types.d.ts.map +1 -0
- package/dist/tests/integration/fixtures/skill-types.js +6 -0
- package/dist/tests/integration/fixtures/skill-types.js.map +1 -0
- package/dist/tests/integration/fixtures/test-skills.d.ts +10 -14
- package/dist/tests/integration/fixtures/test-skills.d.ts.map +1 -1
- package/dist/tests/integration/fixtures/test-skills.js +23 -590
- package/dist/tests/integration/fixtures/test-skills.js.map +1 -1
- package/dist/tests/integration/fixtures/testing-skills.d.ts +10 -0
- package/dist/tests/integration/fixtures/testing-skills.d.ts.map +1 -0
- package/dist/tests/integration/fixtures/testing-skills.js +70 -0
- package/dist/tests/integration/fixtures/testing-skills.js.map +1 -0
- package/dist/tests/integration/fixtures/verified-skills.d.ts +11 -0
- package/dist/tests/integration/fixtures/verified-skills.d.ts.map +1 -0
- package/dist/tests/integration/fixtures/verified-skills.js +91 -0
- package/dist/tests/integration/fixtures/verified-skills.js.map +1 -0
- package/dist/tests/integration/install-conflict.integration.test.d.ts +8 -0
- package/dist/tests/integration/install-conflict.integration.test.d.ts.map +1 -0
- package/dist/tests/integration/install-conflict.integration.test.js +384 -0
- package/dist/tests/integration/install-conflict.integration.test.js.map +1 -0
- package/dist/tests/integration/install-trust-parsing.integration.test.d.ts +13 -0
- package/dist/tests/integration/install-trust-parsing.integration.test.d.ts.map +1 -0
- package/dist/tests/integration/install-trust-parsing.integration.test.js +290 -0
- package/dist/tests/integration/install-trust-parsing.integration.test.js.map +1 -0
- package/dist/tests/integration/install.integration.test.js +151 -1
- package/dist/tests/integration/install.integration.test.js.map +1 -1
- package/dist/tests/integration/recommend.integration.test.js +2 -1
- package/dist/tests/integration/recommend.integration.test.js.map +1 -1
- package/dist/tests/llm/failover.test.d.ts +13 -0
- package/dist/tests/llm/failover.test.d.ts.map +1 -0
- package/dist/tests/llm/failover.test.js +250 -0
- package/dist/tests/llm/failover.test.js.map +1 -0
- package/dist/tests/recommend.test.js +133 -1
- package/dist/tests/recommend.test.js.map +1 -1
- package/dist/tests/tools.test.d.ts +1 -0
- package/dist/tests/tools.test.d.ts.map +1 -1
- package/dist/tests/tools.test.js +59 -1
- package/dist/tests/tools.test.js.map +1 -1
- package/dist/tests/unit/compare-helpers.test.d.ts +8 -0
- package/dist/tests/unit/compare-helpers.test.d.ts.map +1 -0
- package/dist/tests/unit/compare-helpers.test.js +224 -0
- package/dist/tests/unit/compare-helpers.test.js.map +1 -0
- package/dist/tests/unit/install-helpers.test.d.ts +8 -0
- package/dist/tests/unit/install-helpers.test.d.ts.map +1 -0
- package/dist/tests/unit/install-helpers.test.js +460 -0
- package/dist/tests/unit/install-helpers.test.js.map +1 -0
- package/dist/tests/unit/recommend-helpers.test.d.ts +8 -0
- package/dist/tests/unit/recommend-helpers.test.d.ts.map +1 -0
- package/dist/tests/unit/recommend-helpers.test.js +117 -0
- package/dist/tests/unit/recommend-helpers.test.js.map +1 -0
- package/dist/tests/unit/validate-helpers.test.d.ts +8 -0
- package/dist/tests/unit/validate-helpers.test.d.ts.map +1 -0
- package/dist/tests/unit/validate-helpers.test.js +243 -0
- package/dist/tests/unit/validate-helpers.test.js.map +1 -0
- package/package.json +7 -6
- package/src/assets/docs/USER_GUIDE.md +0 -220
- package/src/assets/skills/skillsmith/docs/QUOTAS.md +0 -182
- package/src/assets/skills/skillsmith/docs/SECURITY.md +0 -174
- package/src/assets/skills/skillsmith/docs/TRUST_TIERS.md +0 -142
|
@@ -1,7 +1,21 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* SMI-903: Comprehensive test skill fixtures
|
|
3
3
|
* Provides 50+ skills across all categories and trust tiers for realistic testing
|
|
4
|
+
*
|
|
5
|
+
* This file aggregates skills from category-specific modules for backwards
|
|
6
|
+
* compatibility with existing tests.
|
|
4
7
|
*/
|
|
8
|
+
import { VERIFIED_SKILLS } from './verified-skills.js';
|
|
9
|
+
import { TESTING_SKILLS } from './testing-skills.js';
|
|
10
|
+
import { DEVOPS_SKILLS } from './devops-skills.js';
|
|
11
|
+
import { DEVELOPMENT_SKILLS, DOCUMENTATION_SKILLS, DATABASE_SKILLS, OVERLAP_DETECTION_SKILLS, } from './development-skills.js';
|
|
12
|
+
import { EXPERIMENTAL_SKILLS, UNKNOWN_SKILLS } from './experimental-skills.js';
|
|
13
|
+
// Re-export category-specific arrays
|
|
14
|
+
export { VERIFIED_SKILLS } from './verified-skills.js';
|
|
15
|
+
export { TESTING_SKILLS } from './testing-skills.js';
|
|
16
|
+
export { DEVOPS_SKILLS } from './devops-skills.js';
|
|
17
|
+
export { DEVELOPMENT_SKILLS, DOCUMENTATION_SKILLS, DATABASE_SKILLS, OVERLAP_DETECTION_SKILLS, } from './development-skills.js';
|
|
18
|
+
export { EXPERIMENTAL_SKILLS, UNKNOWN_SKILLS } from './experimental-skills.js';
|
|
5
19
|
/**
|
|
6
20
|
* Comprehensive test skills covering all categories and trust tiers
|
|
7
21
|
* Total: 58 skills (updated for SMI-907)
|
|
@@ -9,596 +23,15 @@
|
|
|
9
23
|
* - Trust tiers: verified (8), community (26), experimental (16), unknown (8)
|
|
10
24
|
*/
|
|
11
25
|
export const TEST_SKILLS = [
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
trustTier: 'verified',
|
|
22
|
-
tags: ['git', 'commit', 'conventional-commits', 'automation', 'development'],
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
id: 'anthropic/review-pr',
|
|
26
|
-
name: 'review-pr',
|
|
27
|
-
description: 'Review pull requests with detailed code analysis and security checks',
|
|
28
|
-
author: 'anthropic',
|
|
29
|
-
repoUrl: 'https://github.com/anthropics/claude-code-skills/review-pr',
|
|
30
|
-
qualityScore: 0.93,
|
|
31
|
-
trustTier: 'verified',
|
|
32
|
-
tags: ['git', 'pull-request', 'code-review', 'quality', 'development'],
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
id: 'anthropic/debug',
|
|
36
|
-
name: 'debug',
|
|
37
|
-
description: 'Advanced debugging assistance with stack trace analysis and fix suggestions',
|
|
38
|
-
author: 'anthropic',
|
|
39
|
-
repoUrl: 'https://github.com/anthropics/claude-code-skills/debug',
|
|
40
|
-
qualityScore: 0.91,
|
|
41
|
-
trustTier: 'verified',
|
|
42
|
-
tags: ['debugging', 'error-handling', 'troubleshooting', 'development'],
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
id: 'anthropic/refactor',
|
|
46
|
-
name: 'refactor',
|
|
47
|
-
description: 'Intelligent code refactoring with pattern detection and best practices',
|
|
48
|
-
author: 'anthropic',
|
|
49
|
-
repoUrl: 'https://github.com/anthropics/claude-code-skills/refactor',
|
|
50
|
-
qualityScore: 0.9,
|
|
51
|
-
trustTier: 'verified',
|
|
52
|
-
tags: ['refactoring', 'code-quality', 'patterns', 'development'],
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
id: 'anthropic/explain',
|
|
56
|
-
name: 'explain',
|
|
57
|
-
description: 'Explain complex code with detailed documentation and examples',
|
|
58
|
-
author: 'anthropic',
|
|
59
|
-
repoUrl: 'https://github.com/anthropics/claude-code-skills/explain',
|
|
60
|
-
qualityScore: 0.92,
|
|
61
|
-
trustTier: 'verified',
|
|
62
|
-
tags: ['documentation', 'explanation', 'learning', 'education'],
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
id: 'anthropic/security-audit',
|
|
66
|
-
name: 'security-audit',
|
|
67
|
-
description: 'Comprehensive security auditing for vulnerabilities and best practices',
|
|
68
|
-
author: 'anthropic',
|
|
69
|
-
repoUrl: 'https://github.com/anthropics/claude-code-skills/security-audit',
|
|
70
|
-
qualityScore: 0.94,
|
|
71
|
-
trustTier: 'verified',
|
|
72
|
-
tags: ['security', 'audit', 'vulnerabilities', 'owasp', 'security'],
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
id: 'anthropic/test-gen',
|
|
76
|
-
name: 'test-gen',
|
|
77
|
-
description: 'Generate comprehensive test suites with high coverage',
|
|
78
|
-
author: 'anthropic',
|
|
79
|
-
repoUrl: 'https://github.com/anthropics/claude-code-skills/test-gen',
|
|
80
|
-
qualityScore: 0.89,
|
|
81
|
-
trustTier: 'verified',
|
|
82
|
-
tags: ['testing', 'test-generation', 'coverage', 'testing'],
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
id: 'anthropic/perf-optimize',
|
|
86
|
-
name: 'perf-optimize',
|
|
87
|
-
description: 'Performance optimization with profiling and bottleneck detection',
|
|
88
|
-
author: 'anthropic',
|
|
89
|
-
repoUrl: 'https://github.com/anthropics/claude-code-skills/perf-optimize',
|
|
90
|
-
qualityScore: 0.88,
|
|
91
|
-
trustTier: 'verified',
|
|
92
|
-
tags: ['performance', 'optimization', 'profiling', 'development'],
|
|
93
|
-
},
|
|
94
|
-
// ============ COMMUNITY SKILLS - TESTING (6) ============
|
|
95
|
-
{
|
|
96
|
-
id: 'community/jest-helper',
|
|
97
|
-
name: 'jest-helper',
|
|
98
|
-
description: 'Generate Jest test cases for React components with comprehensive coverage',
|
|
99
|
-
author: 'community',
|
|
100
|
-
repoUrl: 'https://github.com/skillsmith-community/jest-helper',
|
|
101
|
-
qualityScore: 0.87,
|
|
102
|
-
trustTier: 'community',
|
|
103
|
-
tags: ['jest', 'testing', 'react', 'unit-tests', 'testing'],
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
id: 'community/vitest-helper',
|
|
107
|
-
name: 'vitest-helper',
|
|
108
|
-
description: 'Generate Vitest test cases with modern testing patterns',
|
|
109
|
-
author: 'community',
|
|
110
|
-
repoUrl: 'https://github.com/skillsmith-community/vitest-helper',
|
|
111
|
-
qualityScore: 0.85,
|
|
112
|
-
trustTier: 'community',
|
|
113
|
-
tags: ['vitest', 'testing', 'typescript', 'unit-tests', 'testing'],
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
id: 'community/playwright-e2e',
|
|
117
|
-
name: 'playwright-e2e',
|
|
118
|
-
description: 'End-to-end testing with Playwright for web applications',
|
|
119
|
-
author: 'community',
|
|
120
|
-
repoUrl: 'https://github.com/skillsmith-community/playwright-e2e',
|
|
121
|
-
qualityScore: 0.84,
|
|
122
|
-
trustTier: 'community',
|
|
123
|
-
tags: ['playwright', 'e2e', 'testing', 'browser', 'testing'],
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
id: 'community/cypress-helper',
|
|
127
|
-
name: 'cypress-helper',
|
|
128
|
-
description: 'Cypress test generation and best practices for web testing',
|
|
129
|
-
author: 'community',
|
|
130
|
-
repoUrl: 'https://github.com/skillsmith-community/cypress-helper',
|
|
131
|
-
qualityScore: 0.82,
|
|
132
|
-
trustTier: 'community',
|
|
133
|
-
tags: ['cypress', 'e2e', 'testing', 'web', 'testing'],
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
id: 'community/mocha-chai',
|
|
137
|
-
name: 'mocha-chai',
|
|
138
|
-
description: 'Mocha and Chai test generation for Node.js applications',
|
|
139
|
-
author: 'community',
|
|
140
|
-
repoUrl: 'https://github.com/skillsmith-community/mocha-chai',
|
|
141
|
-
qualityScore: 0.78,
|
|
142
|
-
trustTier: 'community',
|
|
143
|
-
tags: ['mocha', 'chai', 'testing', 'nodejs', 'testing'],
|
|
144
|
-
},
|
|
145
|
-
{
|
|
146
|
-
id: 'community/testing-library',
|
|
147
|
-
name: 'testing-library',
|
|
148
|
-
description: 'React Testing Library patterns and component testing',
|
|
149
|
-
author: 'community',
|
|
150
|
-
repoUrl: 'https://github.com/skillsmith-community/testing-library',
|
|
151
|
-
qualityScore: 0.86,
|
|
152
|
-
trustTier: 'community',
|
|
153
|
-
tags: ['testing-library', 'react', 'testing', 'components', 'testing'],
|
|
154
|
-
},
|
|
155
|
-
// ============ COMMUNITY SKILLS - DEVOPS (6) ============
|
|
156
|
-
{
|
|
157
|
-
id: 'community/docker-compose',
|
|
158
|
-
name: 'docker-compose',
|
|
159
|
-
description: 'Generate and manage Docker Compose configurations for development',
|
|
160
|
-
author: 'community',
|
|
161
|
-
repoUrl: 'https://github.com/skillsmith-community/docker-compose',
|
|
162
|
-
qualityScore: 0.84,
|
|
163
|
-
trustTier: 'community',
|
|
164
|
-
tags: ['docker', 'devops', 'containers', 'compose', 'devops'],
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
id: 'community/kubernetes-helper',
|
|
168
|
-
name: 'kubernetes-helper',
|
|
169
|
-
description: 'Kubernetes manifest generation and cluster management',
|
|
170
|
-
author: 'community',
|
|
171
|
-
repoUrl: 'https://github.com/skillsmith-community/kubernetes-helper',
|
|
172
|
-
qualityScore: 0.81,
|
|
173
|
-
trustTier: 'community',
|
|
174
|
-
tags: ['kubernetes', 'k8s', 'devops', 'containers', 'devops'],
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
id: 'community/github-actions',
|
|
178
|
-
name: 'github-actions',
|
|
179
|
-
description: 'GitHub Actions workflow generation and CI/CD pipelines',
|
|
180
|
-
author: 'community',
|
|
181
|
-
repoUrl: 'https://github.com/skillsmith-community/github-actions',
|
|
182
|
-
qualityScore: 0.86,
|
|
183
|
-
trustTier: 'community',
|
|
184
|
-
tags: ['github-actions', 'ci-cd', 'automation', 'devops', 'devops'],
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
id: 'community/terraform-helper',
|
|
188
|
-
name: 'terraform-helper',
|
|
189
|
-
description: 'Terraform infrastructure as code generation and best practices',
|
|
190
|
-
author: 'community',
|
|
191
|
-
repoUrl: 'https://github.com/skillsmith-community/terraform-helper',
|
|
192
|
-
qualityScore: 0.79,
|
|
193
|
-
trustTier: 'community',
|
|
194
|
-
tags: ['terraform', 'iac', 'infrastructure', 'cloud', 'devops'],
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
id: 'community/nginx-config',
|
|
198
|
-
name: 'nginx-config',
|
|
199
|
-
description: 'Nginx configuration generation for web servers and proxies',
|
|
200
|
-
author: 'community',
|
|
201
|
-
repoUrl: 'https://github.com/skillsmith-community/nginx-config',
|
|
202
|
-
qualityScore: 0.75,
|
|
203
|
-
trustTier: 'community',
|
|
204
|
-
tags: ['nginx', 'webserver', 'proxy', 'devops', 'devops'],
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
id: 'community/aws-helper',
|
|
208
|
-
name: 'aws-helper',
|
|
209
|
-
description: 'AWS service configuration and CloudFormation templates',
|
|
210
|
-
author: 'community',
|
|
211
|
-
repoUrl: 'https://github.com/skillsmith-community/aws-helper',
|
|
212
|
-
qualityScore: 0.8,
|
|
213
|
-
trustTier: 'community',
|
|
214
|
-
tags: ['aws', 'cloud', 'cloudformation', 'infrastructure', 'devops'],
|
|
215
|
-
},
|
|
216
|
-
// ============ COMMUNITY SKILLS - DEVELOPMENT (6) ============
|
|
217
|
-
{
|
|
218
|
-
id: 'community/typescript-helper',
|
|
219
|
-
name: 'typescript-helper',
|
|
220
|
-
description: 'TypeScript development utilities for type generation and refactoring',
|
|
221
|
-
author: 'community',
|
|
222
|
-
repoUrl: 'https://github.com/skillsmith-community/typescript-helper',
|
|
223
|
-
qualityScore: 0.83,
|
|
224
|
-
trustTier: 'community',
|
|
225
|
-
tags: ['typescript', 'development', 'types', 'development'],
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
id: 'community/react-patterns',
|
|
229
|
-
name: 'react-patterns',
|
|
230
|
-
description: 'React component patterns and hooks best practices',
|
|
231
|
-
author: 'community',
|
|
232
|
-
repoUrl: 'https://github.com/skillsmith-community/react-patterns',
|
|
233
|
-
qualityScore: 0.85,
|
|
234
|
-
trustTier: 'community',
|
|
235
|
-
tags: ['react', 'patterns', 'hooks', 'frontend', 'development'],
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
id: 'community/nextjs-helper',
|
|
239
|
-
name: 'nextjs-helper',
|
|
240
|
-
description: 'Next.js application development with App Router and Server Components',
|
|
241
|
-
author: 'community',
|
|
242
|
-
repoUrl: 'https://github.com/skillsmith-community/nextjs-helper',
|
|
243
|
-
qualityScore: 0.84,
|
|
244
|
-
trustTier: 'community',
|
|
245
|
-
tags: ['nextjs', 'react', 'ssr', 'frontend', 'development'],
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
id: 'community/nodejs-helper',
|
|
249
|
-
name: 'nodejs-helper',
|
|
250
|
-
description: 'Node.js backend development patterns and utilities',
|
|
251
|
-
author: 'community',
|
|
252
|
-
repoUrl: 'https://github.com/skillsmith-community/nodejs-helper',
|
|
253
|
-
qualityScore: 0.82,
|
|
254
|
-
trustTier: 'community',
|
|
255
|
-
tags: ['nodejs', 'backend', 'express', 'api', 'development'],
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
id: 'community/python-helper',
|
|
259
|
-
name: 'python-helper',
|
|
260
|
-
description: 'Python development utilities and best practices',
|
|
261
|
-
author: 'community',
|
|
262
|
-
repoUrl: 'https://github.com/skillsmith-community/python-helper',
|
|
263
|
-
qualityScore: 0.81,
|
|
264
|
-
trustTier: 'community',
|
|
265
|
-
tags: ['python', 'development', 'scripting', 'development'],
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
id: 'community/rust-helper',
|
|
269
|
-
name: 'rust-helper',
|
|
270
|
-
description: 'Rust development patterns and memory safety guidance',
|
|
271
|
-
author: 'community',
|
|
272
|
-
repoUrl: 'https://github.com/skillsmith-community/rust-helper',
|
|
273
|
-
qualityScore: 0.77,
|
|
274
|
-
trustTier: 'community',
|
|
275
|
-
tags: ['rust', 'systems', 'memory-safety', 'development'],
|
|
276
|
-
},
|
|
277
|
-
// ============ COMMUNITY SKILLS - DOCUMENTATION (3) ============
|
|
278
|
-
{
|
|
279
|
-
id: 'community/api-docs',
|
|
280
|
-
name: 'api-docs',
|
|
281
|
-
description: 'Generate OpenAPI documentation from code with automatic schema detection',
|
|
282
|
-
author: 'community',
|
|
283
|
-
repoUrl: 'https://github.com/skillsmith-community/api-docs',
|
|
284
|
-
qualityScore: 0.78,
|
|
285
|
-
trustTier: 'community',
|
|
286
|
-
tags: ['openapi', 'documentation', 'api', 'swagger', 'documentation'],
|
|
287
|
-
},
|
|
288
|
-
{
|
|
289
|
-
id: 'community/readme-gen',
|
|
290
|
-
name: 'readme-gen',
|
|
291
|
-
description: 'Generate comprehensive README files from project analysis',
|
|
292
|
-
author: 'community',
|
|
293
|
-
repoUrl: 'https://github.com/skillsmith-community/readme-gen',
|
|
294
|
-
qualityScore: 0.76,
|
|
295
|
-
trustTier: 'community',
|
|
296
|
-
tags: ['readme', 'documentation', 'markdown', 'documentation'],
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
id: 'community/jsdoc-helper',
|
|
300
|
-
name: 'jsdoc-helper',
|
|
301
|
-
description: 'JSDoc documentation generation for JavaScript and TypeScript',
|
|
302
|
-
author: 'community',
|
|
303
|
-
repoUrl: 'https://github.com/skillsmith-community/jsdoc-helper',
|
|
304
|
-
qualityScore: 0.74,
|
|
305
|
-
trustTier: 'community',
|
|
306
|
-
tags: ['jsdoc', 'documentation', 'typescript', 'javascript', 'documentation'],
|
|
307
|
-
},
|
|
308
|
-
// ============ COMMUNITY SKILLS - DATABASE (3) ============
|
|
309
|
-
{
|
|
310
|
-
id: 'community/prisma-helper',
|
|
311
|
-
name: 'prisma-helper',
|
|
312
|
-
description: 'Prisma schema design and database migrations',
|
|
313
|
-
author: 'community',
|
|
314
|
-
repoUrl: 'https://github.com/skillsmith-community/prisma-helper',
|
|
315
|
-
qualityScore: 0.83,
|
|
316
|
-
trustTier: 'community',
|
|
317
|
-
tags: ['prisma', 'database', 'orm', 'migrations', 'database'],
|
|
318
|
-
},
|
|
319
|
-
{
|
|
320
|
-
id: 'community/sql-helper',
|
|
321
|
-
name: 'sql-helper',
|
|
322
|
-
description: 'SQL query optimization and schema design',
|
|
323
|
-
author: 'community',
|
|
324
|
-
repoUrl: 'https://github.com/skillsmith-community/sql-helper',
|
|
325
|
-
qualityScore: 0.79,
|
|
326
|
-
trustTier: 'community',
|
|
327
|
-
tags: ['sql', 'database', 'queries', 'optimization', 'database'],
|
|
328
|
-
},
|
|
329
|
-
{
|
|
330
|
-
id: 'community/mongodb-helper',
|
|
331
|
-
name: 'mongodb-helper',
|
|
332
|
-
description: 'MongoDB schema design and aggregation pipelines',
|
|
333
|
-
author: 'community',
|
|
334
|
-
repoUrl: 'https://github.com/skillsmith-community/mongodb-helper',
|
|
335
|
-
qualityScore: 0.77,
|
|
336
|
-
trustTier: 'community',
|
|
337
|
-
tags: ['mongodb', 'nosql', 'database', 'aggregation', 'database'],
|
|
338
|
-
},
|
|
339
|
-
// ============ EXPERIMENTAL SKILLS (16) ============
|
|
340
|
-
{
|
|
341
|
-
id: 'experimental/ai-code-review',
|
|
342
|
-
name: 'ai-code-review',
|
|
343
|
-
description: 'AI-powered code review with ML-based pattern detection',
|
|
344
|
-
author: 'experimental',
|
|
345
|
-
repoUrl: 'https://github.com/skillsmith-experimental/ai-code-review',
|
|
346
|
-
qualityScore: 0.72,
|
|
347
|
-
trustTier: 'experimental',
|
|
348
|
-
tags: ['ai', 'code-review', 'ml', 'patterns', 'ai-ml'],
|
|
349
|
-
},
|
|
350
|
-
{
|
|
351
|
-
id: 'experimental/llm-prompt-helper',
|
|
352
|
-
name: 'llm-prompt-helper',
|
|
353
|
-
description: 'LLM prompt engineering and optimization techniques',
|
|
354
|
-
author: 'experimental',
|
|
355
|
-
repoUrl: 'https://github.com/skillsmith-experimental/llm-prompt-helper',
|
|
356
|
-
qualityScore: 0.7,
|
|
357
|
-
trustTier: 'experimental',
|
|
358
|
-
tags: ['llm', 'prompts', 'ai', 'engineering', 'ai-ml'],
|
|
359
|
-
},
|
|
360
|
-
{
|
|
361
|
-
id: 'experimental/embedding-search',
|
|
362
|
-
name: 'embedding-search',
|
|
363
|
-
description: 'Semantic search using embeddings and vector databases',
|
|
364
|
-
author: 'experimental',
|
|
365
|
-
repoUrl: 'https://github.com/skillsmith-experimental/embedding-search',
|
|
366
|
-
qualityScore: 0.68,
|
|
367
|
-
trustTier: 'experimental',
|
|
368
|
-
tags: ['embeddings', 'vector', 'search', 'semantic', 'ai-ml'],
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
id: 'experimental/ml-pipeline',
|
|
372
|
-
name: 'ml-pipeline',
|
|
373
|
-
description: 'Machine learning pipeline setup and training workflows',
|
|
374
|
-
author: 'experimental',
|
|
375
|
-
repoUrl: 'https://github.com/skillsmith-experimental/ml-pipeline',
|
|
376
|
-
qualityScore: 0.65,
|
|
377
|
-
trustTier: 'experimental',
|
|
378
|
-
tags: ['ml', 'pipeline', 'training', 'ai', 'ai-ml'],
|
|
379
|
-
},
|
|
380
|
-
{
|
|
381
|
-
id: 'experimental/graphql-helper',
|
|
382
|
-
name: 'graphql-helper',
|
|
383
|
-
description: 'GraphQL schema design and resolver generation',
|
|
384
|
-
author: 'experimental',
|
|
385
|
-
repoUrl: 'https://github.com/skillsmith-experimental/graphql-helper',
|
|
386
|
-
qualityScore: 0.71,
|
|
387
|
-
trustTier: 'experimental',
|
|
388
|
-
tags: ['graphql', 'api', 'schema', 'resolvers', 'development'],
|
|
389
|
-
},
|
|
390
|
-
{
|
|
391
|
-
id: 'experimental/grpc-helper',
|
|
392
|
-
name: 'grpc-helper',
|
|
393
|
-
description: 'gRPC service definition and protobuf generation',
|
|
394
|
-
author: 'experimental',
|
|
395
|
-
repoUrl: 'https://github.com/skillsmith-experimental/grpc-helper',
|
|
396
|
-
qualityScore: 0.67,
|
|
397
|
-
trustTier: 'experimental',
|
|
398
|
-
tags: ['grpc', 'protobuf', 'api', 'services', 'integration'],
|
|
399
|
-
},
|
|
400
|
-
{
|
|
401
|
-
id: 'experimental/websocket-helper',
|
|
402
|
-
name: 'websocket-helper',
|
|
403
|
-
description: 'WebSocket implementation patterns and real-time communication',
|
|
404
|
-
author: 'experimental',
|
|
405
|
-
repoUrl: 'https://github.com/skillsmith-experimental/websocket-helper',
|
|
406
|
-
qualityScore: 0.69,
|
|
407
|
-
trustTier: 'experimental',
|
|
408
|
-
tags: ['websocket', 'realtime', 'communication', 'integration'],
|
|
409
|
-
},
|
|
410
|
-
{
|
|
411
|
-
id: 'experimental/oauth-helper',
|
|
412
|
-
name: 'oauth-helper',
|
|
413
|
-
description: 'OAuth 2.0 implementation and authentication flows',
|
|
414
|
-
author: 'experimental',
|
|
415
|
-
repoUrl: 'https://github.com/skillsmith-experimental/oauth-helper',
|
|
416
|
-
qualityScore: 0.73,
|
|
417
|
-
trustTier: 'experimental',
|
|
418
|
-
tags: ['oauth', 'authentication', 'security', 'identity', 'security'],
|
|
419
|
-
},
|
|
420
|
-
{
|
|
421
|
-
id: 'experimental/jwt-helper',
|
|
422
|
-
name: 'jwt-helper',
|
|
423
|
-
description: 'JWT token generation and validation patterns',
|
|
424
|
-
author: 'experimental',
|
|
425
|
-
repoUrl: 'https://github.com/skillsmith-experimental/jwt-helper',
|
|
426
|
-
qualityScore: 0.74,
|
|
427
|
-
trustTier: 'experimental',
|
|
428
|
-
tags: ['jwt', 'tokens', 'authentication', 'security', 'security'],
|
|
429
|
-
},
|
|
430
|
-
{
|
|
431
|
-
id: 'experimental/encryption-helper',
|
|
432
|
-
name: 'encryption-helper',
|
|
433
|
-
description: 'Encryption utilities and secure data handling',
|
|
434
|
-
author: 'experimental',
|
|
435
|
-
repoUrl: 'https://github.com/skillsmith-experimental/encryption-helper',
|
|
436
|
-
qualityScore: 0.71,
|
|
437
|
-
trustTier: 'experimental',
|
|
438
|
-
tags: ['encryption', 'security', 'crypto', 'data-protection', 'security'],
|
|
439
|
-
},
|
|
440
|
-
{
|
|
441
|
-
id: 'experimental/monitoring-helper',
|
|
442
|
-
name: 'monitoring-helper',
|
|
443
|
-
description: 'Application monitoring and observability setup',
|
|
444
|
-
author: 'experimental',
|
|
445
|
-
repoUrl: 'https://github.com/skillsmith-experimental/monitoring-helper',
|
|
446
|
-
qualityScore: 0.66,
|
|
447
|
-
trustTier: 'experimental',
|
|
448
|
-
tags: ['monitoring', 'observability', 'metrics', 'logging', 'devops'],
|
|
449
|
-
},
|
|
450
|
-
{
|
|
451
|
-
id: 'experimental/caching-helper',
|
|
452
|
-
name: 'caching-helper',
|
|
453
|
-
description: 'Caching strategies and Redis/Memcached patterns',
|
|
454
|
-
author: 'experimental',
|
|
455
|
-
repoUrl: 'https://github.com/skillsmith-experimental/caching-helper',
|
|
456
|
-
qualityScore: 0.68,
|
|
457
|
-
trustTier: 'experimental',
|
|
458
|
-
tags: ['caching', 'redis', 'performance', 'optimization', 'database'],
|
|
459
|
-
},
|
|
460
|
-
{
|
|
461
|
-
id: 'experimental/queue-helper',
|
|
462
|
-
name: 'queue-helper',
|
|
463
|
-
description: 'Message queue patterns with RabbitMQ and SQS',
|
|
464
|
-
author: 'experimental',
|
|
465
|
-
repoUrl: 'https://github.com/skillsmith-experimental/queue-helper',
|
|
466
|
-
qualityScore: 0.64,
|
|
467
|
-
trustTier: 'experimental',
|
|
468
|
-
tags: ['queues', 'rabbitmq', 'sqs', 'messaging', 'integration'],
|
|
469
|
-
},
|
|
470
|
-
{
|
|
471
|
-
id: 'experimental/microservices-helper',
|
|
472
|
-
name: 'microservices-helper',
|
|
473
|
-
description: 'Microservices architecture patterns and service mesh',
|
|
474
|
-
author: 'experimental',
|
|
475
|
-
repoUrl: 'https://github.com/skillsmith-experimental/microservices-helper',
|
|
476
|
-
qualityScore: 0.63,
|
|
477
|
-
trustTier: 'experimental',
|
|
478
|
-
tags: ['microservices', 'architecture', 'distributed', 'development'],
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
id: 'experimental/event-sourcing',
|
|
482
|
-
name: 'event-sourcing',
|
|
483
|
-
description: 'Event sourcing and CQRS pattern implementation',
|
|
484
|
-
author: 'experimental',
|
|
485
|
-
repoUrl: 'https://github.com/skillsmith-experimental/event-sourcing',
|
|
486
|
-
qualityScore: 0.61,
|
|
487
|
-
trustTier: 'experimental',
|
|
488
|
-
tags: ['event-sourcing', 'cqrs', 'patterns', 'architecture', 'development'],
|
|
489
|
-
},
|
|
490
|
-
{
|
|
491
|
-
id: 'experimental/serverless-helper',
|
|
492
|
-
name: 'serverless-helper',
|
|
493
|
-
description: 'Serverless function development with AWS Lambda and Vercel',
|
|
494
|
-
author: 'experimental',
|
|
495
|
-
repoUrl: 'https://github.com/skillsmith-experimental/serverless-helper',
|
|
496
|
-
qualityScore: 0.7,
|
|
497
|
-
trustTier: 'experimental',
|
|
498
|
-
tags: ['serverless', 'lambda', 'vercel', 'functions', 'devops'],
|
|
499
|
-
},
|
|
500
|
-
// ============ SMI-907: Additional skills for overlap detection testing ============
|
|
501
|
-
{
|
|
502
|
-
id: 'community/docker',
|
|
503
|
-
name: 'docker',
|
|
504
|
-
description: 'Docker container management and Dockerfile generation',
|
|
505
|
-
author: 'community',
|
|
506
|
-
repoUrl: 'https://github.com/skillsmith-community/docker',
|
|
507
|
-
qualityScore: 0.85,
|
|
508
|
-
trustTier: 'community',
|
|
509
|
-
tags: ['docker', 'containers', 'devops', 'devops'],
|
|
510
|
-
},
|
|
511
|
-
{
|
|
512
|
-
id: 'community/git-commit-helper',
|
|
513
|
-
name: 'git-commit-helper',
|
|
514
|
-
description: 'Git commit message generation with conventional commits support',
|
|
515
|
-
author: 'community',
|
|
516
|
-
repoUrl: 'https://github.com/skillsmith-community/git-commit-helper',
|
|
517
|
-
qualityScore: 0.82,
|
|
518
|
-
trustTier: 'community',
|
|
519
|
-
tags: ['git', 'commit', 'conventional-commits', 'development'],
|
|
520
|
-
},
|
|
521
|
-
// ============ UNKNOWN TRUST SKILLS (8) ============
|
|
522
|
-
{
|
|
523
|
-
id: 'user123/custom-linter',
|
|
524
|
-
name: 'custom-linter',
|
|
525
|
-
description: 'Custom ESLint rules for project-specific conventions',
|
|
526
|
-
author: 'user123',
|
|
527
|
-
repoUrl: 'https://github.com/user123/custom-linter',
|
|
528
|
-
qualityScore: 0.55,
|
|
529
|
-
trustTier: 'unknown',
|
|
530
|
-
tags: ['eslint', 'linting', 'code-quality', 'productivity'],
|
|
531
|
-
},
|
|
532
|
-
{
|
|
533
|
-
id: 'devuser/quick-deploy',
|
|
534
|
-
name: 'quick-deploy',
|
|
535
|
-
description: 'Quick deployment scripts for small projects',
|
|
536
|
-
author: 'devuser',
|
|
537
|
-
repoUrl: 'https://github.com/devuser/quick-deploy',
|
|
538
|
-
qualityScore: 0.52,
|
|
539
|
-
trustTier: 'unknown',
|
|
540
|
-
tags: ['deployment', 'scripts', 'automation', 'devops'],
|
|
541
|
-
},
|
|
542
|
-
{
|
|
543
|
-
id: 'coder99/regex-helper',
|
|
544
|
-
name: 'regex-helper',
|
|
545
|
-
description: 'Regular expression generation and testing',
|
|
546
|
-
author: 'coder99',
|
|
547
|
-
repoUrl: 'https://github.com/coder99/regex-helper',
|
|
548
|
-
qualityScore: 0.58,
|
|
549
|
-
trustTier: 'unknown',
|
|
550
|
-
tags: ['regex', 'patterns', 'utilities', 'productivity'],
|
|
551
|
-
},
|
|
552
|
-
{
|
|
553
|
-
id: 'newdev/git-workflow',
|
|
554
|
-
name: 'git-workflow',
|
|
555
|
-
description: 'Git workflow automation and branch management',
|
|
556
|
-
author: 'newdev',
|
|
557
|
-
repoUrl: 'https://github.com/newdev/git-workflow',
|
|
558
|
-
qualityScore: 0.5,
|
|
559
|
-
trustTier: 'unknown',
|
|
560
|
-
tags: ['git', 'workflow', 'branches', 'productivity'],
|
|
561
|
-
},
|
|
562
|
-
{
|
|
563
|
-
id: 'hackdev/snippet-manager',
|
|
564
|
-
name: 'snippet-manager',
|
|
565
|
-
description: 'Code snippet organization and insertion',
|
|
566
|
-
author: 'hackdev',
|
|
567
|
-
repoUrl: 'https://github.com/hackdev/snippet-manager',
|
|
568
|
-
qualityScore: 0.48,
|
|
569
|
-
trustTier: 'unknown',
|
|
570
|
-
tags: ['snippets', 'templates', 'productivity', 'productivity'],
|
|
571
|
-
},
|
|
572
|
-
{
|
|
573
|
-
id: 'testuser/mock-data',
|
|
574
|
-
name: 'mock-data',
|
|
575
|
-
description: 'Generate realistic mock data for testing',
|
|
576
|
-
author: 'testuser',
|
|
577
|
-
repoUrl: 'https://github.com/testuser/mock-data',
|
|
578
|
-
qualityScore: 0.54,
|
|
579
|
-
trustTier: 'unknown',
|
|
580
|
-
tags: ['mock', 'data', 'testing', 'fixtures', 'testing'],
|
|
581
|
-
},
|
|
582
|
-
{
|
|
583
|
-
id: 'random/env-manager',
|
|
584
|
-
name: 'env-manager',
|
|
585
|
-
description: 'Environment variable management and validation',
|
|
586
|
-
author: 'random',
|
|
587
|
-
repoUrl: 'https://github.com/random/env-manager',
|
|
588
|
-
qualityScore: 0.51,
|
|
589
|
-
trustTier: 'unknown',
|
|
590
|
-
tags: ['env', 'config', 'environment', 'productivity'],
|
|
591
|
-
},
|
|
592
|
-
{
|
|
593
|
-
id: 'indie/cli-builder',
|
|
594
|
-
name: 'cli-builder',
|
|
595
|
-
description: 'CLI application scaffolding and argument parsing',
|
|
596
|
-
author: 'indie',
|
|
597
|
-
repoUrl: 'https://github.com/indie/cli-builder',
|
|
598
|
-
qualityScore: 0.56,
|
|
599
|
-
trustTier: 'unknown',
|
|
600
|
-
tags: ['cli', 'commands', 'tools', 'development'],
|
|
601
|
-
},
|
|
26
|
+
...VERIFIED_SKILLS,
|
|
27
|
+
...TESTING_SKILLS,
|
|
28
|
+
...DEVOPS_SKILLS,
|
|
29
|
+
...DEVELOPMENT_SKILLS,
|
|
30
|
+
...DOCUMENTATION_SKILLS,
|
|
31
|
+
...DATABASE_SKILLS,
|
|
32
|
+
...EXPERIMENTAL_SKILLS,
|
|
33
|
+
...OVERLAP_DETECTION_SKILLS,
|
|
34
|
+
...UNKNOWN_SKILLS,
|
|
602
35
|
];
|
|
603
36
|
/**
|
|
604
37
|
* Seed all test skills into the repository
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"test-skills.js","sourceRoot":"","sources":["../../../../tests/integration/fixtures/test-skills.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"test-skills.js","sourceRoot":"","sources":["../../../../tests/integration/fixtures/test-skills.ts"],"names":[],"mappings":"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"}
|