Execute qualquer Skill no Manus
com um clique
com um clique
Execute qualquer Skill no Manus com um clique
Começar$pwd:
$ git log --oneline --stat
stars:295
forks:35
updated:24 de abril de 2026 às 08:05
SKILL.md
端到端 pipeline —— 抓 X/知乎/Bilibili AI 相关热门 → 整理成 wiki → 推送飞书日报
Prax 风格的 Git 工作流,强调最小 diff、验证后提交和清晰状态。
Prax 风格的 TDD 工作流,强调 RED → GREEN → VERIFY。
在提交、交付或大型改动后运行 Prax 风格的验证闭环。
用 AutoCLI 二进制驱动用户已登录的 Chrome 抓取 Twitter/X、知乎、Bilibili、Reddit 等 55+ 站点
中文编程优化 — 注释、文档和错误信息使用中文
| name | domestic-integration |
| description | 国内生态集成 — 微信、支付宝、阿里云、腾讯云等国内服务 |
| allowed-tools | ["Read","Write","Edit","Bash"] |
| model | glm-5 |
| triggers | ["微信","支付宝","阿里云","腾讯云","华为云","国内","wechat","alipay","wecom","企业微信","钉钉","oss","cos"] |
| tags | ["domestic","china","integration","payment","cloud"] |
| priority | 10 |
import httpx
async def send_wecom_message(webhook_url: str, content: str) -> bool:
"""发送企业微信机器人消息。"""
payload = {
"msgtype": "text",
"text": {"content": content}
}
async with httpx.AsyncClient() as client:
resp = await client.post(webhook_url, json=payload)
return resp.json().get("errcode") == 0