スキル一覧に戻る
violetio

open-commerce

by violetio

AI-powered knowledge and agent plugins for Violet, compatible with Claude Code and other AI systems

1🍴 0📅 2026年1月8日
GitHubで見るManusで実行

SKILL.md


name: open-commerce description: Open Commerce MCP and AI operations context

Open Commerce Domain Context

What Is Open Commerce?

Open Commerce enables AI-powered commerce operations through the Model Context Protocol (MCP). It allows AI agents to interact with Violet's commerce capabilities using natural language.

Core Capabilities

MCP Server

  • Natural language product search
  • Order creation and management
  • Cart operations
  • Customer lookup

AI Operations

  • Conversational commerce
  • Automated order processing
  • Intelligent product recommendations
  • Customer service automation

MCP Tools

ToolPurpose
search_productsFind products by natural language query
get_productGet detailed product information
create_cartStart a new shopping cart
add_to_cartAdd products to cart
checkoutComplete purchase
get_orderRetrieve order details
track_orderGet fulfillment status

Example Usage

from mcp import Server

server = Server("violet-commerce")

@server.tool()
async def search_products(query: str, limit: int = 10) -> list:
    """Search for products in the Violet catalog."""
    # Implementation
    pass

@server.tool()
async def create_order(
    customer_email: str,
    items: list[dict],
    shipping_address: dict
) -> dict:
    """Create a new order with the specified items."""
    # Implementation
    pass

Integration Points

  • Violet API: Core commerce operations
  • AI Agents: Claude, GPT, custom agents
  • Chat Platforms: Slack, Discord, custom
  • Voice Assistants: Natural language interfaces

Key Patterns

Stateless Operations

Each MCP call is independent - no session state between calls.

Authentication

  • API key authentication
  • Scoped permissions per tool
  • Rate limiting per key

Error Handling

  • Clear error messages for AI agents
  • Retry guidance in responses
  • Graceful degradation

スコア

総合スコア

45/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

0/5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です