TopRank Skills

Home / Claw Skills / API 集成 / Pharmaceutical Bidding
Official OpenClaw rules 36%

Pharmaceutical Bidding

Pharmaceutical System Bidding Information Collection Skill

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Pharmaceutical Bidding 技能。 若已安装,则直接安装 Pharmaceutical Bidding 技能。

Overview

Skill Key
elliotlaw/pharmaceutical-bidding
Author
elliotlaw
Source Repo
openclaw/skills
Version
-
Source Path
skills/elliotlaw/pharmaceutical-bidding
Latest Commit SHA
b56e84addecd5d0b617c5f3565c8de0d4de95b25

Extracted Content

SKILL.md excerpt

# Pharmaceutical System Bidding Information Collection Skill

## Overview
This skill automates the collection and analysis of pharmaceutical system related bidding information from provincial procurement websites. It performs verification, filtering, and evaluation to identify promising bidding opportunities for sales teams.

## Workflow

### 1. Information Collection
- **Source**: Search provincial procurement websites using targeted keywords
- **Query**: "药学系统" (pharmaceutical system) related bidding information
- **Output**: Collect bidding information with source URLs

### 2. Verification & Filtering
For each collected item, verify all criteria:
- ✅ Product is a pharmaceutical system
- ✅ Deadline for obtaining bidding documents > 2 days
- ❌ Skip if any criteria fail

### 3. Secondary Research (if needed)
- When source URLs lack sufficient information
- Use search engines to gather additional details
- Apply same verification criteria

### 4. Data Recording
Record key information in WeChat Work smart table:
- 购标截止日期 (Bid document deadline)
- 开标日期 (Bid opening date)
- 招标单位 (Bidding unit)
- 项目名称 (Project name)
- 预算金额 (Budget amount)
- 涉及产品范围 (Product scope)
- 对应负责销售 (Responsible sales person)

### 5. Evaluation & Bidding Suggestions
**If bidding documents available:**
- Analyze bidding qualifications
- Review technical parameters
- Assess project budget
- Evaluate bid opening time
- Provide bidding recommendations

**If no bidding documents available:**
- Evaluate bid opening time
- Assess project budget
- Analyze product requirements
- Provide bidding recommendations

### 6. Project Classification
Mark as "可参与项目" (Participate) if meeting ANY criteria:
- 开标时间 - 当日日期 > 10天 AND 购标截止日期 - 当日日期 > 2天
- 项目预算金额 > 100万元
- 招标单位为三级医院或县人民医院

## Scheduled Execution
- **Time**: Daily at 8:30 AM
- **Action**: Automatically collect and populate WeChat Work smart table

## Required Tools
- Web...

README excerpt

# 药学系统招标信息收集技能

## 功能概述

这个技能实现了完整的药学系统招标信息收集、验证、评估和管理工作流程,包括:

- 自动搜索省级招标网站
- 验证和筛选符合条件的招标信息
- 二次搜索补充信息
- 记录到企微智能表格
- 评估投标建议
- 标记可参与项目

## 安装和使用

### 1. 安装依赖

```bash
cd skills/pharmaceutical-bidding
npm install
```

### 2. 配置设置

编辑 `config.json` 文件,配置:

- 招标网站列表
- 搜索关键词
- 企微智能表格API信息
- 定时任务设置

### 3. 启动服务

```bash
# 开发模式
npm run dev

# 生产模式
npm start
```

### 4. 定时任务

技能已配置为每天早上8:30自动执行,收集最新招标信息。

## 工作流程详解

### 步骤1: 信息收集
- 使用关键词搜索省级招标网站
- 收集药学系统相关的招标信息
- 记录信息出处地址

### 步骤2: 验证筛选
**验证条件:**
- ✅ 招标产品是药学系统
- ✅ 获取招标文件截止时间 > 2天

### 步骤3: 二次搜索
- 对信息不完整的项目进行搜索引擎二次查询
- 补充招标单位、预算、开标时间等信息

### 步骤4: 数据记录
将关键信息记录到企微智能表格:
- 购标截止日期
- 开标日期
- 招标单位
- 项目名称
- 预算金额
- 涉及产品范围
- 对应负责销售

### 步骤5: 评估分析
**有招标文件时:**
- 分析投标资质
- 审查技术参数
- 评估项目预算
- 评估开标时间

**无招标文件时:**
- 基于可用信息评估
- 给出投标建议

### 步骤6: 项目分类
标记为"可参与项目"的条件(满足任一):
- 开标时间 - 当前日期 > 10天 AND 购标截止日期 - 当前日期 > 2天
- 项目预算金额 > 100万
- 招标单位为三级医院或县人民医院

## 配置说明

### 招标网站配置
在 `config.json` 中添加需要监控的省级招标网站:

```json
{
  "procurement": {
    "websites": [
      {
        "name": "省级招标网",
        "url": "https://www.provincial-gov.cn",
        "enabled": true
      }
    ]
  }
}
```

### 企微智能表格配置
配置企微API信息:

```json
{
  "wechatWork": {
    "webhookUrl": "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=YOUR_KEY",
    "smartTableId": "TABLE_ID",
    "departmentId": "DEPT_ID",
    "apiToken": "YOUR_TOKEN"
  }
}
```

## 监控和维护

### 日志查看
技能运行日志保存在 `logs/bidding-collector.log`

### 手动执行
```bash
node main.j...

Related Claw Skills