/ 디렉터리 / 플레이그라운드 / Ay-Skills
● 커뮤니티 walidboulanouar ⚡ 바로 사용

Ay-Skills

제작: walidboulanouar · walidboulanouar/Ay-Skills

AY Automate's 10-skill bundle — React/Tailwind artifacts, MCP client, Remotion video, Excalidraw, Claude SEO, NotebookLM, and more.

A broad skill collection from walidboulanouar / AY Automate: artifacts-builder (React + Tailwind + shadcn/ui bundled HTML), mcp-client (universal MCP connector with Python execution), remotion (React video), skill-creator, notebooklm (Google NotebookLM via browser automation), ui-ux-pro-max (design system guidelines), agent-browser (browser automation with login persistence), claude-seo (DataForSEO MCP integration), superpowers (agentic TDD pipeline), excalidraw-diagram.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

ay-skill.replay ▶ 준비됨
0/0

설치

클라이언트 선택

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "ay-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/walidboulanouar/Ay-Skills",
        "~/.claude/skills/Ay-Skills"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "ay-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/walidboulanouar/Ay-Skills",
        "~/.claude/skills/Ay-Skills"
      ],
      "_inferred": true
    }
  }
}

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "ay-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/walidboulanouar/Ay-Skills",
        "~/.claude/skills/Ay-Skills"
      ],
      "_inferred": true
    }
  }
}

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "ay-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/walidboulanouar/Ay-Skills",
        "~/.claude/skills/Ay-Skills"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "ay-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/walidboulanouar/Ay-Skills",
        "~/.claude/skills/Ay-Skills"
      ]
    }
  ]
}

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

~/.config/zed/settings.json
{
  "context_servers": {
    "ay-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/walidboulanouar/Ay-Skills",
          "~/.claude/skills/Ay-Skills"
        ]
      }
    }
  }
}

context_servers에 추가. 저장 시 Zed가 핫 리로드.

claude mcp add ay-skill -- git clone https://github.com/walidboulanouar/Ay-Skills ~/.claude/skills/Ay-Skills

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: Ay-Skills

Build a shareable self-contained HTML artifact with React + shadcn

👤 Devs who want to demo a small UI without a deploy ⏱ ~30 min beginner

언제 쓸까: You'd like to hand someone a single .html file that works offline.

사전 조건
  • Skills cloned — git clone https://github.com/walidboulanouar/Ay-Skills ~/.claude/skills/Ay-Skills
흐름
  1. Describe the artifact
    artifacts-builder: a single-page pricing calculator with 3 tiers, React + shadcn cards, Tailwind.✓ 복사됨
    → Claude produces the bundled HTML file with embedded CSS/JS
  2. Iterate on visuals
    Use ui-ux-pro-max guidelines — apply the accent palette to the CTA.✓ 복사됨
    → Visually more polished version consistent with the design system

결과: One file, double-click to open, works anywhere.

Automate a task behind a login with agent-browser

👤 Engineers avoiding flaky Selenium scripts ⏱ ~30 min intermediate

언제 쓸까: You need Claude to interact with a web app that requires auth, and you want session persistence.

흐름
  1. Start a persistent session
    agent-browser: open mysaas.com, log in (I'll do 2FA), save session.✓ 복사됨
    → Session saved, subsequent requests reuse it
  2. Automate the task
    Now download last month's invoices from the billing page.✓ 복사됨
    → Files downloaded to CWD

결과: A scripted flow that survives across sessions without reauth hell.

함정
  • Site's terms forbid automation — Check ToS first — browser automation is a tool, not a license
함께 쓰기: filesystem

조합

다른 MCP와 조합해 10배 효율

ay-skill + filesystem

Save artifacts-builder output directly to a shared drop folder

Build the artifact and save to ~/Dropbox/demos/.✓ 복사됨
ay-skill + github

Ship the artifact as a GitHub Pages page in one step

Build the artifact, commit to gh-pages branch, push.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
artifacts-builder UI description Want a shareable single-file demo 0
mcp-client target MCP server + task Orchestrating multiple MCPs from one skill 0
remotion scene description + assets Programmatic video generation 0
agent-browser URL + actions Auth-gated or JS-heavy sites 0
claude-seo URL or keyword SEO audits with optional paid data 0 local, paid if DataForSEO enabled
superpowers feature intent Complex features that benefit from structured TDD 0

비용 및 제한

운영 비용

API 쿼터
None for the skills themselves
호출당 토큰
Varies widely across sub-skills
금액
Free — skills are local files. DataForSEO (used by claude-seo optionally) is paid.
Don't enable all 10 sub-skills if you only use 3 — context overhead compounds.

보안

권한, 시크릿, 파급범위

자격 증명 저장: No credentials in the skill files. agent-browser stores a session file; claude-seo may need DataForSEO keys.
데이터 외부 송신: Depends on sub-skill — agent-browser and claude-seo hit external sites

문제 해결

자주 발생하는 오류와 해결

Skill not invoked — Claude writes React inline instead of using artifacts-builder

Reference the sub-skill by name: 'use artifacts-builder to...'.

확인: ls ~/.claude/skills/Ay-Skills/
SKILL.md frontmatter wrong

Each sub-skill has its own SKILL.md; inspect the one not activating.

확인: head ~/.claude/skills/Ay-Skills/artifacts-builder/SKILL.md
Wrong trigger keywords — mcp-client picks the wrong MCP

Specify the target MCP explicitly in the prompt.

대안

Ay-Skills 다른 것과 비교

대안언제 쓰나단점/장점
excalidraw-skill (Agents365)You only need the diagram pieceNarrower; doesn't include the 9 other AY sub-skills
skills-skill-9You want product-building skills rather than UI/browser focusDifferent category emphasis

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기