smithery/vallafederico

webflow-module-creation

Create and register custom JavaScript modules for Webflow projects. Use when creating new functionality, adding data-module attributes, or structuring component logic.

Installation

$ npx skills add smithery/vallafederico --skill webflow-module-creation

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/vallafederico · top by installs.

npx skills add smithery/vallafederico

Browse all from smithery/vallafederico

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 710 B
  • docs SUMMARY.md 198 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Webflow Module Creation

Standard for creating modules in the Webflow development setup.

Workflow

  1. Create a file in src/modules/ (e.g., my-feature.ts).
  2. Export a default function:

```typescript import { onMount, onDestroy } from "@/modules/_";

export default function(element: HTMLElement, dataset: DOMStringMap) { onMount(() => { / init / }); onDestroy(() => { / cleanup / }); } ```

  1. Add data-module="my-feature" to the element in Webflow.