Comprehensive Claude Code skill for Vendure e-commerce development. Provides expert knowledge on headless commerce, GraphQL APIs, plugins, payments, and Dashboard extensions from official documentation.
git clone https://github.com/niko91i/Skills-Vendure.gitComprehensive Claude Code skill for Vendure e-commerce development. Provides expert knowledge on headless commerce, GraphQL APIs, plugins, payments, and Dashboard extensions from official documentation.
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/niko91i/Skills-VendureCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
I'm developing an e-commerce platform using Vendure. I need help with [SPECIFIC TASK] related to [ASPECT OF VENDURE: headless commerce, GraphQL APIs, plugins, payments, or Dashboard extensions]. Can you provide a step-by-step guide with code examples and best practices? My [COMPANY] is in the [INDUSTRY] industry, and we're using [TECHNOLOGY STACK].
# Vendure GraphQL API Integration Guide
## Overview
This guide will walk you through integrating Vendure's GraphQL API into your e-commerce platform for [COMPANY], a [INDUSTRY] company using [TECHNOLOGY STACK].
## Step 1: Set Up Vendure Server
```typescript
// Install Vendure CLI globally
npm install -g @vendure/cli
// Create a new Vendure project
vendure init my-vendure-project
cd my-vendure-project
```
## Step 2: Configure GraphQL API
```typescript
// In your vendure-config.ts file
import { VendureConfig } from '@vendure/core';
const config: VendureConfig = {
apiOptions: {
port: 3000,
adminApiPath: '/admin-api', // Path to the Admin API
shopApiPath: '/shop-api', // Path to the Shop API
// ... other options
},
// ... other configuration
};
export default config;
```
## Step 3: Query the GraphQL API
```graphql
query GetProducts {
products {
items {
id
name
description
price
}
}
}
```
For more advanced queries and mutations, refer to the [Vendure GraphQL API Documentation](https://www.vendure.io/docs/graphql-api/).Create Beautiful Branded Deliverables. Ship Professionally. Repeat.
AI assistant built for thoughtful, nuanced conversation
IronCalc is a spreadsheet engine and ecosystem
Customer feedback management made simple
Enterprise workflow automation and service management platform
Automate your spreadsheet tasks with AI power
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan