/ Diretório / Playground / Ay-Skills
● Comunidade walidboulanouar ⚡ Instantâneo

Ay-Skills

por 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.

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

ay-skill.replay ▶ pronto
0/0

Instalar

Escolha seu cliente

~/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
    }
  }
}

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

~/.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 usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

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
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "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
    }
  }
}

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

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

O Continue usa um array de objetos de servidor em vez de um map.

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

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

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

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: 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

Quando usar: You'd like to hand someone a single .html file that works offline.

Pré-requisitos
  • Skills cloned — git clone https://github.com/walidboulanouar/Ay-Skills ~/.claude/skills/Ay-Skills
Fluxo
  1. Describe the artifact
    artifacts-builder: a single-page pricing calculator with 3 tiers, React + shadcn cards, Tailwind.✓ Copiado
    → 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.✓ Copiado
    → Visually more polished version consistent with the design system

Resultado: 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

Quando usar: You need Claude to interact with a web app that requires auth, and you want session persistence.

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

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

Armadilhas
  • Site's terms forbid automation — Check ToS first — browser automation is a tool, not a license
Combine com: filesystem

Combinações

Combine com outros MCPs para 10× de alavancagem

ay-skill + filesystem

Save artifacts-builder output directly to a shared drop folder

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

Ship the artifact as a GitHub Pages page in one step

Build the artifact, commit to gh-pages branch, push.✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
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

Custo e limites

O que custa rodar

Cota de API
None for the skills themselves
Tokens por chamada
Varies widely across sub-skills
Monetário
Free — skills are local files. DataForSEO (used by claude-seo optionally) is paid.
Dica
Don't enable all 10 sub-skills if you only use 3 — context overhead compounds.

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: No credentials in the skill files. agent-browser stores a session file; claude-seo may need DataForSEO keys.
Saída de dados: Depends on sub-skill — agent-browser and claude-seo hit external sites

Solução de problemas

Erros comuns e correções

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

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

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

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

Verificar: 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.

Alternativas

Ay-Skills vs. outros

AlternativaQuando usarTroca
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

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills