← 返回 Skills 市场
onsoul

Product

作者 Fore.vip · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
156
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install fore-vip-product
功能描述
AI Agents Skills - Query product catalog from fore.vip platform via MCP Server. Browse AI products, activities, events, and more. Compatible with OpenClaw, H...
使用说明 (SKILL.md)

Product Query Skill - AI Agents Skills for fore.vip

Query and browse the AI product catalog (KL collection) from the fore.vip platform via MCP Server. This AI Agent Skill is designed for OpenClaw, Hub, and other MCP-compatible platforms.

🔥 Popular Keywords

AI Agents | Skills | MCP Server | OpenClaw | Product | 活动 (Activities) | Hub | AI 智能体 | fore.vip | 产品目录

📋 When to Use

Use this AI Agent Skill when you want to:

  • 🤖 Browse AI products and AI agents on fore.vip platform
  • 🏷️ Search products by tag (e.g., "推荐", "热门", "新品", "游戏", "AI")
  • 📦 View product details (name, description, images, URLs)
  • 📑 Get paginated product lists with SEO-optimized metadata
  • 🎯 Discover activities and events related to products
  • 🔗 Access product hub links for OpenClaw integration

🌐 MCP Server Configuration

Architecture

The fore.vip MCP Server provides two endpoints for AI Agents and Skills integration:

  1. Direct MCP Endpoint (Recommended) - https://api.fore.vip/mcp/*
  2. Tools Protocol Endpoint (MCP Standard) - https://api.fore.vip/tools/*

Endpoints

Endpoint Method Usage Recommended
/mcp/query_kl POST Query products (direct) ⭐⭐⭐⭐⭐
/mcp/create_activity POST Create activities (direct) ⭐⭐⭐⭐⭐
/tools/list GET List tools (MCP standard) ⭐⭐⭐
/tools/call POST Call tool (MCP standard) ⭐⭐⭐

Direct Call (Recommended for OpenClaw & Hub)

curl -X POST https://api.fore.vip/mcp/query_kl \
  -H "Content-Type: application/json" \
  -d '{
    "tag": "推荐",
    "limit": 10
  }'

Response:

{
  "success": true,
  "total": 10,
  "limit": 10,
  "skip": 0,
  "hasMore": false,
  "data": [
    {
      "id": "670703627ae7081fd93d09f1",
      "name": "AI 文案助手",
      "content": "请你扮演一个优质 AI 文案助手...",
      "pic": [],
      "tag": "推荐",
      "hot": 21307866,
      "update_date": 1234567890
    }
  ]
}

Via Tools Protocol (MCP Standard for AI Agents)

curl -X POST https://api.fore.vip/tools/call \
  -H "Content-Type: application/json" \
  -d '{
    "name": "query_kl",
    "arguments": {
      "tag": "推荐",
      "limit": 10
    }
  }'

Response:

{
  "jsonrpc": "2.0",
  "result": {
    "content": [{
      "type": "text",
      "text": "{\"success\":true,\"total\":10,...}"
    }],
    "isError": false
  }
}

📝 Parameters

Optional

Parameter Type Default Description Example
tag string - Product tag to filter (AI, 活动,游戏,etc.) "推荐"
limit number 20 Max results (1-100) 50
skip number 0 Skip for pagination 20

🚀 Steps for AI Agents

  1. Collect search parameters from user

    • Ask for product tag/category (optional: AI, 活动,游戏,热门)
    • Ask for number of results (default: 20, max: 100)
    • Ask for page number (for pagination)
  2. Validate parameters

    • Ensure limit is between 1-100
    • Ensure skip is non-negative
  3. Call MCP Server (OpenClaw & Hub Compatible)

    const response = await fetch('https://api.fore.vip/mcp/query_kl', {
      method: 'POST',
      headers: { 'Content-Type': 'application/json' },
      body: JSON.stringify({
        tag: '推荐',
        limit: 10,
        skip: 0
      })
    });
    
    const result = await response.json();
    
  4. Handle response

    • If result.success === true: Display product list
    • Show total count and pagination info
    • If result.success === false: Show error message
  5. Display products (SEO-Optimized Format)

    • Show product name, description, images
    • Include product URL: https://fore.vip/p?id={id}
    • Provide navigation for next/previous page
    • Add keywords: AI Agents, Skills, MCP, OpenClaw, Hub

📦 Example Request

{
  "tag": "推荐",
  "limit": 10,
  "skip": 0
}

📊 Example Response

{
  "success": true,
  "total": 10,
  "limit": 10,
  "skip": 0,
  "hasMore": false,
  "data": [
    {
      "id": "670703627ae7081fd93d09f1",
      "name": "AI 文案助手",
      "content": "请你扮演一个优质 AI 文案助手...",
      "pic": [],
      "tag": "推荐",
      "hot": 21307866,
      "update_date": 1234567890,
      "url": "https://fore.vip/p?id=670703627ae7081fd93d09f1"
    }
  ]
}

🔗 Product URL Pattern

Each product can be accessed via the following URL pattern:

https://fore.vip/p?id={product_id}

Example:

  • Product ID: 670703627ae7081fd93d09f1
  • Product URL: https://fore.vip/p?id=670703627ae7081fd93d09f1

Display Format (SEO-Optimized for AI Agents & OpenClaw)

When displaying products, include the clickable URL:

