concept-workflow

leonardomso/33-js-concepts · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/leonardomso/33-js-concepts --skill concept-workflow
0 commentsdiscussion
summary

Use this skill to create a complete, high-quality concept page from start to finish. This skill orchestrates all five specialized skills in the optimal order:

skill.md

Skill: Complete Concept Workflow

Use this skill to create a complete, high-quality concept page from start to finish. This skill orchestrates all five specialized skills in the optimal order:

  1. Resource Curation — Find quality learning resources
  2. Concept Writing — Write the documentation page
  3. Test Writing — Create tests for code examples
  4. Fact Checking — Verify technical accuracy
  5. SEO Review — Optimize for search visibility

When to Use

  • Creating a brand new concept page from scratch
  • Completely rewriting an existing concept page
  • When you want a full end-to-end workflow with all quality checks

For partial tasks, use individual skills instead:

  • Just adding resources? Use resource-curator
  • Just writing content? Use write-concept
  • Just adding tests? Use test-writer
  • Just verifying accuracy? Use fact-check
  • Just optimizing SEO? Use seo-review

Workflow Overview

┌─────────────────────────────────────────────────────────────────────────────┐
│                     COMPLETE CONCEPT WORKFLOW                                │
├─────────────────────────────────────────────────────────────────────────────┤
│                                                                              │
│  INPUT: Concept name (e.g., "hoisting", "event-loop", "promises")           │
│                                                                              │
│  ┌──────────────────┐                                                        │
│  │ PHASE 1: RESEARCH │                                                       │
│  │ resource-curator  │  Find MDN refs, articles, videos                      │
│  └────────┬─────────┘                                                        │
│           ▼                                                                  │
│  ┌──────────────────┐                                                        │
│  │ PHASE 2: WRITE   │                                                        │
│  │ write-concept    │  Create the documentation page                         │
│  └────────┬─────────┘                                                        │
│           ▼                                                                  │
│  ┌──────────────────┐                                                        │
│  │ PHASE 3: TEST    │                                                        │
│  │ test-writer      │  Generate tests for all code examples                  │
│  └────────┬─────────┘                                                        │
│           ▼                                                                  │
│  ┌──────────────────┐                                                        │
│  │ PHASE 4: VERIFY  │                                                        │
│  │ fact-check       │  Verify accuracy, run tests, check links               │
│  └────────┬─────────┘                                                        │
│           ▼                                                                  │
│  ┌──────────────────┐                                                        │
│  │ PHASE 5: OPTIMIZE│                                                        │
│  │ seo-review       │  SEO audit and final optimizations                     │
│  └────────┬─────────┘                                                        │
│           ▼                                                                  │
│  OUTPUT: Complete, tested, verified, SEO-optimized concept page              │
│                                                                              │
└─────────────────────────────────────────────────────────────────────────────┘

Phase 1: Resource Curation

Skill: resource-curator Goal: Gather high-quality external resources before writing

What to Do

  1. Identify the concept category (fundamentals, async, OOP, etc.)
  2. Search for MDN references — Official documentation
  3. Find quality articles — Target 4-6 from trusted sources
  4. Find quality videos — Target 3-4 from trusted creators
  5. Evaluate each resource — Check quality criteria
  6. Write specific descriptions — 2 sentences each
  7. Format as Card components — Ready to paste into the page

Deliverables

  • List of 2-4 MDN/reference links with descriptions
  • List of 4-6 article links with descriptions
  • List of 3-4 video links with descriptions
  • Optional: 1-2 courses or books

Quality Gates

Before moving to Phase 2:

  • All links verified working (200 response)
  • All resources are JavaScript-focused
  • Descriptions are specific, not generic
  • Mix of beginner and advanced content

Phase 2: Concept Writing

Skill: write-concept Goal: Create the full documentation page

What to Do

  1. Determine the category for file organization
  2. Create the frontmatter (title, sidebarTitle, description)
  3. Write the opening hook — Question that draws readers in
  4. Add opening code example — Simple example in first 200 words
  5. Write "What you'll learn" box — 5-7 bullet points
  6. Write main content sections:
    • What is [concept]? (with 40-60 word definition for featured snippet)
    • Real-world analogy
    • How it works (with diagrams)
    • Code examples (multiple, progressive complexity)
    • Common mistakes
    • Edge cases
  7. Add Key Takeaways — 8-10 numbered points
  8. Add Test Your Knowledge — 5-6 Q&A accordions
  9. Add Related Concepts — 4 Cards linking to related topics
  10. Add Resources — Paste resources from Phase 1

Deliverables

  • Complete .mdx file at /docs/concepts/{concept-name}.mdx
  • File added to docs.json navigation (if new)

Quality Gates

Before moving to Phase 3:

  • Frontmatter complete (title, sidebarTitle, description)
  • Opens with question hook
  • Code example in first 200 words
  • "What you'll learn" Info box present
  • All required sections present
  • Resources section complete
  • 1,500+ words

Phase 3: Test Writing

Skill: test-writer Goal: Create comprehensive tests for all code examples

What to Do

  1. Scan the concept page for all code examples
  2. Categorize examples:
    • Testable (console.log, return values)
    • DOM-specific (needs jsdom)
    • Error examples (toThrow)
    • Conceptual (skip)
  3. Create test file at tests/{category}/{concept}/{concept}.test.js
  4. Create DOM test file (if needed) at tests/{category}/{concept}/{concept}.dom.test.js
  5. Write tests for each code example with source line references
  6. Run tests to verify all pass

Deliverables

  • Test file: tests/{category}/{concept-name}/{concept-name}.test.js
  • DOM test file (if applicable): tests/{category}/{concept-name}/{concept-name}.dom.test.js
  • All tests passing

Quality Gates

Before moving to Phase 4:

  • All testable code examples have tests
  • Source line references in comments
  • Tests pass: npm test -- tests/{category}/{concept}/
  • DOM tests in separate file with jsdom directive

Phase 4: Fact Checking

Skill: fact-check Goal: Verify technical accuracy of all content

What to Do

  1. Verify code examples:

    • Run tests: npm test -- tests/{category}/{concept}/
    • Check any untested examples manually
    • Verify output comments match actual outputs
  2. Verify MDN/spec claims:

    • Click all MDN links — verify they work
    • Compare API descriptions to MDN
    • Check ECMAScript spec for nuanced claims
  3. Verify external resources:

    • Check all article/video links work
    • Skim content for accuracy
    • Verify descriptions match content
  4. Audit technical claims:

    • Look for "always/never" statements
    • Verify performance claims
    • Check for common misconceptions
  5. Generate fact-check report

Deliverables

  • Fact-check report documenting:
    • Code verification results
    • Link check results
    • Any issues found and fixes made

Quality Gates

Before moving to Phase 5:

  • All tests passing
  • All MDN links valid
  • All external resources accessible
  • No technical inaccuracies found
  • No common misconceptions

Phase 5: SEO Review

Skill: seo-review Goal: Optimize for search visibility

What to Do

  1. Audit title tag:

    • 50-60 characters
    • Primary keyword in first half
    • Ends with "in JavaScript"
    • Contains compelling hook
  2. Audit meta description:

    • 150-160 characters
    • Starts with action word (Learn, Understand, Discover)
    • Contains primary keyword
    • Promises specific value
  3. Audit keyword placement:

    • Keyword in title
    • Keyword in description
    • Keyword in first 100 words
    • Keyword in at least one H2
  4. Audit content structure:

    • Question hook opening
    • Code in first 200 words
    • "What you'll learn" box
    • Short paragraphs
  5. Audit featured snippet optimization:

    • 40-60 word definition after "What is" H2
    • Question-format H2s
    • Numbered steps for how-to content
  6. Audit internal linking:

    • 3-5 related concepts linked
    • Descriptive anchor text
    • Related Concepts section complete
  7. Calculate score and fix any issues

Deliverables

  • SEO audit report with score (X/27)
  • All high-priority fixes implemented

Quality Gates

Before marking complete:

  • Score 24+ out of 27 (90%+)
  • Title optimized
  • Meta description optimized
  • Keywords placed naturally
  • Featured snippet optimized
  • Internal links complete

Complete Workflow Checklist

Use this master checklist to track progress through all phases.

# Concept Workflow: [Concept Name]

**Started:** YYYY-MM-DD
**Target Category:** {category}
**File Path:** `/docs/concepts/{concept-name}.mdx`
**Test Path:** `/tests/{category}/{concept-name}/`

---

## Phase 1: Resource Curation
- [ ] MDN references found (2-4)
- [ ] Articles found (4-6)
- [ ] Videos found (3-4)
- [ ] All links verified working
- [ ] Descriptions written (specific, 2 sentences)
- [ ] Resources formatted as Cards

**Status:** ⬜ Not Started | 🟡 In Progress | ✅ Complete

---

## Phase 2: Concept Writing
- [ ] Frontmatter complete
- [ ] Opening hook written
- [ ] Opening code example added
- [ ] "What you'll learn" box added
- [ ] Main content sections written
- [ ] Key Takeaways added
- [ ] Test Your Knowledge added
- [ ] Related Concepts added
- [ ] Resources pasted from Phase 1
- [ ] Added to docs.json (if new)

**Status:** ⬜ Not Started | 🟡 In Progress | ✅ Complete

---

## Phase 3: Test Writing
- [ ] Code examples extracted and categorized
- [ ] Test file created
- [ ] DOM test file created (if needed)
- [ ] All testable examples have tests
- [ ] Source line references added
- [ ] Tests run and passing

**Test Results:** X passing, X failing

**Status:** ⬜ Not Started | 🟡 In Progress | ✅ Complete

---

## Phase 4: Fact Checking
- [ ] All tests passing
- [ ] Code examples verified accurate
- [ ] MDN links checked (X/X valid)
- [ ] External resources checked (X/X valid)
- [ ] Technical claims audited
- [ ] No misconceptions found
- [ ] Issues fixed

**Status:** ⬜ Not Started | 🟡 In Progress | ✅ Complete

---

## Phase 5: SEO Review
- [ ] Title tag optimized (50-60 chars)
- [ ] Meta description optimized (150-160 chars)
- [ ] Keywords placed correctly
- [ ] Content structure verified
- [ ] Featured snippet optimized
- [ ] Internal links complete

**SEO Score:** X/27 (X%)

**Status:** ⬜ Not Started | 🟡 In Progress | ✅ Complete

---

## Final Status

**All Phases Complete:** ⬜ No | ✅ Yes
**Ready to Publish:** ⬜ No | ✅ Yes
**Completed:** YYYY-MM-DD

Execution Instructions

When executing this workflow, follow these steps:

Step 1: Initialize

Starting concept workflow for: [CONCEPT NAME]
how to use concept-workflow

How to use concept-workflow on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add concept-workflow
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/leonardomso/33-js-concepts --skill concept-workflow

The skills CLI fetches concept-workflow from GitHub repository leonardomso/33-js-concepts and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/concept-workflow

Reload or restart Cursor to activate concept-workflow. Access the skill through slash commands (e.g., /concept-workflow) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

User Story & Requirements Generation

Create detailed user stories, acceptance criteria, and feature specs

Example

Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios

Reduce spec writing time by 50%, ensure comprehensive coverage

Competitive Analysis

Research competitors, compare features, identify gaps

Example

Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities

Complete competitive research in 2 hours instead of 2 days

Roadmap Prioritization

Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs

Example

Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale

Make data-driven prioritization decisions faster

Stakeholder Communication

Draft PRDs, status updates, and stakeholder presentations

Example

Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement

Save 3-5 hours/week on communication overhead

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client
  • Access to product documentation and roadmap tools (Jira, Notion, etc.)
  • Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
  • Stakeholder contact information and communication channels

Time Estimate

30-60 minutes to see productivity improvements

Installation Steps

  1. 1.Install product management skill
  2. 2.Start with user story generation for known feature
  3. 3.Progress to competitive analysis: research 2-3 competitors
  4. 4.Use for roadmap prioritization: apply RICE/ICE scoring
  5. 5.Draft stakeholder communications and refine based on feedback
  6. 6.Build template library for recurring PM tasks
  7. 7.Share effective prompts with product team

Common Pitfalls

  • Not validating competitive research—verify facts before sharing
  • Accepting user stories without involving engineering team
  • Over-relying on frameworks without qualitative judgment
  • Not customizing outputs to company culture and communication style
  • Skipping stakeholder validation of generated requirements

Best Practices

✓ Do

  • +Validate research and competitive analysis with real data
  • +Collaborate with engineering when generating technical requirements
  • +Customize frameworks and templates to your company context
  • +Use skill for first drafts, refine with stakeholder input
  • +Document successful prompt patterns for PM tasks
  • +Combine AI efficiency with human judgment and intuition

✗ Don't

  • Don't publish competitive analysis without fact-checking
  • Don't finalize user stories without engineering review
  • Don't make prioritization decisions solely on AI scoring
  • Don't skip customer validation of generated requirements
  • Don't ignore company-specific context and culture

💡 Pro Tips

  • Provide context: company goals, constraints, customer feedback
  • Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
  • Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
  • Use skill for 70% generation + 30% customization to company needs

When to Use This

✓ Use When

Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.

✗ Avoid When

Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.

Learning Path

  1. 1Basic: user stories, feature specs, status updates
  2. 2Intermediate: competitive analysis, prioritization frameworks, PRDs
  3. 3Advanced: product strategy, go-to-market planning, OKR setting
  4. 4Expert: product vision, market positioning, business model innovation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.625 reviews
  • Valentina Shah· Dec 24, 2024

    concept-workflow reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Shikha Mishra· Dec 8, 2024

    concept-workflow has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Rahul Santra· Nov 27, 2024

    concept-workflow reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Kabir Jain· Nov 15, 2024

    concept-workflow has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Pratham Ware· Oct 18, 2024

    We added concept-workflow from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Ishan Gonzalez· Oct 6, 2024

    concept-workflow fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Daniel Menon· Sep 17, 2024

    Registry listing for concept-workflow matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Diego Rahman· Sep 9, 2024

    concept-workflow reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Amelia Srinivasan· Aug 28, 2024

    We added concept-workflow from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Harper Jackson· Aug 8, 2024

    Useful defaults in concept-workflow — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

showing 1-10 of 25

1 / 3