agentsclimarketplace

Creo

Skill oyusypenko/creo/creo

Comprehensive design, UX, content, DevOps, and testing toolkit for web applications. Design reviews, UX flow analysis, marketing content, SEO auditing, CI/CD pipelines, test orchestration, and marketing site creation. Triggers on: /creo, design review, UX analysis, marketing content, SEO, DevOps, pipeline, test, marketing site.From its SKILL.md

Install
npx -y skills add oyusypenko/creo --skill creo

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • reads credentialsReads from 1 credential source: `.claude/project-config.md`.
  • 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

9.1 KB, ~2.3k tokens by cl100k_base, as published. Nobody here has run it

Creo -- Design & Development Toolkit

Creo is a comprehensive design, UX, content, DevOps, and testing toolkit for web applications. It provides a unified interface for design reviews, UX flow analysis, marketing content generation, SEO auditing, CI/CD pipeline management, test orchestration, and full marketing site creation. Each command routes to a specialized sub-skill or subagent optimized for its domain.


Quick Reference

CommandDescription
/creo design-review <url>UI/UX review (responsive, WCAG AA, Nielsen's heuristics)
/creo design-implement <report>Execute design fixes from review reports
/creo ux-internal <flow>Analyze your own app's UX flows
/creo ux-competitor <url>Analyze competitor websites
/creo content <page-type>Generate marketing copy (JTBD, pain points)
/creo image-prompt <context>Generate image prompts for DALL-E/Midjourney/SDXL
/creo seo <url>Next.js SEO + GEO audit (7-phase, technical + schema + GEO)
/creo seo initScan codebase and cache project profile for faster audits
/creo seo-content <url>Deep content audit (E-E-A-T, AI-pattern detection, citability)
/creo devops <command>Infrastructure management (GitHub/Cloudflare/Railway/Stripe)
/creo pipeline <command>CI/CD pipeline specialist (GitHub Actions)
/creo test <command>Test orchestration (unit + E2E)
/creo marketing-site <command>Full marketing site creation (7-stage)
/creo ai-generation <command>AI generation pipeline expertise

Orchestration Logic

Individual Commands

For any single command (e.g., /creo design-review, /creo seo), the orchestrator loads the relevant sub-skill directly. The sub-skill file contains the full instructions and references needed for that domain.

Marketing Site Full Build (/creo marketing-site full)

This is a multi-stage orchestration that delegates to parallel subagents:

  1. Stage 1-2: Infrastructure setup and content generation run sequentially.
  2. Stage 3: Page component assembly.
  3. Stage 4-5: Parallel delegation to:
    • creo-content-strategist -- generates marketing copy for all pages
    • creo-seo -- runs codebase audit and optimizes metadata/structured data
    • creo-design-review -- validates responsive design and accessibility
    • creo-ux-competitor -- analyzes competitor sites for differentiation
  4. Stage 6: Localization via creo-i18n-translator.
  5. Stage 7: Final QA combining all subagent reports.

DevOps Routing (/creo devops)

Routes to specialized CLI subagents based on the target platform:

SubcommandSubagent
devops githubcreo-github-cli
devops cloudflarecreo-cloudflare-cli
devops railwaycreo-railway-cli
devops stripecreo-stripe-cli

Test Routing (/creo test)

Routes to the appropriate testing subagent:

SubcommandSubagent
test unitcreo-unit-test
test e2ecreo-e2e-test
test allBoth subagents run in parallel

Domains

DomainSub-SkillsPrimary Focus
Design & UXdesign-review, design-implement, ux-internal, ux-competitorVisual quality, accessibility, usability
Content & Marketingcontent, image-promptCopy generation, JTBD frameworks, image prompts
SEOseoTechnical SEO, structured data, Core Web Vitals
DevOpsdevops (github, cloudflare, railway, stripe)Infrastructure, deployment, services
Testingtest (unit, e2e)Code quality, test coverage, E2E validation
Orchestrationmarketing-site, ai-generationMulti-stage workflows, parallel delegation

Reference Files

On-demand reference files loaded by sub-skills as needed. Located in creo/references/:

FileUsed ByContent
design-principles.mddesign-review, design-implementS-tier SaaS design checklist
design-style-guide.mddesign-review, design-implementViewports, spacing, typography, accessibility
visual-dev-snippets.mddesign-review, design-implementQuick visual verification workflow
ux-methodologies.mdux-internal, ux-competitorNielsen's heuristics, JTBD, journey mapping
ux-report-template.mdux-internal, ux-competitorStructured UX analysis report format
pain-points-framework.mdcontent, marketing-siteCustomer pain analysis by segment
voice-and-tone.mdcontent, marketing-siteBrand voice pillars, writing principles
image-style-reference.mdimage-promptPrompt patterns, style modifiers, categories
seo-checklist.mdseo, marketing-siteSEO and i18n implementation checklist
seo-audit-checklists.mdseoPhase-based SEO audit (5 phases)
i18n-translation-guide.mdmarketing-site, contentLocalization best practices, language list
workflow-stages.mdmarketing-site7-stage marketing site creation workflow

Sub-Skills

Each sub-skill is a standalone SKILL.md that can be invoked directly or through the orchestrator.

#Sub-SkillPathTrigger
1Design Reviewcreo/skills/design-review/SKILL.md/creo design-review
2Design Implementationcreo/skills/design-implement/SKILL.md/creo design-implement
3UX Internal Analysiscreo/skills/ux-internal/SKILL.md/creo ux-internal
4UX Competitor Analysiscreo/skills/ux-competitor/SKILL.md/creo ux-competitor
5Content Strategycreo/skills/content/SKILL.md/creo content
6Image Prompt Generationcreo/skills/image-prompt/SKILL.md/creo image-prompt
7SEO Auditcreo/skills/seo/SKILL.md/creo seo
8DevOps Managementcreo/skills/devops/SKILL.md/creo devops
9CI/CD Pipelinecreo/skills/pipeline/SKILL.md/creo pipeline
10Test Orchestrationcreo/skills/test/SKILL.md/creo test
11Marketing Sitecreo/skills/marketing-site/SKILL.md/creo marketing-site
12AI Generationcreo/skills/ai-generation/SKILL.md/creo ai-generation

Subagents

Each subagent is a focused agent definition for parallel delegation.

#SubagentPathRole
1creo-design-reviewcreo/agents/design-review.mdVisual review and accessibility
2creo-design-implementcreo/agents/design-implement.mdExecute design fixes
3creo-ux-internalcreo/agents/ux-internal.mdInternal UX flow analysis
4creo-ux-competitorcreo/agents/ux-competitor.mdCompetitor UX analysis
5creo-content-strategistcreo/agents/content-strategist.mdMarketing copy generation
6creo-image-promptcreo/agents/image-prompt.mdImage prompt generation
7creo-seoagents/creo-seo.mdNext.js SEO + GEO audit (7-phase)
7bcreo-seo-contentagents/creo-seo-content.mdDeep content-quality audit (delegate or standalone)
8creo-github-clicreo/agents/github-cli.mdGitHub API operations
9creo-cloudflare-clicreo/agents/cloudflare-cli.mdCloudflare management
10creo-railway-clicreo/agents/railway-cli.mdRailway deployment
11creo-stripe-clicreo/agents/stripe-cli.mdStripe integration
12creo-e2e-testcreo/agents/e2e-test.mdEnd-to-end testing

Optional Extensions

These extensions can be added to the toolkit as needed:

  • image-generation -- Integration with DALL-E, Midjourney, or SDXL APIs for automated image creation from prompts generated by the image-prompt sub-skill.
  • i18n-translator -- Automated translation pipeline for marketing site localization across 39+ languages with quality validation.
  • gsc-analyzer -- Google Search Console data analysis for SEO performance tracking and keyword opportunity identification.

Project Configuration

All skills check .claude/project-config.md at runtime for project-specific settings. This file should contain:

  • Dev server URL -- The local development server address (default: http://localhost:3000).
  • Framework -- The frontend framework in use (Next.js, Vite, etc.).
  • CSS framework -- Tailwind CSS, MUI, shadcn/ui, or custom.
  • Supported locales -- List of language codes for i18n.
  • Brand guidelines -- Brand name, colors, fonts, voice attributes.
  • Deployment targets -- Hosting platform and CI/CD configuration.
  • Test framework -- Vitest, Jest, Playwright, Cypress, etc.

If .claude/project-config.md does not exist, skills use sensible defaults and prompt the user for required configuration.

What ships with it: 12 files

43.8 KB alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.