Back to list
yldgio

deployment

by yldgio

Vibe Coding training sample creator: declarative AI-agent driven prompts and instructions for multi-level coding exercises.

0🍴 0📅 Jan 8, 2026

SKILL.md


name: deployment description: Deployment workflow for password generator web applications. Use when deploying, configuring CI/CD, or preparing the application for production. license: MIT

Deployment Workflow

When to Use

Use this skill when deploying the password generator application, setting up CI/CD pipelines, or preparing for production release.

Pre-Deployment Checklist

  1. Build Verification

    npm run build
    npm test
    npm run lint
    
  2. Security Audit

    npm audit --audit-level=moderate
    
  3. Performance Check

    • Bundle size under 50KB (gzipped)
    • Lighthouse score > 90

Deployment Options

Password generators are client-side only - use static hosting:

  • GitHub Pages
  • Netlify
  • Vercel
  • Cloudflare Pages

GitHub Pages Deployment

npm run build
npx gh-pages -d dist

Netlify/Vercel

Connect repository and configure:

  • Build command: npm run build
  • Publish directory: dist

Post-Deployment Verification

See deploy script for automated verification.

  1. Verify application loads correctly
  2. Test password generation works
  3. Verify copy-to-clipboard works
  4. Check browser console for errors
  5. Validate HTTPS is enforced

Score

Total Score

55/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

0/5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon