qryma-search
使用多种输出格式进行网络搜索
通过 Qryma API 获取快速、LLM 优化的网络搜索结果。此技能提供 Markdown、JSON 或 Brave 风格的结构化搜索响应,可无缝集成到您的 AI 工作流程中。
下载技能 ZIP
在 Claude 中上传
前往 设置 → 功能 → 技能 → 上传技能
开启并开始使用
测试它
正在使用“qryma-search”。 Search for 'Python async await tutorial' with 3 results in Markdown format
预期结果:
1. Async IO in Python: A Complete Walkthrough
https://docs.python.org/3/library/asyncio.html
- Comprehensive guide to asyncio library with examples
2. Understanding Async/Await in Python
https://realpython.com/async-io-python/
- Detailed tutorial covering coroutines, event loops, and practical examples
3. Python Asyncio Tutorial
https://realpython.com/python-concurrency/
- Explains async programming patterns with real-world use cases
正在使用“qryma-search”。 Search for 'machine learning trends 2024' in JSON format
预期结果:
查询结果以结构化 JSON 形式返回,每个结果包含 title、url 和 content 字段,支持程序化处理和工作流程集成。
安全审计
安全Static analysis detected 136 potential security issues across 12 files. After evaluation, all findings are false positives related to legitimate skill functionality: environment variable access for API key authentication, network requests to official Qryma API endpoints, shell commands in documentation examples, and configuration file reading. No evidence of malicious intent, credential exfiltration, or data theft. The skill follows standard patterns for API-based search tools with proper error handling.
低风险问题 (1)
风险因素
质量评分
你能构建什么
研究助手
查找研究主题的最新信息、文章和资源。当您需要核实事实、收集最新数据或查找任何主题的权威资料时使用。
开发人员文档搜索
快速查找技术文档、教程和代码示例。搜索特定的编程问题、库或框架,以获取准确的技术结果。
内容核实
核实信息并查找佐证来源。用于验证声明、查找主题的多个角度,或为内容创作收集支持证据。
试试这些提示
Search the web for "[your query here]" and return the results in Markdown format with 5 results.
Search for "[programming language or library] documentation [specific topic]" with 10 results in JSON format. Include both fulltext and snippet modes if possible.
Search the web for "[topic]" with 10 results, then search for "[topic] controversy debate" with 5 results. Return both in Markdown format.
Search for "[detailed research topic]" with 5 results starting at offset 0. If results are relevant, continue searching with start offset 5 to get more results.
最佳实践
- 始终提供具体、聚焦的搜索查询,而不是宽泛的术语,以获得最相关的结果
- 从默认的 5 个结果开始,仅在需要全面研究时才增加 max_results
- 使用 Markdown 格式便于人类阅读,JSON 格式用于数据处理,Brave 格式用于与现有工具兼容
- 将 QRYMA_API_KEY 设置为环境变量以提高安全性和便利性,而不是每次命令都传递
避免
- 不要使用非常宽泛的查询如 'python' 或 'javascript',而是要具体如 'python async await best practices'
- 除非真正必要,否则不要请求过多的 max_results(超过 20 个),因为这可能会减慢响应速度并触发速率限制
- 不要忽略 language 参数——正确设置可以提高非英语搜索的结果相关性
- 不要将 API 密钥硬编码到提交到版本控制的脚本或配置文件中