supermap:supermap-search
Installation
SKILL.md
Supermap 统一搜索技能
同时搜索 wiki、jira、youtrack 三个系统,整合展示搜索结果。
使用方法
/supermap:supermap-search <搜索关键词>
示例:
/supermap:supermap-search iManager- 搜索所有系统中与 iManager 相关的内容/supermap:supermap-search 部署- 搜索所有系统中与部署相关的内容
执行方式
Claude 应该并行执行以下三个搜索:
- Wiki 搜索
python3 .claude/skills/supermap-wiki-search/scripts/search_wiki.py "<搜索词>"
- Jira 搜索
python3 .claude/skills/supermap-jira-search/scripts/search_jira.py "<搜索词>"
- YouTrack 搜索
python3 .claude/skills/supermap-youtrack-search/scripts/search_youtrack.py "<搜索词>"
输出格式
结果按以下格式展示:
## Wiki 搜索结果
| Title | Space | Excerpt |
|-------|-------|---------|
| ... | ... | ... |
## Jira 搜索结果
| 标题 | 链接 |
| --- | --- |
| ... | ... |
## YouTrack 搜索结果
| 标题 | 链接 |
| --- | --- |
| ... | ... |
前置要求
需要设置以下环境变量:
SUPERMAP_WIKI_TOKEN- Wiki 搜索 tokenSUPERMAP_JIRA_TOKEN- Jira 搜索 tokenSUPERMAP_YOUTRACK_TOKEN- YouTrack 搜索 token
错误处理
- 如果某个系统的 token 未设置,跳过该系统的搜索并提示用户
- 如果某个系统搜索失败,继续显示其他系统的结果
Related skills
More from canxing/skills
cve-vulnerability-analysis
分析Java和JavaScript组件的CVE漏洞,判断误报并提供升级建议。当用户提供CVE编号和受影响对象时使用,例如:CVE-2024-38816和spring-webmvc-5.3.39.jar。支持误报分析、兼容性风险评估和标准报告生成。
9supermap:cve-analysis
分析Java和JavaScript组件的CVE漏洞,判断误报并提供升级建议。当用户提供CVE编号和受影响对象时使用,例如:CVE-2024-38816和spring-webmvc-5.3.39.jar。支持误报分析、兼容性风险评估和标准报告生成。
6supermap:wiki-read
完整阅读 Supermap wiki 页面内容。包括页面文字、图片列表、评论,并递归解析引用的其他 wiki 页面。使用方法:/supermap:wiki-read <wiki URL 或 pageId>
2supermap:jira-search
搜索 Supermap Jira 查找问题。用于查找 Jira issues、bug 报告或任务。使用方法:/supermap:jira-search <搜索词>
2supermap:youtrack-search
搜索 Supermap YouTrack 查找问题。用于查找 YouTrack issues、任务或缺陷报告。使用方法:/supermap:youtrack-search <搜索词>
2supermap:wiki-search
搜索 Supermap wiki 查找文档。用于查找公司文档、流程或技术信息。使用方法:/supermap:wiki-search <搜索词>
2