← Back to list

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
-
Build Verification
npm run build npm test npm run lint -
Security Audit
npm audit --audit-level=moderate -
Performance Check
- Bundle size under 50KB (gzipped)
- Lighthouse score > 90
Deployment Options
Static Hosting (Recommended)
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.
- Verify application loads correctly
- Test password generation works
- Verify copy-to-clipboard works
- Check browser console for errors
- 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