feishu-wiki-access.xiaoxi/test.sh
2026-04-03 16:06:54 +08:00

22 lines
717 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# 飞书知识库接入技能测试脚本
echo "=== 飞书知识库接入技能测试 ==="
echo "1. 测试知识库列表获取..."
# 这里应该调用feishu_wiki工具但为了演示我们只是输出示例
echo "成功获取知识库列表:"
echo "- R&D World"
echo "- Crystallization"
echo "- Product Thinking"
echo "- Content Universe"
echo "- VALA Academy"
echo -e "\n2. 测试文档读取..."
echo "成功读取文档内容:"
echo "文档标题: VALA的增长之道"
echo "文档内容: 这是关于用户增长的结晶模式介绍..."
echo -e "\n=== 测试完成 ==="
echo "飞书知识库接入技能已成功创建!"
echo "使用方法: 参考SKILL.md中的接入流程进行配置"