Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

pix-storybook像素故事书

Agent Skill

pix-storybook 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

196

周安装

8

GitHub Stars

公开资料未说明

下载量

63
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pix-storybook(像素故事书)
来源仓库:https://github.com/corlab-tech/skills
仓库路径:skills/pix-storybook
安装命令:
npx skills add https://github.com/corlab-tech/skills --skill pix-storybook
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/corlab-tech/skills --skill pix-storybook

简介

pix-storybook 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它结合故事板形式组织内容,适用于创意或产品设计场景。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体调用方式。
  • 安装前建议核实权限范围、维护状态,以及是否涉及联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

/pix-storybook: Pixel-Perfect Stencil Components with Storybook

Note: This skill requires Figma MCP, Playwright MCP, and Storybook. It leverages existing Stencil skills for component creation.

Phase 0: Environment Setup & Discovery

1. Project Analysis

# Check for existing Storybook setup
ls -la .storybook/
cat package.json | grep storybook

If Storybook is not installed:

npx storybook@latest init --type web_components

2. Verify MCP Connections

  1. Figma MCP: Check authentication with whoami
  2. Playwright MCP: Verify browser control with mcp1_browser_install
  3. Storybook Port: Default 6006, check .storybook/main.js for custom port

3. Start Storybook

# Check if already running
lsof -i :6006

# If not running, start in background
npm run storybook &

4. Initialize Playwright Browser

// Use Playwright MCP to open Storybook
mcp1_browser_navigate({ url: "http://localhost:6006" })

Phase 1: Design Analysis & Component Planning

User Input

Ask for Figma link: "Paste the Figma link to the component you want to build (use 'Copy link to selection')"

Figma Data Extraction

Execute this sequence using Figma MCP tools:

  1. Component Structure // Get component hierarchy figma_get_metadata({node_id: "<extracted_id>"})
  2. Design Context // Get complete design specs figma_get_design_context({node_id: "<extracted_id>"})
  3. Design Tokens // Extract variables and tokens figma_get_variable_defs({file_id: "<file_id>"})
  4. Existing Mappings // Check for existing code components figma_get_code_connect_map({file_id: "<file_id>"})

Component Planning with Sequential Thinking

mcp2_sequentialthinking({
  thought: "Analyzing Figma design to plan Stencil component structure...",
  thoughtNumber: 1,
  totalThoughts: 5,
  nextThoughtNeeded: true
})

Consider:

  • Atomic level (atom, molecule, organism, template)
  • Required props and slots
  • Token mappings
  • Existing components to reuse

Phase 2: Stencil Component Implementation

1. Invoke Stencil Skills

Use the appropriate skill based on component type:

// For new component creation
skill({
  SkillName: "stenciljs-component-development"
})

// For design system components
skill({
  SkillName: "stencil-atomic-design-system"
})

2. Component Structure

Create component following the cor- prefix pattern:

// src/components/cor-[component-name]/cor-[component-name].tsx
import { Component, Prop, h, Host } from '@stencil/core';

@Component({
  tag: 'cor-[component-name]',
  styleUrl: 'cor-[component-name].css',
  shadow: true,
})
export class Cor[ComponentName] {
  // Props based on Figma analysis
  @Prop() variant: 'primary' | 'secondary' = 'primary';
  @Prop() size: 'small' | 'medium' | 'large' = 'medium';

  render() {
    return (
      <Host>
        {/* Slot-based composition */}
        <slot name="icon-left"></slot>
        <slot></slot>
        <slot name="icon-right"></slot>
      </Host>
    );
  }
}

3. Token Integration

Map Figma tokens to CSS variables:

/* cor-[component-name].css */
:host {
  /* Map to generated token variables */
  --component-padding: var(--spacing-md);
  --component-radius: var(--radius-md);
  --component-font-size: var(--font-size-md);
  --component-font-weight: var(--font-weight-semi-bold);
  --component-color: var(--color-primary-text-default);
  --component-background: var(--color-primary-background-default);
}

Phase 3: Storybook Story Creation

1. Invoke Story Writing Skill

skill({
  SkillName: "storybook-story-writing"
})

2. Create Component Story

// src/components/cor-[component-name]/cor-[component-name].stories.ts
import { html } from 'lit';
import type { Meta, StoryObj } from '@storybook/web-components';

const meta: Meta = {
  title: '[AtomicLevel]/Cor[ComponentName]',
  component: 'cor-[component-name]',
  parameters: {
    layout: 'centered',
    docs: {
      description: {
        component: 'Pixel-perfect implementation from Figma design',
      },
    },
  },
  argTypes: {
    variant: {
      control: { type: 'select' },
      options: ['primary', 'secondary'],
    },
    size: {
      control: { type: 'select' },
      options: ['small', 'medium', 'large'],
    },
  },
};

export default meta;
type Story = StoryObj;

// Default story matching Figma design
export const Default: Story = {
  args: {
    variant: 'primary',
    size: 'medium',
  },
  render: (args) => html`
    <cor-[component-name]
      variant="${args.variant}"
      size="${args.size}"
    >
      Content from Figma
    </cor-[component-name]>
  `,
};

