diff --git a/.claude/skills/dbr-js-sample-creator/SKILL.md b/.claude/skills/dbr-js-sample-creator/SKILL.md
new file mode 100644
index 00000000..709dc77f
--- /dev/null
+++ b/.claude/skills/dbr-js-sample-creator/SKILL.md
@@ -0,0 +1,33 @@
+---
+name: dbr-js-sample-creator
+description: >
+ Use when creating JavaScript, TypeScript, or HTML sample code using the Dynamsoft Barcode Reader
+ SDK (dynamsoft-barcode-reader-bundle npm package or CDN). This skill covers all web barcode
+ scanning use cases including live camera scanning, image file decoding, single-barcode scanning,
+ QR codes, 1D barcodes, DataMatrix, PDF417, DPM, and framework integrations (React, Vue, Angular,
+ Next.js, Nuxt, Svelte, Electron, Capacitor, Blazor, PWA, ES6 modules, plain HTML).
+ Use this skill whenever the user mentions Dynamsoft Barcode Reader JavaScript, DBR JS,
+ dynamsoft-barcode-reader-bundle, CaptureVisionRouter in the browser, barcode scanning with
+ Dynamsoft in a web app, or wants to create a JavaScript/TypeScript sample that scans or decodes
+ barcodes.
+---
+
+# DBR JavaScript Sample Creator
+
+The canonical skill definition lives in `.github/skills/dbr-js-sample-creator/`.
+
+**Read `.github/skills/dbr-js-sample-creator/SKILL.md` and its `references/` directory now.**
+
+The `SKILL.md` file contains:
+- SDK architecture overview and loading methods (CDN UMD, CDN ES module, npm)
+- License initialization patterns and the default public trial key
+- Camera scanning and image capture code patterns
+- Code style conventions for this repository
+
+The `references/` directory contains:
+- `api-sdk.md` — SDK loading, namespaces, CoreModule, preset templates, BarcodeFormatIds, dynamic settings
+- `api-camera.md` — CameraView, CameraEnhancer, tip messages, auto-zoom, drawing layers, audio feedback
+- `api-image.md` — File capture, CapturedResult, BarcodeResultItem properties
+- `api-frameworks.md` — React, Vue, Angular, Next.js (App Router) complete component patterns
+- `api-parsing.md` — CodeParser for GS1, driver's license (AAMVA), VIN parsing
+- `sample-patterns.md` — Copy-paste ready code for all common scenarios
diff --git a/.codex/skills/dbr-js-sample-creator/SKILL.md b/.codex/skills/dbr-js-sample-creator/SKILL.md
new file mode 100644
index 00000000..361d6752
--- /dev/null
+++ b/.codex/skills/dbr-js-sample-creator/SKILL.md
@@ -0,0 +1,32 @@
+---
+name: dbr-js-sample-creator
+description: >
+ Use when creating JavaScript, TypeScript, or HTML sample code using the Dynamsoft Barcode Reader
+ SDK (dynamsoft-barcode-reader-bundle npm package or CDN). This skill covers all web barcode
+ scanning use cases including live camera scanning, image file decoding, single-barcode scanning,
+ QR codes, 1D barcodes, DataMatrix, PDF417, DPM, and framework integrations (React, Vue, Angular,
+ Next.js, Nuxt, Svelte, Electron, Capacitor, Blazor, PWA, ES6 modules, plain HTML).
+ Use this skill whenever the user mentions Dynamsoft Barcode Reader JavaScript, DBR JS,
+ dynamsoft-barcode-reader-bundle, CaptureVisionRouter in the browser, barcode scanning with
+ Dynamsoft in a web app, or wants to create a JavaScript/TypeScript sample that scans or decodes
+ barcodes.
+---
+
+# DBR JavaScript Sample Creator
+
+The canonical skill definition lives in `.github/skills/dbr-js-sample-creator/`.
+
+**Read `.github/skills/dbr-js-sample-creator/SKILL.md` and its `references/` directory now.**
+
+The `SKILL.md` file contains:
+- SDK architecture overview and loading methods (CDN UMD, CDN ES module, npm)
+- License initialization patterns and the default public trial key
+- Camera scanning and image capture code patterns
+- Code style conventions for this repository
+
+The `references/` directory contains:
+- `api-sdk.md` — SDK loading, namespaces, CoreModule, preset templates
+- `api-camera.md` — CameraView, CameraEnhancer, result receiver, dedup filter
+- `api-image.md` — File capture, CapturedResult, BarcodeResultItem properties
+- `api-frameworks.md` — React, Vue, Angular complete component patterns
+- `sample-patterns.md` — Copy-paste ready code for all common scenarios
diff --git a/.github/skills/dbr-js-sample-creator/README.md b/.github/skills/dbr-js-sample-creator/README.md
new file mode 100644
index 00000000..ea74011a
--- /dev/null
+++ b/.github/skills/dbr-js-sample-creator/README.md
@@ -0,0 +1,86 @@
+# DBR JavaScript Sample Creator — AI Coding Skill
+
+An AI coding skill that helps developers quickly build working web applications with the
+[Dynamsoft Barcode Reader JavaScript Edition](https://www.dynamsoft.com/barcode-reader/sdk-javascript/)
+SDK. Feed this skill to your AI agent (GitHub Copilot, Claude, Cursor, Windsurf, etc.) and
+describe what you need — the agent will generate correct, production-ready code.
+
+## Who Is This For?
+
+Developers evaluating or integrating the `dynamsoft-barcode-reader-bundle` JavaScript SDK who want
+to **accelerate POC development** using AI coding assistants. Instead of reading through
+documentation and samples manually, let your AI agent do the heavy lifting with full SDK knowledge
+built in.
+
+## No Installation Required
+
+This skill is organized into agent-specific directories so it is **auto-discovered** with no
+configuration needed:
+
+| Directory | Agent |
+|---|---|
+| `.github/skills/dbr-js-sample-creator/` | GitHub Copilot (auto-discovered) |
+| `.claude/skills/dbr-js-sample-creator/` | Claude Code (auto-discovered) |
+| `.codex/skills/dbr-js-sample-creator/` | OpenAI Codex (auto-discovered) |
+
+Just clone the repository and open it in your AI-enabled editor. The skill is active immediately.
+
+## What's Inside
+
+```
+.github/skills/dbr-js-sample-creator/
+├── SKILL.md # Entry point — SDK architecture, patterns, conventions
+├── README.md # This file
+├── references/
+│ ├── api-sdk.md # SDK loading (CDN/npm/ES6), namespaces, CoreModule, templates
+│ ├── api-camera.md # CameraView, CameraEnhancer, result receiver, filter
+│ ├── api-image.md # File/image capture, CapturedResult, BarcodeResultItem
+│ ├── api-frameworks.md # React, Vue, Angular integration patterns
+│ └── sample-patterns.md # Complete working code for every common scenario
+└── evals/
+ └── evals.json # Test prompts & expectations for skill validation
+
+.claude/skills/dbr-js-sample-creator/SKILL.md # Claude Code entry point
+.codex/skills/dbr-js-sample-creator/SKILL.md # Codex entry point
+```
+
+The AI agent reads `SKILL.md` first, which directs it to the appropriate reference files based on
+your task. You do not need to understand these files — they are written for the AI.
+
+## SDK at a Glance
+
+- **Package:** `dynamsoft-barcode-reader-bundle@11.4.2001`
+- **CDN:** `https://cdn.jsdelivr.net/npm/dynamsoft-barcode-reader-bundle@11.4.2001/dist/dbr.bundle.js`
+- **npm:** `npm install dynamsoft-barcode-reader-bundle`
+- **Trial license:** [Get a 30-day free trial](https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&package=js&utm_source=sampleReadme)
+
+## Example Prompts
+
+Once the skill is active, try prompts like:
+
+| Prompt | What the AI generates |
+|---|---|
+| *"Create a plain HTML barcode scanner with camera"* | Full HTML with CDN UMD, camera pipeline, dedup filter |
+| *"Build a React component that scans barcodes from camera"* | TypeScript React component with proper lifecycle + cleanup |
+| *"Make a Vue 3 image barcode decoder"* | Vue SFC with `
+```
+
+All APIs are on the global `Dynamsoft` object:
+- `Dynamsoft.License.LicenseManager`
+- `Dynamsoft.CVR.CaptureVisionRouter`, `Dynamsoft.CVR.CapturedResultReceiver`
+- `Dynamsoft.DCE.CameraView`, `Dynamsoft.DCE.CameraEnhancer`
+- `Dynamsoft.Utility.MultiFrameResultCrossFilter`
+- `Dynamsoft.Core.CoreModule`, `Dynamsoft.Core.EnumCapturedResultItemType`
+
+### Method 2: CDN ES module (`
+
+
+