Harness-engineering vue-pinia-pattern

Vue Pinia Pattern

install
source · Clone the upstream repo
git clone https://github.com/Intense-Visions/harness-engineering
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Intense-Visions/harness-engineering "$T" && mkdir -p ~/.claude/skills && cp -r "$T/agents/skills/claude-code/vue-pinia-pattern" ~/.claude/skills/intense-visions-harness-engineering-vue-pinia-pattern && rm -rf "$T"
manifest: agents/skills/claude-code/vue-pinia-pattern/SKILL.md
source content

Vue Pinia Pattern

Manage shared application state with Pinia stores in the Options or Setup style

When to Use

  • Multiple components across different parts of the app need to share and mutate the same state
  • You need DevTools integration for state inspection, time-travel debugging, and hot-module replacement
  • Replacing Vuex in a Vue 3 application

Instructions

  1. Define a store with
    defineStore('id', { state, getters, actions })
    or the Setup syntax.
  2. Prefer the Setup syntax for composable-style stores:
    defineStore('id', () => { ... })
    .
  3. Use
    storeToRefs()
    when destructuring reactive state from a store.
  4. Keep stores focused — one store per domain concept, not one global store.
import { defineStore } from 'pinia';
import { ref, computed } from 'vue';

export const useCounterStore = defineStore('counter', () => {
  const count = ref(0);
  const doubled = computed(() => count.value * 2);
  function increment() {
    count.value++;
  }
  return { count, doubled, increment };
});
  1. Access stores in components:
    const store = useCounterStore()
    .
  2. Use
    store.$reset()
    (Options API stores only) to reset state to initial values.

Details

Pinia is the official state management library for Vue 3. It replaces Vuex with a simpler, type-safe API. Pinia stores are reactive — components that use store state automatically re-render when it changes. Stores are lazy-loaded on first use.

Trade-offs:

  • Adds a dependency — for simple apps,
    provide
    /
    inject
    or composables may suffice
  • Setup-style stores cannot use
    $reset()
    — you must implement reset logic manually
  • Stores are singletons by default — in SSR, each request needs its own Pinia instance to avoid cross-request state pollution

When NOT to use:

  • For component-local state — use
    ref()
    or
    reactive()
    in
    <script setup>
  • For parent-child communication — use props and emits
  • When the state is only shared between a parent and its direct children — use
    provide
    /
    inject

Source

https://patterns.dev/vue/pinia-pattern

Process

  1. Read the instructions and examples in this document.
  2. Apply the patterns to your implementation, adapting to your specific context.
  3. Verify your implementation against the details and edge cases listed above.

Harness Integration

  • Type: knowledge — this skill is a reference document, not a procedural workflow.
  • No tools or state — consumed as context by other skills and agents.

Success Criteria

  • The patterns described in this document are applied correctly in the implementation.
  • Edge cases and anti-patterns listed in this document are avoided.