- **[产品名]** (热度:xxx) - AI Agents Skills
  - 简介:产品描述内容...
  - 🏷️ 标签:tag
  - 🔗 链接:https://fore.vip/p?id=产品 ID
  - 🌐 平台:fore.vip | OpenClaw | Hub | MCP

⚠️ Error Handling

Common errors for AI Agents and Skills:

  • Invalid limit value (must be 1-100)
  • Invalid skip value (must be >= 0)
  • Network errors (MCP Server timeout)
  • Authentication errors (OpenClaw & Hub)

💻 Implementation Details

Cloud Object URL Trigger:

  • After URL triggering, POST request body is a string
  • Must use this.getHttpInfo().body to get the body
  • Must manually JSON.parse() to convert string to object
// Cloud Object Code (mcp/index.obj.js)
async query_kl() {
  const httpInfo = this.getHttpInfo();
  const pm = JSON.parse(httpInfo.body);  // String → Object
  const { tag, limit = 20, skip = 0 } = pm;
  // ... business logic
}

📌 Notes

  • Default limit is 20, maximum is 100
  • Use skip for pagination (skip = (page-1) * limit)
  • Products are sorted by hot (desc) and update_date (desc)
  • Images are returned as arrays of image objects
  • The skill uses MCP Server protocol for AI Agents communication
  • Each product has an accessible URL: https://fore.vip/p?id={id}
  • Compatible with OpenClaw, Hub, and other MCP platforms
  • SEO Keywords: AI Agents, Skills, MCP, Product, 活动,OpenClaw, Hub, fore.vip

🏷️ SEO Metadata

Primary Keywords:

  • AI Agents Skills
  • MCP Server
  • OpenClaw Skills
  • Product Catalog
  • fore.vip Products
  • AI 智能体技能
  • 产品查询
  • 活动管理

Secondary Keywords:

  • Hub Integration
  • Activity Creation
  • AI Product Discovery
  • MCP Protocol
  • Agent Skills Marketplace
  • 智能体产品目录
  • OpenClaw 插件

Long-tail Keywords:

  • How to query products with AI Agents
  • fore.vip MCP Server integration
  • OpenClaw product search skill
  • Create activities with MCP protocol
  • AI Agents skills for product management
  • 如何使用 AI 智能体查询产品
  • fore.vip 平台产品目录 API

Version: 0.0.3 (SEO Optimized)
Last Updated: 2026-03-22
Compatible With: OpenClaw, Hub, MCP Server, AI Agents
Platform: fore.vip

安全使用建议
This skill is coherent and primarily documents how to call https://api.fore.vip/mcp endpoints to list and paginate products. Before installing: 1) Confirm you trust api.fore.vip (network calls will be made to that host). 2) Verify whether your MCP/OpenClaw deployment requires authentication — if so, understand how tokens are supplied (the skill does not request credentials itself). 3) Review the small test_local.sh if you plan to run it locally (it performs curl requests to the public API). 4) The docs include a stray local path reference (development artifact) — harmless but worth noting. If you need the agent to avoid contacting external URLs automatically, restrict autonomous invocation or network access in your agent runtime.
功能分析
Type: OpenClaw Skill Name: fore-vip-product Version: 1.0.0 The skill bundle provides a standard interface for querying a product catalog from the fore.vip platform using the Model Context Protocol (MCP). It defines clear API endpoints (e.g., https://api.fore.vip/mcp/query_kl) and includes a functional test script (test_local.sh) and comprehensive documentation. No evidence of data exfiltration, malicious execution, or harmful prompt injection was found; the content is consistent with its stated purpose of product discovery and catalog browsing.
能力评估
Purpose & Capability
The name/description (product catalog query for fore.vip via MCP) matches the manifest and SKILL.md. No binaries, secrets, or unrelated services are requested. All declared endpoints and examples are consistent with a product-query skill.
Instruction Scope
Runtime instructions restrict the agent to collecting query parameters, validating them, and calling fore.vip MCP endpoints. The SKILL.md includes example cloud-function snippets and a guidance to parse request bodies (this.getHttpInfo().body + JSON.parse), which is expected for MCP integration. One documentation file (SKILL_cn.md) also lists absolute local developer paths (/Users/codes/...), which is an extraneous doc artifact but does not instruct the agent to read local files or secrets.
Install Mechanism
No install spec is provided (instruction-only skill), which is low risk. The repository includes a test_local.sh that runs curl against https://api.fore.vip — a benign network test. No external downloads, package installs, or extract operations are present.
Credentials
The skill declares no required environment variables or credentials, which aligns with the documented unauthenticated examples. Note: documentation mentions potential 'Authentication errors (OpenClaw & Hub)'; if the MCP endpoints require platform-specific auth in your deployment, the skill does not declare or request those credentials — you should confirm how your platform will provide any needed tokens and that you are comfortable granting them.
Persistence & Privilege
The skill is not marked always:true and does not request persistent system-level changes. It does not modify other skills' configurations or request system-wide credentials.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install fore-vip-product
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /fore-vip-product 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
20260323 V0.0.1
元数据
Slug fore-vip-product
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Product 是什么?

AI Agents Skills - Query product catalog from fore.vip platform via MCP Server. Browse AI products, activities, events, and more. Compatible with OpenClaw, H... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 156 次。

如何安装 Product?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install fore-vip-product」即可一键安装,无需额外配置。

Product 是免费的吗?

是的,Product 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Product 支持哪些平台?

Product 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Product?

由 Fore.vip(@onsoul)开发并维护,当前版本 v1.0.0。

💬 留言讨论