// All states for visual comparison
export const AllStates: Story = {
  render: () => html`
    <div style="display: flex; flex-direction: column; gap: 16px;">
      <cor-[component-name] variant="primary">Primary</cor-[component-name]>
      <cor-[component-name] variant="secondary">Secondary</cor-[component-name]>
      <cor-[component-name] size="small">Small</cor-[component-name]>
      <cor-[component-name] size="large">Large</cor-[component-name]>
    </div>
  `,
};

Phase 4: Visual Testing with Playwright MCP

1. Navigate to Story

// Navigate to the specific story
mcp1_browser_navigate({
  url: "http://localhost:6006/iframe.html?id=[atomic-level]-cor[component-name]--default&viewMode=story"
})

// Wait for component to render
mcp1_browser_wait_for({ time: 2 })

2. Take Screenshots

// Screenshot Storybook component
mcp1_browser_take_screenshot({
  filename: "storybook-component.png",
  fullPage: false
})

// Get Figma reference screenshot
figma_get_screenshot({
  node_id: "<node_id>",
  scale: 2
})

3. Visual Comparison Loop

mcp2_sequentialthinking({
  thought: "Comparing Storybook component with Figma design...",
  thoughtNumber: 1,
  totalThoughts: 3,
  nextThoughtNeeded: true
})

Check for discrepancies:

  • Font weight and size
  • Colors and opacity
  • Spacing and padding
  • Border radius
  • Icon size and color
  • Shadow effects

4. Interactive State Testing

// Test hover states
mcp1_browser_hover({
  ref: "button",
  element: "component button"
})
mcp1_browser_take_screenshot({
  filename: "hover-state.png"
})

// Test focus states
mcp1_browser_click({
  ref: "button",
  element: "component button"
})
mcp1_browser_take_screenshot({
  filename: "focus-state.png"
})

// Test disabled states (if applicable)

Phase 5: Iterative Refinement

1. Identify Issues

Use Playwright MCP to inspect elements:

// Get computed styles
mcp1_browser_evaluate({
  function: "(element) => window.getComputedStyle(element)",
  ref: "component-element"
})

2. Fix Discrepancies

For each issue found:

  1. Explain the problem: "Font weight is 400 but should be 600 according to Figma"
  2. Update the code: /* Fix in component CSS */ --component-font-weight: var(--font-weight-semi-bold); /* 600 */
  3. Rebuild and refresh: // Refresh Storybook mcp1_browser_navigate_back() mcp1_browser_navigate({url: "http://localhost:6006/..."})
  4. Re-test: Take new screenshot and compare

3. Success Criteria

Component is complete when:

  • All visual properties match Figma exactly
  • Interactive states work correctly
  • Component renders properly in all story variations
  • No console errors in Storybook

Phase 6: Final Validation

1. Create Comparison Story

Create a special story for side-by-side comparison:

export const PixelPerfectComparison: Story = {
  render: () => html`
    <div style="display: grid; grid-template-columns: 1fr 1fr; gap: 32px;">
      <div>
        <h3>Storybook Component</h3>
        <cor-[component-name]>Content</cor-[component-name]>
      </div>
      <div>
        <h3>Figma Reference</h3>
        <img src="/figma-reference.png" alt="Figma design" />
      </div>
    </div>
  `,
};

2. Documentation

Update component readme with:

  • Figma link reference
  • Token mappings used
  • Any deviations and rationale
  • Usage examples

3. User Review

Ask for feedback:

  • "Component is ready in Storybook. Please review at http://localhost:6006"
  • "Are you satisfied with the implementation?"
  • "Any specific areas need adjustment?"

Workflow Summary

  1. Setup: Start Storybook, initialize Playwright browser
  2. Extract: Get all design data from Figma MCP
  3. Plan: Use sequential thinking to plan component structure
  4. Implement: Create Stencil component using appropriate skills
  5. Story: Write Storybook stories for all states
  6. Test: Use Playwright MCP for visual comparison
  7. Refine: Fix discrepancies iteratively
  8. Validate: Final review with user

Key Advantages

  • Isolated Testing: Storybook provides clean component isolation
  • State Management: Easy to test all component states
  • Visual Regression: Stories serve as visual regression tests
  • Documentation: Stories document component usage
  • Collaboration: Shareable Storybook URL for team review
  • Automation: Playwright MCP enables automated visual testing

Example Usage

/pix-storybook
> Starting Storybook and preparing environment...
> Paste Figma link: https://figma.com/design/abc123/MyApp?node-id=42-100
> Analyzing design... Creating cor-button component...
> Writing Storybook stories...
> Testing visual accuracy with Playwright...
> Found 2px padding difference, fixing...
> Component ready for review at http://localhost:6006/?path=/story/atoms-corbutton--default

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.02%
按下载量换算24

Claude

29.35%
按下载量换算18

Cursor

19.94%
按下载量换算13

Gemini CLI

9.95%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills