Notre avis
Prend des captures d'écran d'une URL de référence et du rendu local Jahia pour comparer visuellement avant et après le développement.
Points forts
- Utilise des outils courants comme Playwright, Puppeteer ou Chrome.
- Automatise les captures en pleine page.
- Gère l'authentification nécessaire pour accéder aux pages Jahia.
- Décrit les éléments de design à partir de la capture de référence.
Limites
- Nécessite une instance Jahia locale en cours d'exécution.
- Supposons des identifiants par défaut (root/root1234) pour l'authentification.
- La comparaison visuelle n'est pas automatisée, elle repose sur l'examen humain.
Lorsque vous construisez une vue Jahia qui doit reproduire visuellement un site existant.
Quand la précision visuelle n'est pas requise ou que l'environnement ne permet pas l'automatisation du navigateur.
Analyse de sécurité
PrudenceThe skill uses bash, npm/npx, and network access to capture screenshots for legitimate development purposes. While no destructive or exfiltrating behavior is present, it involves installing software, executing scripts, accessing external URLs, and handling authentication credentials, warranting caution.
- •Uses bash commands to install and execute Playwright/Puppeteer and run Node.js scripts
- •Makes network requests to user-specified URLs (reference URL) and local Jahia instance
- •Includes hardcoded default credentials (root/root1234) for local Jahia authentication, which could be insecure if used outside a trusted environment
- •Executes inline Node.js code via `node -e`
Exemples
Take a reference screenshot of https://example.com and describe its layout, color palette, and typography so I can build a matching Jahia view.Capture the result screenshot of http://localhost:8080/cms/render/default/en/sites/mysite/home.html after my recent deployment and compare it with /tmp/jahia-screenshots/reference.png, listing the visual gaps.Use the jahia-dev-screenshot skill to take a reference screenshot of https://design.example.com, then after I deploy, capture my Jahia page at http://localhost:8080/cms/render/default/en/sites/mysite/home.html and tell me what to fix to match.name: jahia-dev-screenshot description: Takes screenshots of a reference URL and the local Jahia render for visual comparison. Use before building a view (inspiration) and after (validation).
Skill: jahia-dev-screenshot
Takes screenshots for two purposes:
- Reference — capture an existing site as a visual spec before building
- Result — capture the local Jahia render after building to compare
Step 1 — Detect screenshot tool
Check what is available:
# Playwright (preferred)
npx playwright --version 2>/dev/null
# Puppeteer
node -e "require('puppeteer'); console.log('ok')" 2>/dev/null
# System Chrome/Chromium
which google-chrome || which chromium || which chromium-browser 2>/dev/null
Use the first one that works. If none is available, ask the user:
No screenshot tool found. Which would you like to install?
npm install -g playwrightthennpx playwright install chromiumnpm install puppeteer(downloads Chromium automatically)- I'll take the screenshots manually and paste them in
If the user chooses manual, skip to Step 4 and ask them to paste the screenshots.
Step 2 — Take reference screenshot
Ask the user for the reference URL if not already provided.
Create the output directory:
mkdir -p /tmp/jahia-screenshots
With Playwright:
npx playwright screenshot \
--browser chromium \
--full-page \
"<REFERENCE_URL>" \
/tmp/jahia-screenshots/reference.png
With Puppeteer (Node.js one-liner):
node -e "
const puppeteer = require('puppeteer');
(async () => {
const browser = await puppeteer.launch({ args: ['--no-sandbox'] });
const page = await browser.newPage();
await page.setViewport({ width: 1440, height: 900 });
await page.goto('<REFERENCE_URL>', { waitUntil: 'networkidle2' });
await page.screenshot({ path: '/tmp/jahia-screenshots/reference.png', fullPage: true });
await browser.close();
})();
"
After capturing, view the screenshot to use it as visual context:
view /tmp/jahia-screenshots/reference.png
Describe the key design elements you observe:
- Layout structure (hero, grid, sidebar, etc.)
- Color palette (dominant, accent, background)
- Typography (heading sizes, font weight)
- Component anatomy (what sub-elements make it up)
Share this description with the user before proceeding to build.
Step 3 — Take result screenshot (after building)
Once the view is built and deployed (yarn build + yarn jahia-deploy), capture the Jahia render.
Ask the user for the Jahia page URL, or construct it:
- Default:
http://localhost:8080/cms/render/default/en/sites/<siteName>/home.html - Or ask: "What is the URL of the page where the component is placed?"
Jahia requires authentication. Use the --auth header or log in first:
With Playwright:
npx playwright screenshot \
--browser chromium \
--full-page \
"http://localhost:8080/cms/render/default/en/sites/<siteName>/home.html" \
/tmp/jahia-screenshots/result.png
Note: if the page requires login, authenticate first:
node -e " const puppeteer = require('puppeteer'); (async () => { const browser = await puppeteer.launch({ args: ['--no-sandbox'] }); const page = await browser.newPage(); await page.setViewport({ width: 1440, height: 900 }); await page.goto('http://localhost:8080/cms/login', { waitUntil: 'networkidle2' }); await page.type('#username', 'root'); await page.type('#password', 'root1234'); await Promise.all([page.waitForNavigation(), page.keyboard.press('Enter')]); await page.goto('<PAGE_URL>', { waitUntil: 'networkidle2' }); await page.screenshot({ path: '/tmp/jahia-screenshots/result.png', fullPage: true }); await browser.close(); })(); "
After capturing, view the screenshot:
view /tmp/jahia-screenshots/result.png
Step 4 — Compare and report gaps
View both screenshots and compare them side by side (or sequentially).
Report gaps to the user:
## Visual Comparison
### Reference: <URL>
[description of reference]
### Result: http://localhost:8080/...
[description of result]
### Gaps
- [ ] Background color differs (reference: dark navy, result: white)
- [ ] Hero text not centered
- [ ] CTA button missing border-radius
- [ ] Font size smaller than reference
### Suggested fixes
...
Ask: "Would you like me to fix these gaps?"
If yes, update the view's .tsx and .module.css files using /jahia-dev-create-view guidance, rebuild, and re-screenshot to verify.
Integration points
This skill is called from:
/jahia-dev-build-component— Step 0 (optional reference) and Step 4 (result check)/jahia-dev-create-view— Step 0 (optional reference) and after deploy
References
- Playwright CLI: https://playwright.dev/docs/cli
- Puppeteer: https://pptr.dev
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.