vue-webapp-creation — community vue-webapp-creation, erpnextCCDis, community, ide skills

v1.0.0

About this Skill

Perfect for Frontend Agents needing streamlined Vue web application development and deployment within custom ERP systems like Frappe. Create new Vue web applications within the custom_erp Frappe app. Use when the user wants to create a new Vue app, add a new frontend app, create a new PWA, or asks about adding apps like qrpay, pay-d

ghimirerohan ghimirerohan
[0]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
7/11
Quality Score
36
Canonical Locale
en
Detected Body Locale
en

Perfect for Frontend Agents needing streamlined Vue web application development and deployment within custom ERP systems like Frappe. Create new Vue web applications within the custom_erp Frappe app. Use when the user wants to create a new Vue app, add a new frontend app, create a new PWA, or asks about adding apps like qrpay, pay-d

Core Value

Empowers agents to create and deploy Vue web applications from initial setup to production, leveraging Vue app initialization, PWA setup, and seamless integration with custom_erp Frappe app, utilizing files like `main.js` and `App.vue`.

Ideal Agent Persona

Perfect for Frontend Agents needing streamlined Vue web application development and deployment within custom ERP systems like Frappe.

Capabilities Granted for vue-webapp-creation

Creating new Vue web applications within custom_erp Frappe app
Configuring PWA setup for enhanced user experience
Deploying Vue web applications to production environments

! Prerequisites & Limits

  • Requires custom_erp Frappe app setup
  • Specific to Vue web application development
  • Needs understanding of Vue app initialization and PWA setup

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is vue-webapp-creation?

Perfect for Frontend Agents needing streamlined Vue web application development and deployment within custom ERP systems like Frappe. Create new Vue web applications within the custom_erp Frappe app. Use when the user wants to create a new Vue app, add a new frontend app, create a new PWA, or asks about adding apps like qrpay, pay-d

How do I install vue-webapp-creation?

Run the command: npx killer-skills add ghimirerohan/erpnextCCDis/vue-webapp-creation. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for vue-webapp-creation?

Key use cases include: Creating new Vue web applications within custom_erp Frappe app, Configuring PWA setup for enhanced user experience, Deploying Vue web applications to production environments.

Which IDEs are compatible with vue-webapp-creation?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for vue-webapp-creation?

Requires custom_erp Frappe app setup. Specific to Vue web application development. Needs understanding of Vue app initialization and PWA setup.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add ghimirerohan/erpnextCCDis/vue-webapp-creation. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use vue-webapp-creation immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

vue-webapp-creation

Install vue-webapp-creation, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Vue WebApp Creation in Custom_ERP

This skill guides you through creating a new Vue web application within the custom_erp Frappe app, from initial setup to production deployment.

Quick Reference

For a new app called my-app at route /my-app, you need:

File/DirectoryPurpose
my-app/Source directory with index.html and src/
my-app/src/main.jsVue app initialization
my-app/src/App.vueRoot component with PWA setup
my-app/src/router.jsVue Router with auth guards
my-app/src/MyApp.vueMain page component
custom_erp/www/my-app.htmlFrappe production entry (hyphenated)
custom_erp/www/my_app.pyFrappe context (underscored)
public/manifest-my-app.jsonPWA manifest
public/icons/my-app/icon-512x512.pngApp icon
vite.config.jsAdd to apps array
build-apps.jsAdd to apps array + theme config

Naming Convention

CRITICAL: Follow this naming pattern exactly:

