chinese-domain-news

Installation
SKILL.md

中文域名新闻稿生成器

根据用户提供的 xlsx 文件,逐一生成人民网风格的中文域名启用新闻稿(.md 格式)。

第一步:读取 xlsx 文件

运行脚本读取 xlsx 文件内容。脚本要做的事:打印表头(第一行),然后逐行读出公司名称和中文域名两列数据。

示例脚本(如环境支持执行 Python):

import openpyxl
wb = openpyxl.load_workbook('用户文件路径')
ws = wb.active
headers = [cell.value for cell in ws[1]]
print("表头:", headers)
for row in ws.iter_rows(min_row=2, values_only=True):
    print(row)
Installs
2
First Seen
Aug 4, 2026
chinese-domain-news — leenbj/wangzhi-anli-skill