Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add jeffsenso/prestashop-skills --skill create-vue-componentgit clone --depth 1 https://github.com/jeffsenso/prestashop-skillsWrote 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.
[](https://agentmods.dev/skills/jeffsenso/prestashop-skills/create-vue-component)<a href="https://agentmods.dev/skills/jeffsenso/prestashop-skills/create-vue-component"><img src="https://agentmods.dev/badge/skills/jeffsenso/prestashop-skills/create-vue-component/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.
<a href="https://agentmods.dev/skills/jeffsenso/prestashop-skills/create-vue-component"><img src="https://agentmods.dev/badge/skills/jeffsenso/prestashop-skills/create-vue-component.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00076 | $0.00920 |
| Opus 5 | $0.00038 | $0.00460 |
| Sonnet 5 | $0.00015 | $0.00184 |
| Haiku 4.5 | $0.00008 | $0.00092 |
Grade A, and why
create-vue-component 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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 115 lines — stays where its author put it; the contents beside it link to each section on GitHub.
create-vue-component
Read @.ai/Component/Javascript/CONTEXT.md for the Vue integration overview.
This is NOT the default pattern. Most admin pages use
initComponents()with standard PS components. Only use Vue when a page section requires complex interactivity that standard form types and JS components cannot provide.
When to use Vue
- Dynamic row tables (add/remove rows, reorder) — e.g. carrier ranges
- Complex filtering/search UIs with real-time updates — e.g. combination filters
- Sections with heavy state synchronization between multiple fields
- Interactive modals with multi-step workflows
When NOT to use Vue: simple forms, standard CRUD, toggle switches, translatable fields — all handled by initComponents.
Integration pattern
Vue components are mounted on one section of a Symfony page, not the entire page. The rest of the page remains standard Symfony/Twig + PS components.
1. Create the Vue SFC
admin-dev/themes/new-theme/js/pages/{domain}/components/{ComponentName}.vue
Standard Vue 3 SFC with <script setup>, <template>, <style>. Use Composition API.
2. Create the initialization function
// admin-dev/themes/new-theme/js/pages/{domain}/components/init{ComponentName}.ts
import {createApp} from 'vue';
import {createI18n} from 'vue-i18n';
import ComponentName from './ComponentName.vue';
export default function initComponentName(
selector: string,
eventEmitter: typeof EventEmitter,
initialData: SomeType,
): void {
const container = document.querySelector(selector);
if (!container) return;
const translations = JSON.parse(container.dataset.translations || '{}');
const i18n = createI18n({locale: 'en', messages: {en: translations}});
const app = createApp(ComponentName, {
eventEmitter,
initialData,
});
app.use(i18n);
app.mount(selector);
}
3. Call from the page entry point
// In form/index.ts or edit/index.ts
import initComponentName from './components/initComponentName';
$(() => {
// Standard components first
window.prestashop.component.initComponents(['TranslatableInput']);
// Vue section
const eventEmitter = window.prestashop.instance.eventEmitter;
initComponentName('#vue-mount-point', eventEmitter, initialData);
});
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.
- 10d ago First seen · 115 lines · 76 tokens per session scan A a58d61711c3f
create-vue-component is a skill published in the GitHub repository jeffsenso/prestashop-skills (5 stars, last pushed 16d ago), licensed MIT. It adds 76 tokens to every session and 920 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-31.
Other skills, from other repositories
astro-integrations
Use when adding React, Vue, Svelte, Solid, Preact, or another UI framework to an Astro project via @astrojs/ integrations.
vue
Use when building Vue 3 applications. Covers the Composition API, reactivity fundamentals, composables, Pinia state management, and the reactivity mistakes that cause silent update failures.
chrome-extension-wxt
Build Chrome extensions with the WXT framework and TypeScript, React, Vue, or Svelte. Use when creating browser extensions or cross-browser add-ons. Triggers on "chrome extension", "browser extension", WXT, manifest v3, or wxt.config.ts.
neo-vue
Use this skill when building, debugging, refactoring, or reviewing Vue 3 applications, SFCs, Composition API, Pinia stores, Vue Router, Vite, or Vue+TypeScript code. Trigger when the project has .vue files or the user mentions Vue, Pinia, Composition API, Router, reactivity, or component architecture.
btc-connect
A Bitcoin wallet connection guide for React, Vue, Next.js, and Nuxt 3 applications. It covers UniSat and OKX wallets, network changes, server-rendered setups, and a shared Hook interface.
developer-utilities-post-markdown
Convert a Markdown string to HTML. Useful for rendering user-submitted content, documentation previews, or README files.