Fetch Lark/Feishu document and convert to Markdown. Use this skill to get troubleshooting guides and operation instructions from Lark documents.
npx skills add https://github.com/XiaoMi/mone --skill lark-docInstallieren Sie diesen Skill über die CLI und beginnen Sie mit der Verwendung des SKILL.md-Workflows in Ihrem Arbeitsbereich.
This skill provides two capabilities:
Fetch Document:
Append Summary:
uv run python .claude/skills/lark-doc/fetch_doc.py
uv run python .claude/skills/lark-doc/append_summary.py \
-t "问题标题" \
-p "问题描述" \
-s '["排查步骤1", "排查步骤2", "排查步骤3"]' \
-o "解决方案" \
-n "可选备注"
Parameters:
-t, --title: Title of the troubleshooting case (required)-p, --problem: Description of the problem (required)-s, --steps: JSON array of troubleshooting steps taken (required)-o, --solution: The solution that resolved the issue (required)-n, --notes: Optional additional notesLARK_APP_ID: Lark application IDLARK_APP_SECRET: Lark application secretLARK_DOC_URL: The Lark document URL to fetch/append toLARK_DOMAIN: (Optional) Custom domain for enterprise LarkReturns Markdown formatted content of the Lark document, including:
Returns JSON with success status:
{
"success": true,
"documentId": "xxx",
"url": "https://...",
"message": "Successfully appended troubleshooting summary: ..."
}
# Troubleshooting Guide
## Common Issues
### Issue 1: Service Not Starting
1. Check the logs
2. Verify configuration
3. Restart the service
### Issue 2: Connection Timeout
- Check network connectivity
- Verify firewall rules
The summary will be appended to the document with the following structure:
---
### 问题标题 (2025-01-15 14:30)
#### 问题描述
问题的详细描述...
#### 排查步骤
- 排查步骤1
- 排查步骤2
- 排查步骤3
#### 解决方案
解决方案的详细说明...
#### 备注
可选的备注信息...