Token导航 LogoToken导航TokenDH.com
前端设计external-servicegithub未标认证来源可访问许可证需确认审计通过

piniapinia 搜索

Agent Skill

pinia 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

523

周安装

22

GitHub Stars

12

下载量

183
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pinia(pinia 搜索)
来源仓库:https://github.com/claude-dev-suite/claude-dev-suite
仓库路径:skills/pinia
安装命令:
npx skills add https://github.com/claude-dev-suite/claude-dev-suite --skill pinia
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/claude-dev-suite/claude-dev-suite --skill pinia

简介

pinia 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态进行整理。

  • 它提供 Vue 3 的状态管理实现,包括 store 定义、getters 计算属性和 actions 异步操作。
  • 使用时需结合项目现有设计模式,避免重复造轮子;涉及复杂状态时应考虑使用插件扩展功能。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • pinia 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Pinia Core Knowledge

Store Definition

import { defineStore } from 'pinia';

export const useCounterStore = defineStore('counter', {
  state: () => ({
    count: 0,
    name: 'Eduardo',
  }),

  getters: {
    doubleCount: (state) => state.count * 2,
    doublePlusOne(): number {
      return this.doubleCount + 1;
    },
  },

  actions: {
    increment() {
      this.count++;
    },
    async fetchData() {
      const data = await api.getData();
      this.count = data.count;
    },
  },
});
Deep Knowledge: Use mcp__documentation__fetch_docs with technology: pinia for comprehensive documentation.

Setup Syntax (Composition API)

export const useCounterStore = defineStore('counter', () => {
  const count = ref(0);
  const name = ref('Eduardo');

  const doubleCount = computed(() => count.value * 2);

  function increment() {
    count.value++;
  }

  async function fetchData() {
    const data = await api.getData();
    count.value = data.count;
  }

  return { count, name, doubleCount, increment, fetchData };
});

Usage in Components

<script setup>
import { useCounterStore } from '@/stores/counter';
import { storeToRefs } from 'pinia';

const store = useCounterStore();

// Reactive destructure
const { count, doubleCount } = storeToRefs(store);

// Actions can be destructured directly
const { increment } = store;
</script>

<template>
  <button @click="increment">{{ count }}</button>
  <p>Double: {{ doubleCount }}</p>
</template>

Persist Plugin

import { createPinia } from 'pinia';
import piniaPluginPersistedstate from 'pinia-plugin-persistedstate';

const pinia = createPinia();
pinia.use(piniaPluginPersistedstate);

// In store
export const useUserStore = defineStore('user', {
  state: () => ({ token: '' }),
  persist: true, // or { storage: sessionStorage }
});

When NOT to Use This Skill

ScenarioUse Instead
React applicationszustand or redux-toolkit
Server state (API data, caching)Vue composables with useFetch or useAsyncData
Component-local stateVue's ref/reactive
Vuex legacy projectsMigrate to Pinia first, or keep Vuex for now
Simple key-value storagelocalStorage or sessionStorage directly

Anti-Patterns

Anti-PatternWhy It's BadCorrect Approach
Using Options API storesLess flexible than Composition APIUse defineStore with setup function
Not using storeToRefsLoses reactivity on destructuringWrap with storeToRefs(store)
Storing server data in PiniaNo cache invalidationUse composables with fetch/axios
Persisting everythingLarge storage, security risksOnly persist necessary state
Mutating state from componentsBreaks single source of truthAlways use actions
Circular dependencies between storesHard to debug, initialization issuesUse getters or separate composables
Not resetting stores on logoutData leaks between usersCall $reset() or reset manually
Using global Pinia instance everywhereHard to testPass pinia instance explicitly in tests
No TypeScript typesLoses type safetyDefine interfaces for state/getters/actions
Accessing stores outside setupCan cause reactivity issuesOnly use stores in setup or composables

Quick Troubleshooting

IssueCauseSolution
Lost reactivity after destructuringNot using storeToRefsUse const {count} = storeToRefs(store)
"getActivePinia was called with no active Pinia"Store used before app mount or outside VueEnsure app.use(pinia) before accessing stores
Persist not workingPlugin not installedAdd pinia.use(piniaPluginPersistedstate)
State not resetting with $reset()Using setup syntax without reset logicManually implement reset or use Options API
TypeScript errors with gettersWrong return type inferenceExplicitly type getter return value
Actions not updating componentsState not reactiveUse ref() or reactive() in setup stores
Hot reload breaks storesHMR issues with ViteAdd if (import.meta.hot) {acceptHMRUpdate(...)}
Can't access router in storeRouter not injectedInject router via plugin or pass as argument

Production Readiness

Store Organization

// stores/index.ts - Centralized store setup
import { createPinia } from 'pinia';
import piniaPluginPersistedstate from 'pinia-plugin-persistedstate';
import { markRaw } from 'vue';
import router from '@/router';

export const pinia = createPinia();

// Add plugins
pinia.use(piniaPluginPersistedstate);

// Add router to all stores
pinia.use(({ store }) => {
  store.router = markRaw(router);
});

// stores/authStore.ts - Production-ready auth store
export const useAuthStore = defineStore('auth', () => {
  const user = ref<User | null>(null);
  const token = ref<string | null>(null);
  const isAuthenticated = computed(() => !!token.value);

  async function login(credentials: LoginCredentials) {
    try {
      const response = await api.login(credentials);
      token.value = response.token;
      user.value = response.user;
      return { success: true };
    } catch (error) {
      return { success: false, error: error.message };
    }
  }

  function logout() {
    token.value = null;
    user.value = null;
    // Clear all other stores
    const userStore = useUserStore();
    userStore.$reset();
  }

  return { user, token, isAuthenticated, login, logout };
}, {
  persist: {
    key: 'auth',
    storage: localStorage,
    paths: ['token'], // Only persist token
  },
});

Security Best Practices

// Secure persistence with encryption
import CryptoJS from 'crypto-js';
import type { StorageLike } from 'pinia-plugin-persistedstate';

const SECRET = import.meta.env.VITE_STORE_SECRET;

const encryptedStorage: StorageLike = {
  getItem(key: string): string | null {
    const encrypted = localStorage.getItem(key);
    if (!encrypted) return null;
    try {
      const bytes = CryptoJS.AES.decrypt(encrypted, SECRET);
      return bytes.toString(CryptoJS.enc.Utf8);
    } catch {
      return null;
    }
  },
  setItem(key: string, value: string): void {
    const encrypted = CryptoJS.AES.encrypt(value, SECRET).toString();
    localStorage.setItem(key, encrypted);
  },
};

export const useSecureStore = defineStore('secure', {
  state: () => ({ sensitiveData: null }),
  persist: {
    storage: encryptedStorage,
  },
});

Testing Stores

// tests/stores/authStore.test.ts
import { setActivePinia, createPinia } from 'pinia';
import { useAuthStore } from '@/stores/authStore';
import { vi } from 'vitest';

describe('AuthStore', () => {
  beforeEach(() => {
    setActivePinia(createPinia());
  });

  it('should login successfully', async () => {
    const store = useAuthStore();
    vi.spyOn(api, 'login').mockResolvedValue({
      token: 'jwt-token',
      user: { id: '1', name: 'John' },
    });

    const result = await store.login({ email: 'test@example.com', password: 'password' });

    expect(result.success).toBe(true);
    expect(store.isAuthenticated).toBe(true);
    expect(store.user?.name).toBe('John');
  });

  it('should clear state on logout', () => {
    const store = useAuthStore();
    store.token = 'token';
    store.user = { id: '1', name: 'John' };

    store.logout();

    expect(store.token).toBeNull();
    expect(store.user).toBeNull();
    expect(store.isAuthenticated).toBe(false);
  });
});

Error Handling

// stores/errorStore.ts
export const useErrorStore = defineStore('error', () => {
  const errors = ref<AppError[]>([]);

  function addError(error: AppError) {
    errors.value.push({
      ...error,
      id: crypto.randomUUID(),
      timestamp: Date.now(),
    });

    // Auto-remove after 5 seconds
    setTimeout(() => {
      removeError(error.id);
    }, 5000);
  }

  function removeError(id: string) {
    errors.value = errors.value.filter((e) => e.id !== id);
  }

  return { errors, addError, removeError };
});

// Usage with composable
export function useApi<T>(fn: () => Promise<T>) {
  const errorStore = useErrorStore();
  const loading = ref(false);
  const data = ref<T | null>(null);

  async function execute() {
    loading.value = true;
    try {
      data.value = await fn();
    } catch (error) {
      errorStore.addError({ message: error.message, type: 'error' });
    } finally {
      loading.value = false;
    }
  }

  return { data, loading, execute };
}

Monitoring Metrics

MetricTarget
Store hydration time< 50ms
Action execution time< 100ms
Memory footprintMinimal
Test coverage> 90%

Checklist

  • Composition API stores (setup syntax)
  • storeToRefs for reactive destructuring
  • Persist plugin for auth state
  • Encrypted storage for sensitive data
  • $reset() for clearing state
  • Router accessible in stores
  • Comprehensive store tests
  • Error handling with error store
  • DevTools integration
  • No circular dependencies between stores

Reference Documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.1%
按下载量换算66

Claude

27.75%
按下载量换算51

Cursor

18.5%
按下载量换算34

Gemini CLI

9.27%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills