HuDy:韩国节假日与工作日管理 - Openclaw Skills

作者:互联网

2026-04-16

AI教程

什么是 hudy?

HuDy 是一个强大的模型上下文协议 (MCP) 服务器,赋予 AI 智能体处理韩国日历系统细微差别的能力。通过在 Openclaw Skills 生态系统中使用此技能,开发人员可以弥补简单日期算术与复杂的、针对特定地区的业务逻辑之间的差距,这些逻辑考虑了韩国正府规定的假期和特定组织的自定义日期。

对于需要 AI 智能体在韩国市场内执行高精度调度、财务到期日计算或项目管理任务的用户来说,该技能尤其有价值。它直接从韩国正府开放数据门户获取数据,确保假期信息始终准确且是最新的。

下载入口:https://github.com/openclaw/skills/tree/main/skills/kyu1204/hudy

安装与下载

1. ClawHub CLI

从源直接安装技能的最快方式。

npx clawhub@latest install hudy

2. 手动安装

将技能文件夹复制到以下位置之一

全局模式 ~/.openclaw/skills/ 工作区 /skills/

优先级:工作区 > 本地 > 内置

3. 提示词安装

将此提示词复制到 OpenClaw 即可自动安装。

请帮我使用 Clawhub 安装 hudy。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。

hudy 应用场景

  • 通过添加特定的工作日并跳过韩国假期来计算项目交付日期
  • 检查特定日期是否为处理金融交易的工作日
  • 在团队日历中自动管理自定义公司假期
  • 获取特定年份的完整公共假期列表以策划公司活动
hudy 工作原理
  1. AI 智能体使用来自 hudy.co.kr 平台的认证 API 密钥连接到 HuDy MCP 端点。
  2. 当用户请求日期信息时,该技能会查询其官方韩国正府假期数据库。
  3. 该技能应用逻辑排除周末(周周日)和已识别的假期,以计算工作日天数或未来日期。
  4. 对于专业版用户,该技能会将自定义定义的假期覆盖在公共日历之上,以提供个性化结果。

hudy 配置指南

1. 获取 API 密钥

在 hudy.co.kr 注册并在用户仪表板中获取您的 API 密钥。

2. 集成

要使用 Claude Code 将其添加到您的 Openclaw Skills 集合中,请执行:

claude mcp add --transport http hudy https://www.hudy.co.kr/api/mcp -H "x-api-key: YOUR_API_KEY"

对于 Claude Desktop 或 Cursor,请使用以下条目更新您的 mcpServers 配置文件:

{
  "mcpServers": {
    "hudy": {
      "url": "https://www.hudy.co.kr/api/mcp",
      "headers": {
        "x-api-key": "YOUR_API_KEY"
      }
    }
  }
}

hudy 数据架构与分类体系

HuDy 使用标准化数据格式以确保在不同的 AI 智能体和集成之间的兼容性:

字段 描述 格式
日期 标准 ISO 日期格式 YYYY-MM-DD
假期类型 日期的分类 公共 / 自定义
工作日 日期的布尔状态 True / False
iCal 同步 外部日历集成 URL

所有公共假期数据均与韩国正府开放数据门户 (data.go.kr) 同步。

name: hudy
description: "Korean public holidays and business day calculations via HuDy MCP. Query holidays, count business days, add/subtract business days, and manage custom holidays."
metadata:
  openclaw:
    requires:
      env:
        - HUDY_API_KEY
    primaryEnv: HUDY_API_KEY

HuDy - Korean Holiday & Business Day Skill

Use the HuDy MCP server to query Korean public holidays, calculate business days, and manage custom holidays directly from your AI agent.

Setup

1. Get an API Key

Sign up at hudy.co.kr and create an API key from the dashboard.

2. Connect MCP

Claude Code:

claude mcp add --transport http hudy https://www.hudy.co.kr/api/mcp -H "x-api-key: YOUR_API_KEY"

Claude Desktop / Cursor:

{
  "mcpServers": {
    "hudy": {
      "url": "https://www.hudy.co.kr/api/mcp",
      "headers": {
        "x-api-key": "YOUR_API_KEY"
      }
    }
  }
}

Available Tools

get_holidays (Free)

Query Korean public holidays by year or date range.

"2026? ??? ???"
"2026-03-01?? 2026-06-30?? ??? ????"

count_business_days (Pro)

Count business days between two dates, excluding weekends and public holidays.

"2026-03-01?? 2026-03-31?? ??? ?????"
"?? ? ??? ? ???"

add_business_days (Pro)

Calculate the date N business days after a given date.

"2026-03-01?? 10??? ? ?? ???"
"???? 5??? ?? ????"

subtract_business_days (Pro)

Calculate the date N business days before a given date.

"2026-03-31?? 5??? ? ?? ???"

check_business_day (Pro)

Check if a specific date is a business day.

"2026-03-01? ??????"
"?? ????? ????"

Custom Holiday Management (Pro)

Manage user-defined holidays that are included in all business day calculations.

Tool Description
list_custom_holidays List all custom holidays
create_custom_holiday Register a new custom holiday
update_custom_holiday Update an existing custom holiday
delete_custom_holiday Delete a custom holiday
"?? ????? 2026-05-15? ????"
"??? ??? ?? ???"

Plans

Feature Free Pro ($3/mo)
Public holiday lookup ? ?
Monthly API calls 100 5,000
Business day APIs ? ?
Custom holidays ? ?
Calendar sync (iCal) ? ?

Notes

  • All dates use YYYY-MM-DD format.
  • Holiday data is sourced from the Korean government open data portal (data.go.kr).
  • Custom holidays are per-user and automatically included in business day calculations.
  • Calendar sync provides an iCal URL for Google Calendar, Apple Calendar, and Outlook.

相关推荐