cc-starter 1.0.4 → 1.0.6
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 +1 -1
- package/cc-starter /342/200/224 LinkedIn Carousel Slides.pdf +0 -0
- package/docs/index.html +969 -0
- package/docs/linkedin-carousel.html +1078 -0
- package/lib/constants.js +6 -4
- package/package.json +1 -1
package/lib/constants.js
CHANGED
|
@@ -12,7 +12,8 @@ export const PLUGIN_PRESETS = {
|
|
|
12
12
|
{ name: 'feature-dev', source: 'claude-code-plugins', desc: 'Code explorer, architect, reviewer agents' },
|
|
13
13
|
{ name: 'pr-review-toolkit', source: 'claude-code-plugins', desc: 'PR reviews, silent-failure-hunter, type analyzer' },
|
|
14
14
|
{ name: 'frontend-design', source: 'claude-code-plugins', desc: 'UI/UX design skill for frontend projects' },
|
|
15
|
-
{ name: 'ui-ux-pro-max', source: 'ui-ux-pro-max-skill', desc: 'AI design intelligence — 67 UI styles, 161 color palettes, 57 font pairings' }
|
|
15
|
+
{ name: 'ui-ux-pro-max', source: 'ui-ux-pro-max-skill', desc: 'AI design intelligence — 67 UI styles, 161 color palettes, 57 font pairings' },
|
|
16
|
+
{ name: 'claude-seo', source: 'claude-seo', desc: 'SEO audits, E-E-A-T analysis, schema markup, Core Web Vitals, AI search optimization' }
|
|
16
17
|
]
|
|
17
18
|
};
|
|
18
19
|
|
|
@@ -21,7 +22,8 @@ export const ALL_PLUGINS = [
|
|
|
21
22
|
{ name: 'feature-dev', source: 'claude-code-plugins', desc: 'Code explorer, architect, reviewer agents' },
|
|
22
23
|
{ name: 'pr-review-toolkit', source: 'claude-code-plugins', desc: 'PR reviews, silent-failure-hunter, type analyzer' },
|
|
23
24
|
{ name: 'frontend-design', source: 'claude-code-plugins', desc: 'UI/UX design skill for frontend projects' },
|
|
24
|
-
{ name: 'ui-ux-pro-max', source: 'ui-ux-pro-max-skill', desc: 'AI design intelligence — 67 UI styles, 161 color palettes, 57 font pairings' }
|
|
25
|
+
{ name: 'ui-ux-pro-max', source: 'ui-ux-pro-max-skill', desc: 'AI design intelligence — 67 UI styles, 161 color palettes, 57 font pairings' },
|
|
26
|
+
{ name: 'claude-seo', source: 'claude-seo', desc: 'SEO audits, E-E-A-T analysis, schema markup, Core Web Vitals, AI search optimization' }
|
|
25
27
|
];
|
|
26
28
|
|
|
27
29
|
export const REPORT_STYLES = {
|
|
@@ -37,7 +39,7 @@ export const I18N = {
|
|
|
37
39
|
title: 'cc-starter — Projekt-Kickstart Assistent',
|
|
38
40
|
langQuestion: 'Sprache / Language:',
|
|
39
41
|
projectName: 'Projektname:',
|
|
40
|
-
projectDescription: 'Kurze Projektbeschreibung (
|
|
42
|
+
projectDescription: 'Kurze Projektbeschreibung (z.B. Landing Page, SaaS-App, E-Commerce Shop, Blog, Portfolio, Dashboard, API):',
|
|
41
43
|
hourlyRate: 'Stundensatz für COCOMO-Schätzung (€):',
|
|
42
44
|
reportStyle: 'Report-Stil:',
|
|
43
45
|
pluginPreset: 'Plugin-Auswahl:',
|
|
@@ -87,7 +89,7 @@ export const I18N = {
|
|
|
87
89
|
title: 'cc-starter — project kickstart wizard',
|
|
88
90
|
langQuestion: 'Sprache / Language:',
|
|
89
91
|
projectName: 'Project name:',
|
|
90
|
-
projectDescription: 'Short project description (
|
|
92
|
+
projectDescription: 'Short project description (e.g. Landing Page, SaaS App, E-Commerce Store, Blog, Portfolio, Dashboard, API):',
|
|
91
93
|
hourlyRate: 'Hourly rate for COCOMO estimation (€):',
|
|
92
94
|
reportStyle: 'Report style:',
|
|
93
95
|
pluginPreset: 'Plugin preset:',
|
package/package.json
CHANGED