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 skilld-dev/vue-ecosystem-skills --skill tanstack-vue-query-skilldgit clone --depth 1 https://github.com/skilld-dev/vue-ecosystem-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/skilld-dev/vue-ecosystem-skills/tanstack-vue-query-skilld)<a href="https://agentmods.dev/skills/skilld-dev/vue-ecosystem-skills/tanstack-vue-query-skilld"><img src="https://agentmods.dev/badge/skills/skilld-dev/vue-ecosystem-skills/tanstack-vue-query-skilld.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Prompt Injection · line 33 Hidden instructions were detected in comments or invisible text. These could contain malicious directives. Manual review is recommended.Fix: Audit all comments and invisible characters. Remove any instructions that direct the agent to perform unauthorized actions. Use plain, reviewable content.
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.00067 | $0.01672 |
| Opus 5 | $0.00034 | $0.00836 |
| Sonnet 5 | $0.00013 | $0.00334 |
| Haiku 4.5 | $0.00007 | $0.00167 |
Grade A, and why
tanstack-vue-query-skilld 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 8d 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 — 66 lines — stays where its author put it; the contents beside it link to each section on GitHub.
TanStack/query @tanstack/[email protected]
Tags: alpha: 5.0.0-alpha.91, beta: 5.0.0-beta.35, rc: 5.0.0-rc.16
References: Docs
API Changes
This section documents version-specific API changes — prioritize recent major/minor releases.
-
BREAKING:
useQueries()returnsRef<T[]>instead ofReactive<T[]>— Vue 2.7+ compatibility fix that aligns with other composables. Destructuring return value now requires unwrapping ref or usingtoRefs(). Update:const { data } = useQueries(...)becomesconst { data } = useQueries(...).valueorconst { data } = toRefs(useQueries(...))[0]source -
NEW: Composables support
injectionContext—useQuery,useMutation, and other composables can now run in functions with injection context (e.g., router navigation guards), not just componentsetup(). Must use withineffectScopeto prevent memory leaks source -
NEW: Options getter functions in
useQuery— pass reactive getters toqueryKeyandenabledoptions to track changes withoutcomputed(). Example:useQuery({ queryKey: () => ['posts', userId.value], enabled: () => isReady.value })source -
NEW: Options getter functions extended to additional composables —
useInfiniteQuery,useMutation,usePrefetchQuery, andusePrefetchInfiniteQuerynow support reactive getters for all reactive options source -
NEW:
enableDevtoolsV6Pluginoption for Traditional Devtools — integrate with Vue DevTools v6+ for custom inspector and timeline events. Enable:app.use(VueQueryPlugin, { enableDevtoolsV6Plugin: true }). Both v6 and v7 supported source -
EXPERIMENTAL:
experimental_createQueryPersister— persist individual queries to storage (AsyncStorage, LocalStorage, custom). Separate package@tanstack/query-persist-client-core. IncludespersistQueryByKey(),retrieveQuery(),restoreQueries(),persisterGc()utilities. RespectsstaleTimeon restore source
What ships with it
60 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.
- references/discussions/_INDEX.md 2.6 KB
- references/discussions/discussion-10009.md 1.7 KB
- references/discussions/discussion-10021.md 2.2 KB
- references/discussions/discussion-10027.md 1.3 KB
- references/discussions/discussion-10062.md 1.1 KB
- references/discussions/discussion-10068.md 2.2 KB
- references/discussions/discussion-10070.md 1.4 KB
- references/discussions/discussion-10097.md 2.0 KB
- references/discussions/discussion-10130.md 1.1 KB
- references/discussions/discussion-10136.md 1.1 KB
- references/discussions/discussion-9857.md 647 B
- references/discussions/discussion-9860.md 1.5 KB
- references/discussions/discussion-9861.md 1.4 KB
- references/discussions/discussion-9863.md 892 B
- references/discussions/discussion-9869.md 1.1 KB
- references/discussions/discussion-9899.md 2.1 KB
- references/discussions/discussion-9903.md 2.5 KB
- references/discussions/discussion-9912.md 1.5 KB
- references/discussions/discussion-9948.md 1.6 KB
- references/discussions/discussion-9957.md 1.6 KB
- references/discussions/discussion-9999.md 1.9 KB
- references/docs/_INDEX.md 8.5 KB
- references/docs/community-resources.md 7.7 KB
- references/docs/eslint/eslint-plugin-query.md 2.6 KB
- references/docs/eslint/exhaustive-deps.md 2.1 KB
- references/docs/eslint/infinite-query-property-order.md 1.7 KB
- references/docs/eslint/mutation-property-order.md 1.7 KB
- references/docs/eslint/no-rest-destructuring.md 1.1 KB
- references/docs/eslint/no-unstable-deps.md 1.5 KB
- references/docs/eslint/no-void-query-fn.md 855 B
- references/docs/eslint/prefer-query-options.md 3.2 KB
- references/docs/eslint/stable-query-client.md 1.2 KB
- references/docs/framework/vue/devtools.md 6.0 KB
- references/docs/framework/vue/graphql.md 165 B
- references/docs/framework/vue/guides/background-fetching-indicators.md 983 B
- references/docs/framework/vue/guides/caching.md 88 B
- references/docs/framework/vue/guides/custom-client.md 1.9 KB
- references/docs/framework/vue/guides/default-query-function.md 803 B
- references/docs/framework/vue/guides/dependent-queries.md 1.2 KB
- references/docs/framework/vue/guides/disabling-queries.md 1.7 KB
- references/docs/framework/vue/guides/does-this-replace-client-state.md 226 B
- references/docs/framework/vue/guides/filters.md 79 B
- references/docs/framework/vue/guides/important-defaults.md 153 B
- references/docs/framework/vue/guides/infinite-queries.md 1.3 KB
- references/docs/framework/vue/guides/initial-query-data.md 153 B
- references/docs/framework/vue/guides/invalidations-from-mutations.md 601 B
- references/docs/framework/vue/guides/migrating-to-v5.md 1.8 KB
- references/docs/framework/vue/guides/mutations.md 2.1 KB
- references/docs/framework/vue/guides/network-mode.md 94 B
- references/docs/framework/vue/guides/optimistic-updates.md 140 B
- references/docs/framework/vue/guides/paginated-queries.md 1.3 KB
- references/docs/framework/vue/guides/parallel-queries.md 800 B
- references/docs/framework/vue/guides/placeholder-query-data.md 837 B
- references/docs/framework/vue/guides/polling.md 184 B
- references/docs/framework/vue/guides/prefetching.md 1.9 KB
- references/docs/framework/vue/guides/queries.md 1.3 KB
- references/docs/framework/vue/guides/query-cancellation.md 449 B
- references/docs/framework/vue/guides/query-functions.md 428 B
- references/docs/framework/vue/guides/query-invalidation.md 152 B
- references/docs/framework/vue/guides/query-keys.md 338 B
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.
- 8d ago First seen · 66 lines · 67 tokens per session scan A 0bbd5c972c73
tanstack-vue-query-skilld is a skill published in the GitHub repository skilld-dev/vue-ecosystem-skills (178 stars, last pushed 25d ago), licensed MIT. It adds 67 tokens to every session and 1,672 once invoked, about $0.0003 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.
Other skills, from other repositories
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.
create-site
Creates a new Power Pages code site (SPA) using React, Angular, Vue, or Astro. Guides through the full process from initial concept to deployed site: requirements discovery, scaffolding, component planning, design, implementation, validation, and deployment. Use when the user wants to create, build, or scaffold a new…
v3-create-crud
A page generator for standard create, read, update, and delete screens, commonly called CRUD screens. It uses Element Plus, a Vue user-interface library, to build tables, searches, pagination, forms, and delete confirmations.
v3-use-composables
Documentation for reusable Vue functions in a project, covering device detection, asynchronous dropdown data, loading screens, pagination, routing, themes, page titles, and watermarks.
moai-domain-uiux
UI/UX design systems specialist covering accessibility, icons, theming, design tokens, and user experience patterns. Use when working on design systems, WCAG compliance, ARIA patterns, or dark mode theming.
frontend-conventions
Frontend convention reference (SvelteKit / Svelte 5). Auto-injected into frontend-aware agents - not user-invocable.