pinia-documentation-lookup
4
总安装量
2
周安装量
#52845
全站排名
安装命令
npx skills add https://github.com/zatkniz/sporty-group --skill pinia-documentation-lookup
Agent 安装分布
weavefox
1
claude-code
1
Skill 文档
Pinia Documentation Lookup
Access official Pinia documentation for state management patterns, API references, and advanced features.
When to Use
DO USE when:
- Questions about specific Pinia APIs (
defineStore,storeToRefs,$patch, etc.) - State persistence strategies
- SSR/Nuxt-specific Pinia usage
- Advanced features (plugins, subscriptions, hot module replacement)
- Testing Pinia stores
- Store composition patterns
- Migration from Vuex to Pinia
- Composition API setup store patterns
DO NOT USE when:
- Basic store creation covered in project instructions
- Simple state management questions
- General Nuxt questions (use nuxt-documentation-lookup instead)
- Questions about Option Stores (project uses Composition API only)
Process
-
Search Pinia Docs: Use
mcp_nuxt_search_nuxt_docswith query- Searches official Pinia documentation
- Returns relevant sections with content
-
Specific Topics:
- Core Concepts: “defineStore”, “state”, “getters”, “actions”
- Setup Stores: “composition API”, “setup stores”, “ref”, “computed”
- Advanced: “plugins”, “subscriptions”, “$patch”, “hot reload”
- SSR: “server side rendering”, “nuxt”, “hydration”
- TypeScript: “typing stores”, “type inference”, “TypeScript”
- Testing: “testing stores”, “unit tests”, “mocking”
-
Provide Context: Include relevant examples from project instructions
Common Queries
Composition API Patterns
Query: "pinia composition api setup stores"
â Get Composition API store patterns
API Reference
Query: "storeToRefs pinia destructuring"
â Learn how to properly destructure store properties
SSR & Nuxt
Query: "pinia nuxt server side rendering"
â Understand SSR considerations with Pinia
Advanced Features
Query: "pinia plugins custom"
â Learn about creating custom Pinia plugins
State Persistence
Query: "pinia persist state localStorage"
â Find persistence strategies and plugins
Testing
Query: "testing pinia stores unit tests"
â Get testing strategies and examples
Store Composition
Query: "pinia composing stores"
â Learn how to use multiple stores together
Example Workflow
User: “How do I persist Pinia store to localStorage?”
- Search: “pinia persist state localStorage”
- Find documentation on persistence plugins
- Recommend
@pinia-plugin-persistedstate/nuxt - Provide installation and code example adapted to project structure
User: “What’s the difference between setup stores and option stores?”
- Inform: This project uses Composition API (setup stores) ONLY
- Reference project instructions
- Show setup store example from project conventions
- Explain why: consistency with Vue 3 Composition API
User: “How to use stores in server-side code?”
- Search: “pinia nuxt server composables”
- Get SSR-specific documentation
- Explain server context considerations
- Provide Nuxt-specific example
User: “How do I test Pinia stores?”
- Search: “pinia testing unit tests”
- Get testing documentation
- Provide vitest/jest setup example
- Show test examples from project instructions
Integration with Project
PROJECT STANDARD: This project uses EXCLUSIVELY Composition API (setup stores).
Always reference project conventions from stores.instructions.md:
- â Use setup stores ONLY (Composition API style with arrow function)
- â Never use option stores (object with state/getters/actions)
- Use auto-imports (no explicit imports needed)
- Return readonly() for state properties
- Follow naming convention:
use[Domain]Store - Use
storeToRefs()for destructuring reactive properties - Use
ref()for state,computed()for getters
Tools Available
Search Nuxt Docs (includes Pinia)
mcp_nuxt_search_nuxt_docs
- query: Search term for Pinia documentation
For Module Info
mcp_nuxt_get-module
- slug: "@pinia/nuxt" for module details
Response Format
- Direct answer from documentation
- Code example adapted to project structure
- Reference project instructions if applicable
- Additional context for Nuxt 4 compatibility
Common Topics & Keywords
Basic Concepts
- “defineStore” – Creating stores
- “state” – Reactive state
- “getters” – Computed properties
- “actions” – Methods that can be async
Advanced Features
- “storeToRefs” – Destructuring stores
- “$patch” – Batch state updates
- “$reset” – Reset store to initial state
- “$subscribe” – Watch for state changes
- “plugins” – Extend Pinia functionality
Composition API
- “setup stores” – Composition API style stores
- “ref” – Reactive state in setup stores
- “computed” – Getters in setup stores
- “watch” – Watching store changes
SSR & Nuxt
- “nuxt” – Nuxt-specific usage
- “server side rendering” – SSR considerations
- “hydration” – Client-side state hydration
- “useState” – Nuxt composable for SSR state
TypeScript
- “TypeScript” – Type definitions
- “typing stores” – Store type inference
- “typed actions” – Action type safety
Testing
- “testing” – Testing strategies
- “unit tests” – Unit testing stores
- “mocking” – Mocking dependencies
- “setActivePinia” – Testing setup
Important Notes
- Pinia is Vue’s official state management solution (replaces Vuex)
- Setup stores align with Vue 3 Composition API
- Auto-imports via
@pinia/nuxtmodule - SSR-compatible by default in Nuxt
- Lighter and more intuitive than Vuex
- Full TypeScript support with type inference
- No mutations – actions can be synchronous or asynchronous
- DevTools support for debugging