Vueuse Integrations Skilld logo

Vueuse Integrations Skilld

Organization
skilld-dev
vueuse-integrations-skilld

Integration wrappers for utility libraries. ALWAYS use when writing code importing "@vueuse/integrations". Consult for debugging, best practices, or modifying @vueuse/integrations, vueuse/integrations, vueuse integrations, vueuse.

Overview

Publisherskilld-dev
Repositoryvue-ecosystem-skills
Skill namevueuse-integrations-skilld
Stars
180
Forks
8
Bundled files
87
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 87 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by skilld-dev on GitHub. Read the source before you install it.

Installation

Install the Vueuse Integrations Skilld AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/skilld-dev/vue-ecosystem-skills.git /tmp/vue-ecosystem-skills
mkdir -p .claude/skills
cp -r /tmp/vue-ecosystem-skills/skills/vueuse-integrations-skilld .claude/skills/vueuse-integrations-skilld
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Vueuse Integrations Skilld in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Vueuse Integrations Skilld on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Vueuse Integrations Skilld is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

vueuse/vueuse @vueuse/integrations@14.3.0

Tags: next: 5.0.0, alpha: 14.0.0-alpha.3, beta: 14.0.0-beta.1

References: Docs

API Changes

This section documents version-specific API changes — prioritize recent major/minor releases.

  • BREAKING: Requires Vue 3.5+ — v14.x now requires Vue 3.5.0 as a peer dependency for native features like useTemplateRef

  • BREAKING: ESM-only — dropped CommonJS (CJS) build in v13.0.0, now an ESM-only package source

  • BREAKING: focus-trap dependency — useFocusTrap updated peer dependency range to ^7 || ^8 in v14.2.0 source

  • BREAKING: universal-cookie dependency — useCookies now supports and prefers universal-cookie ^7 || ^8

  • BREAKING: change-case v5 — useChangeCase is now compatible with change-case v5, including internal naming changes

  • DEPRECATED: Alias exports — v14.0.0 deprecated alias exports in favor of original function names for consistency source

  • NEW: watchElement option — useSortable added watchElement in v14.2.0 to auto-reinitialize when target element changes source

  • NEW: updateContainerElementsuseFocusTrap exposed updateContainerElements in v13.6.0 for dynamic container updates source

  • NEW: serializer option — useIDBKeyval added options.serializer in v13.6.0 for custom data serialization source

  • NEW: Component Ref support — useSortable can now accept a Vue component instance/ref as the target element since v13.1.0 source

  • NEW: Thenable useAxiosuseAxios returns are now thenable, allowing await useAxios(...) in async contexts source

  • NEW: Flexible executeuseAxios execute() can now take url or config separately for manual triggers source

  • NEW: initialData option — useAxios added initialData to provide a default value before the request finishes source

  • NEW: Helper functions — moveArrayElement, insertNodeAt, and removeNode are now exported from useSortable source

Also changed: useAsyncValidator internal types · useJwt options refinement · useNProgress reactive state consistency · useSortable type misalignment fix source

Best Practices

  • Import functions from submodules to maximize tree-shaking efficiency and reduce the final bundle size source
ts
// Preferred
import { useAxios } from '@vueuse/integrations/useAxios'

// Avoid
import { useAxios } from '@vueuse/integrations'
  • Await useAxios() directly for one-off requests as the return value is thenable, simplifying promise handling source
ts
const { data, error } = await useAxios('/api/posts')
  • Enable resetOnExecute: true in useAxios options to clear stale data automatically when a new request is triggered source
ts
const { execute } = useAxios('/api/data', { method: 'GET' }, { resetOnExecute: true })
  • Explicitly import useCookies in Nuxt 3 environments to avoid name collisions with Nuxt's built-in useCookie composable source
ts
import { useCookies } from '@vueuse/integrations/useCookies'
  • Use autoUpdateDependencies: true with useCookies to automatically track and update dependencies for any cookie names accessed via .get() source
ts
const { get } = useCookies(['initial'], { autoUpdateDependencies: true })
  • Enable the watchElement: true option in useSortable to automatically reinitialize the instance when the target element changes (e.g., with v-if) source
ts
useSortable(el, list, { watchElement: true })
  • Wrap post-update logic in nextTick() after calling moveArrayElement in useSortable to ensure the DOM update has fully finished source
ts
useSortable(el, list, {
  onUpdate: (e) => {
    moveArrayElement(list, e.oldIndex, e.newIndex)
    nextTick(() => { /* perform post-move logic */ })
  }
})
  • Use nextTick() before calling activate() in useFocusTrap when dealing with conditionally rendered (v-if) elements to ensure they exist in the DOM source
ts
async function openModal() {
  show.value = true
  await nextTick()
  activate()
}
  • Prefer the UseFocusTrap component over the manual composable for automatic activation on mount and cleanup on unmount source
vue
<UseFocusTrap v-if="show" :options="{ immediate: true }">
  <div class="modal">...</div>
</UseFocusTrap>
  • Await the .set() method returned by useIDBKeyval to ensure that the IndexedDB transaction is fully committed before proceeding source
ts
const count = useIDBKeyval('my-count', 0)
await count.set(10)

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

and 27 more files.

Frequently asked questions

What does the Vueuse Integrations Skilld AI skill do?

Integration wrappers for utility libraries. ALWAYS use when writing code importing "@vueuse/integrations". Consult for debugging, best practices, or modifying @vueuse/integrations, vueuse/integrations, vueuse integrations, vueuse.

Why use Vueuse Integrations Skilld on TypingMind?

Because you install it once and use it with any model. Vueuse Integrations Skilld is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Vueuse Integrations Skilld in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/skilld-dev/vue-ecosystem-skills/tree/main/skills/vueuse-integrations-skilld. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Vueuse Integrations Skilld?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Vueuse Integrations Skilld?

As many as you like. As long as a model supports skills, you can use Vueuse Integrations Skilld with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Vueuse Integrations Skilld AI skill free?

Yes. It is published on GitHub by skilld-dev under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