LocationFormatExample
Directory & URLhyphenatedmy-app, /my-app
www/*.htmlhyphenatedmy-app.html
www/*.pyunderscoredmy_app.py
vite.config.jshyphenated'my-app'
build-apps.jshyphenated'my-app'
manifesthyphenatedmanifest-my-app.json
Router basehyphenated/my-app

Step-by-Step Creation Process

Step 1: Create Directory Structure

bash
1cd frappe-bench/apps/custom_erp 2mkdir -p my-app/src

Step 2: Create Source Files

Create all files in this order. See templates.md for complete file contents.

  1. my-app/index.html - Dev entry point
  2. my-app/src/main.js - Vue initialization
  3. my-app/src/App.vue - Root component
  4. my-app/src/router.js - Router with auth
  5. my-app/src/MyApp.vue - Main component

Step 3: Update Build Configurations

vite.config.js - Add to apps array:

javascript
1const apps = [ 2 'qrpay', 3 'my-app', // ADD HERE 4 // ... other apps 5]

build-apps.js - Add to apps array AND appThemes:

javascript
1const apps = [ 2 'qrpay', 3 'my-app', // ADD HERE 4 // ... 5] 6 7const appThemes = { 8 // ... 9 'my-app': { 10 theme: '#3b82f6', // Primary color (hex) 11 bg: '#ffffff', // Background color 12 name: 'My App', // Display name 13 desc: 'App description' // PWA description 14 }, 15}

Step 4: Create Frappe WWW Files

custom_erp/www/my-app.html (placeholder - build will update):

html
1<!DOCTYPE html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <link rel="icon" href="/assets/custom_erp/frontend/my-app/favicon.png" /> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" /> 7 <title>My App - Description</title> 8 <meta name="theme-color" content="#3b82f6" /> 9 <meta name="mobile-web-app-capable" content="yes" /> 10 <link rel="manifest" href="/api/method/custom_erp.api.pwa.get_manifest?app_name=my-app" /> 11 </head> 12 <body> 13 <div id="app"></div> 14 <script> 15 {% for key in boot %} 16 window["{{ key }}"] = {{ boot[key] | tojson }}; 17 {% endfor %} 18 </script> 19 </body> 20</html>

custom_erp/www/my_app.py (NOTE: underscored filename):

python
1import frappe 2 3def get_context(context): 4 """Context for my-app""" 5 context.no_cache = 1 6 return context

Step 5: Create PWA Manifest

public/manifest-my-app.json:

json
1{ 2 "id": "/my-app/", 3 "name": "My App", 4 "short_name": "MyApp", 5 "description": "App description", 6 "start_url": "/my-app/", 7 "scope": "/my-app/", 8 "display": "standalone", 9 "orientation": "portrait-primary", 10 "background_color": "#ffffff", 11 "theme_color": "#3b82f6", 12 "icons": [ 13 { 14 "src": "/assets/custom_erp/icons/my-app/icon-512x512.png", 15 "sizes": "512x512", 16 "type": "image/png", 17 "purpose": "any maskable" 18 } 19 ], 20 "categories": ["business", "finance"], 21 "prefer_related_applications": false 22}

Step 6: Add App Icon

bash
1mkdir -p public/icons/my-app 2cp public/icons/qrpay/icon-512x512.png public/icons/my-app/

Or create a custom 512x512 PNG icon.


Testing & Deployment

Local Development

bash
1cd frappe-bench/apps/custom_erp 2yarn dev 3# Access at http://localhost:8080/my-app

Build for Production

bash
1cd frappe-bench/apps/custom_erp 2node build-apps.js

Commit & Push

bash
1git add -A 2git commit -m "feat: add my-app Vue web application" 3git push origin main

Deploy to Server

bash
1# On production server: 2cd ~/frappe-bench/apps/custom_erp 3git pull origin main 4node build-apps.js 5cd ~/frappe-bench 6bench build --app custom_erp 7bench restart

Checklist

Copy this checklist when creating a new app:

New Vue App: [APP_NAME]

Directory & Source Files:
- [ ] Created [app-name]/ directory
- [ ] Created [app-name]/index.html
- [ ] Created [app-name]/src/main.js
- [ ] Created [app-name]/src/App.vue
- [ ] Created [app-name]/src/router.js (base path: /[app-name])
- [ ] Created [app-name]/src/[AppName].vue

Build Configuration:
- [ ] Added to vite.config.js apps array
- [ ] Added to build-apps.js apps array
- [ ] Added theme config to build-apps.js appThemes

Frappe Files:
- [ ] Created custom_erp/www/[app-name].html
- [ ] Created custom_erp/www/[app_name].py (underscored!)

PWA Assets:
- [ ] Created public/manifest-[app-name].json
- [ ] Added icon to public/icons/[app-name]/icon-512x512.png

Testing:
- [ ] Tested locally with yarn dev
- [ ] Built with node build-apps.js
- [ ] Verified at /[app-name] route

Deployment:
- [ ] Committed and pushed
- [ ] Pulled on server
- [ ] Ran node build-apps.js on server
- [ ] Ran bench build --app custom_erp
- [ ] Ran bench restart

Common Issues & Solutions

404 Errors for Assets

Cause: Build output doesn't exist or wrong paths Fix: Run node build-apps.js - it generates correct asset hashes

PWA Manifest 404

Cause: App not in build-apps.js or manifest not generated Fix: Add to build-apps.js apps array and rebuild

Login Redirect Loop

Cause: Wrong router base path Fix: Ensure createWebHistory("/my-app") matches your URL

Python File Not Found

Cause: Wrong filename format Fix: WWW Python files use underscores: my_app.py (not my-app.py)


Additional Resources

  • See templates.md for complete file templates
  • See examples.md for real app examples
  • Reference existing apps: qrpay/, pay-dashboard/, qrpay-horlicks/

Related Skills

Looking for an alternative to vue-webapp-creation or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer