ワンクリックで
visual-effects-transfer
Unified skill to extract and apply premium visual effects from a source HTML to a destination HTML
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Unified skill to extract and apply premium visual effects from a source HTML to a destination HTML
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Audit Anclora repositories, new apps, features, landing pages, locale files, documentation, prompts, marketing copy, metadata, schema.org, SEO, GEO and AEO readiness for text quality. Use when Codex, Claude Code, Gemini CLI or Hermes must proofread, humanize, localize, validate claims, or run the Anclora text quality gate before closing work.
Specialized skill to audit and transform NotebookLM notebooks into "Continuous Learning Platforms". It focuses on pruning outdated content, configuring a "Learning Mentor" persona, and setting up recursive learning tools like Quizzes and Flashcards.
Skill to audit a large NotebookLM notebook and split its sources into multiple specialized notebooks based on identified themes.
Specialized skill to audit, optimize, and maintain the NotebookLM workspace for "OpenClaw: The Universal Personal AI Assistant Platform". Use this skill when you need to: (1) audit or clean sources in the main OpenClaw notebook or any of its 4 sub-notebooks, (2) remove duplicate, obsolete, or low-value sources from any OpenClaw NotebookLM notebook, (3) configure or update the AI persona/instructions for any OpenClaw sub-notebook, (4) validate the retrieval quality of OpenClaw knowledge bases, (5) do any deep research, pruning, or restructuring task related to the OpenClaw NotebookLM workspace.
A highly specialized skill designed to audit and optimize a Territorial Intelligence NotebookLM workspace (specifically focused on Southwest Mallorca Real Estate, Luxury Market, Tourism, and Urban Development).
Analyzes and cleans up markdown artifacts (like **bold**, *italic*, [links](url)) inside existing .docx files, converting them into proper Word formatting (runs with styles).
| name | visual-effects-transfer |
| description | Unified skill to extract and apply premium visual effects from a source HTML to a destination HTML |
This skill combines harvesting and application of premium visual effects from a source HTML file to a destination HTML file in a single, automated workflow.
Transfer complete visual effects including:
npm install -D playwright)node scripts/transfer.js <source-html-path> <destination-html-path> [options]
--output <path>: Custom output path (default: adds _enhanced suffix)--report: Generate detailed report of applied effects--dry-run: Preview changes without modifying files# Basic usage
node scripts/transfer.js ./base_layout.html ./target.html
# With custom output
node scripts/transfer.js ./base_layout.html ./target.html --output ./target_premium.html
# Generate report
node scripts/transfer.js ./base_layout.html ./target.html --report
:root CSS variables:hover):active, :focus)::before, ::after):rootdata-* attributes# Visual Effects Transfer Report
## Design Tokens Injected
- Colors: 12 variables
- Typography: 4 font families
- Effects: 8 variables
## Utility Classes Created
- .effect-glass-card (glassmorphism)
- .effect-gold-gradient (premium button)
- .effect-logo-glow (animated shadow)
- .effect-transition-premium (smooth transitions)
## Elements Enhanced
- header.site-header → glassmorphism
- .logo img → shadow glow effect
- .data-card (6 instances) → glassmorphism
- .btn-primary → gold gradient
## Verification
✅ HTML structure valid
✅ CSS syntax valid
✅ No broken selectors
Create a mapping.json file to customize element mapping:
{
"mappings": [
{
"source": ".header-logo img",
"destination": ".brand-logo",
"effects": ["shadow-glow", "hover-scale"]
}
]
}
Use --include and --exclude flags:
# Only transfer glassmorphism effects
node scripts/transfer.js source.html dest.html --include glassmorphism
# Exclude animations
node scripts/transfer.js source.html dest.html --exclude animations
Solution: Check that source file has embedded styles (not external CSS)
Solution: Use --dry-run first to preview changes
Solution: Ensure Playwright can render the page (check console for errors)
visual-effects-transfer/
├── SKILL.md (this file)
├── scripts/
│ ├── transfer.js (main script)
│ ├── extractor.js (CSS extraction logic)
│ ├── applier.js (CSS application logic)
│ └── validator.js (HTML/CSS validation)
└── examples/
├── source_example.html
└── destination_example.html