Agent skill · Workflow & Productivity

stackblitz-core-workflow-b

Embed StackBlitz projects and manage WebContainer snapshots for sharing. Use when embedding code playgrounds in docs, creating shareable examples, or building interactive tutorials with StackBlitz. '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill stackblitz-core-workflow-b --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Version: 1.5.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEditBash(npm:*)Grep
Requires: Designed for Claude Code
Path: skills/.curated/stackblitz-core-workflow-b/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,630
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# StackBlitz Core Workflow B: Embedding & Sharing ## Overview Embed interactive StackBlitz projects in documentation, blog posts, and tutorials using the StackBlitz SDK. Supports embedding from GitHub repos, existing StackBlitz projects, or inline code. ## Instructions ### Step 1: Embed from GitHub ```typescript import sdk from '@stackblitz/sdk'; // Embed a GitHub repo as an interactive editor sdk.embedGithubProject('embed-container', 'vitejs/vite/packages/create-vite/template-react-ts', { openFile: 'src/App.tsx', height: 500, theme: 'dark', clickToLoad: true, // Don't load until user clicks }); ``` ### Step 2: Embed Inline Project ```typescript sdk.embedProject('embed-container', { title: 'React Counter Demo', template: 'node', files: { 'src/App.tsx': ` import { useState } from 'react'; export default function App() { const [count, setCount] = useState(0); return <button onClick={() => setCount(c => c + 1)}>Count: {count}</button>; }`, 'package.json': JSON.stringify({ dependencies: { react: '^18', 'react-dom': '^18' }, }), }, }, { openFile: 'src/App.tsx', terminalHeight: 25, }); ``` ### Step 3: Open in New Tab ```typescript // Open project in full StackBlitz editor sdk.openGithubP

What's inside
Steps it walks through
  1. Overview
  2. Instructions
  3. Step 1: Embed from GitHub
  4. Step 2: Embed Inline Project
  5. Step 3: Open in New Tab
  6. Step 4: URL-Based Embedding
  7. Error Handling
  8. Resources
  9. Next Steps
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the stackblitz-core-workflow-b skill do?

Embed StackBlitz projects and manage WebContainer snapshots for sharing. Use when embedding code playgrounds in docs, creating shareable examples, or building interactive tutorials with StackBlitz. '

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill stackblitz-core-workflow-b --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going