chatgpt-vue3-light-mvp: Skill for Codex

.agents/skills/chatbot-mvp-distillation/SKILL.md

chatbot-mvp-distillation is a skill for Codex from pdsuwwz/chatgpt-vue3-light-mvp. It costs 85 tokens per session (588 once invoked), scanned A, original, MIT.

A guide for reusing the architecture of a Vue 3, Vite, and TypeScript ChatGPT-style web chat in another project.

In plain words
What is it for?
Use it to design chat UIs with fetch or SSE streams, model adapters, typewriter output, Markdown, code highlighting, KaTeX mathematical formulas, Mermaid diagrams, reasoning blocks, and mock streams.
Why use it?
It helps keep streaming model protocols separate from interface rendering and avoids copying the original project without adapting it.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

This is pdsuwwz/chatgpt-vue3-light-mvp's own configuration. It tells Codex how to work on chatgpt-vue3-light-mvp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything chatgpt-vue3-light-mvp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to pdsuwwz/chatgpt-vue3-light-mvp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/pdsuwwz/chatgpt-vue3-light-mvp/main/.agents/skills/chatbot-mvp-distillation/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/pdsuwwz/chatgpt-vue3-light-mvp

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for chatbot-mvp-distillation

README.md
[![agentmods](https://agentmods.dev/badge/skills/pdsuwwz/chatgpt-vue3-light-mvp/chatbot-mvp-distillation/github.svg)](https://agentmods.dev/skills/pdsuwwz/chatgpt-vue3-light-mvp/chatbot-mvp-distillation)
Your own site
<a href="https://agentmods.dev/skills/pdsuwwz/chatgpt-vue3-light-mvp/chatbot-mvp-distillation"><img src="https://agentmods.dev/badge/skills/pdsuwwz/chatgpt-vue3-light-mvp/chatbot-mvp-distillation/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for chatbot-mvp-distillation

Your own site · 80×15
<a href="https://agentmods.dev/skills/pdsuwwz/chatgpt-vue3-light-mvp/chatbot-mvp-distillation"><img src="https://agentmods.dev/badge/skills/pdsuwwz/chatgpt-vue3-light-mvp/chatbot-mvp-distillation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 588 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00085 $0.00588
Opus 5 $0.00043 $0.00294
Sonnet 5 $0.00017 $0.00118
Haiku 4.5 $0.00009 $0.00059

Measured 13d ago against content hash 34f7aadd9d9b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

chatbot-mvp-distillation scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/chatbot-mvp-distillation/SKILL.md · 48 lines

How it starts

The opening of the file, as written. The whole thing — 48 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Chatbot MVP Distillation

Use this skill to borrow the architectural lessons from chatgpt-vue3-light-mvp without copying the project blindly.

The source project is a Vue 3 + Vite + TypeScript MVP for single-turn LLM chat. Its reusable ideas are:

  • split model-specific streaming formats from UI rendering
  • normalize model deltas into plain text chunks before display
  • render text with a typewriter buffer so network speed and UI speed are decoupled
  • process Markdown, code highlighting, math, Mermaid diagrams, and reasoning blocks as a rendering pipeline
  • keep mock streams available so downstream projects can develop without real API keys

Workflow

  1. Identify the target project's framework, state management, and API boundary.
  2. Read references/architecture.md for the reusable component boundaries.
  3. Read references/streaming-sse.md when implementing fetch/SSE/ReadableStream handling.
  4. Read references/model-adapters.md when adding providers or normalizing response formats.
  5. Read references/markdown-rendering.md when implementing rich answer rendering.
  6. Read references/migration-checklist.md before proposing or editing code in another project.

Output Expectations

When using this skill in another project:

  • describe the adapted architecture before editing code
  • keep provider adapters independent from UI components
  • define a small stream delta contract before implementing providers
  • include a mock stream path for local development
  • call out target-project changes that differ from the Vue MVP
  • verify streaming, abort, completion, Markdown, code blocks, math, and Mermaid behavior when feasible

Source Anchors

Use these files as source examples from this repository:

  • src/views/chat.vue for input, model selection, reader lifecycle, and stop behavior
  • src/store/business/index.ts for the service/store boundary that creates readers
  • src/components/MarkdownPreview/transform/index.ts for SSE and JSON chunk splitting
  • src/components/MarkdownPreview/models/index.ts for provider adapters and delta transforms
  • src/components/MarkdownPreview/index.vue for typewriter rendering and completion state
  • src/components/MarkdownPreview/plugins/markdown.ts for Markdown, KaTeX, Mermaid, and reasoning-block rendering

Read the full file on GitHub · 48 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 48 lines · 85 tokens per session scan A 34f7aadd9d9b

Subscribe to this mod's changes

chatbot-mvp-distillation is a skill published in the GitHub repository pdsuwwz/chatgpt-vue3-light-mvp (574 stars, last pushed 1mo ago), licensed MIT. It adds 85 tokens to every session and 588 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

svelte-expert

Expert knowledge in Svelte framework, SvelteKit, reactivity system, compiled approach, and building performant web applications. Use when the user mentions SvelteKit, reactivity, compiler, frontend, performance, or JavaScript, or when the task involves Svelte Fundamentals, Reactivity System, Installation and Setup, or…

personamanagmentlayer/pcl · 74 tokens

vue-expert

Expert knowledge in Vue.js 3, Composition API, Pinia state management, and Nuxt.js for building modern reactive web applications. Use when the user mentions Vue 3, the Composition API, Pinia, Nuxt, reactive, or frontend, or when the task involves Vue 3 Fundamentals, Composition API, Pinia State Management, or Nuxt.js.

personamanagmentlayer/pcl · 78 tokens

trtc-chat

Internal Chat (IM) integration domain skill — enter ONLY via skills/trtc/SKILL.md after product=chat routing. Not a standalone dispatcher entry. Handles Vue 3 Web full/direct chat integration (Path A/B/C/D).

Tencent-RTC/agent-skills · 51 tokens

shadcn-svelte

Pre-built shadcn-svelte components for json-render Svelte apps. Use when working with @json-render/shadcn-svelte, adding standard UI components to a Svelte catalog, or building Svelte web UIs with shadcn-svelte + Tailwind CSS components.

vercel-labs/json-render · 63 tokens

html-email

Send-ready single-file email.

asgeirtj/system_prompts_leaks · 8 tokens

node-connect

Diagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps. Use when QR/setup code/manual connect fails, local Wi-Fi works but VPS/tailnet does not, or errors mention pairing required, unauthorized, bootstrap token invalid or expired, gateway.bind, gateway.remote.url, Tailscale…

the-open-agent/openagent · 81 tokens