Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

fore-vip-product前 VIP 产品

Agent Skill

fore-vip-product 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,749

周安装

194

GitHub Stars

公开资料未说明

下载量

1,521
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:fore-vip-product(前 VIP 产品)
来源仓库:https://github.com/onsoul/fore-vip-product
安装命令:
openclaw skills install fore-vip-product
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install fore-vip-product

简介

Fore VIP 产品技能通过 MCP 服务器查询 fore.vip 平台产品目录,浏览 AI 产品和活动。

  • 适用于需要了解最新 AI 产品和市场活动的用户。
  • 兼容 OpenClaw 和 H2O 宿主生态系统。
  • 使用时需确认网络连接和 API 访问权限,确保数据获取正常。
  • 建议核对产品信息的实时性和准确性,避免依赖过时数据。

SKILL.md

name
product
description
AI Agents Skills - Query product catalog from fore.vip platform via MCP Server. Browse AI products, activities, events, and more. Compatible with OpenClaw, Hub, and MCP protocols.
version
0.0.3
license
MIT
keywords

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

EndpointMethodUsageRecommended
/mcp/query_klPOSTQuery products (direct)⭐⭐⭐⭐⭐
/mcp/create_activityPOSTCreate activities (direct)⭐⭐⭐⭐⭐
/tools/listGETList tools (MCP standard)⭐⭐⭐
/tools/callPOSTCall 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

ParameterTypeDefaultDescriptionExample
tagstring-Product tag to filter (AI, 活动,游戏,etc.)"推荐"
limitnumber20Max results (1-100)50
skipnumber0Skip for pagination20

🚀 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)

  1. Validate parameters

- Ensure limit is between 1-100 - Ensure skip is non-negative

  1. 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();
  1. Handle response

- If result.success === true: Display product list - Show total count and pagination info - If result.success === false: Show error message

  1. 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

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

82.7%
按下载量换算1,258

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills