myagent-ai 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dockerfile +30 -0
- package/README.md +333 -0
- package/agents/__init__.py +6 -0
- package/agents/__pycache__/main_agent.cpython-312.pyc +0 -0
- package/agents/base.py +115 -0
- package/agents/main_agent.py +695 -0
- package/agents/memory_agent.py +313 -0
- package/agents/tool_agent.py +248 -0
- package/chatbot/__init__.py +5 -0
- package/chatbot/base.py +124 -0
- package/chatbot/discord_bot.py +146 -0
- package/chatbot/feishu_bot.py +548 -0
- package/chatbot/manager.py +164 -0
- package/chatbot/qq_bot.py +189 -0
- package/chatbot/telegram_bot.py +167 -0
- package/chatbot/wechat_bot.py +558 -0
- package/communication/__init__.py +66 -0
- package/communication/channel.py +576 -0
- package/communication/crypto.py +347 -0
- package/communication/manager.py +397 -0
- package/communication/peer.py +156 -0
- package/config.py +464 -0
- package/core/__init__.py +10 -0
- package/core/config_broadcast.py +276 -0
- package/core/llm.py +878 -0
- package/core/logger.py +241 -0
- package/core/task_queue.py +362 -0
- package/core/utils.py +184 -0
- package/executor/__init__.py +4 -0
- package/executor/__pycache__/engine.cpython-312.pyc +0 -0
- package/executor/engine.py +1215 -0
- package/groups/__init__.py +15 -0
- package/groups/manager.py +724 -0
- package/knowledge/__init__.py +4 -0
- package/knowledge/rag.py +444 -0
- package/main.py +801 -0
- package/memory/__init__.py +4 -0
- package/memory/manager.py +840 -0
- package/organization/__init__.py +4 -0
- package/organization/manager.py +350 -0
- package/package.json +58 -0
- package/requirements.txt +59 -0
- package/setup.py +40 -0
- package/skills/ASR/LICENSE.txt +21 -0
- package/skills/ASR/SKILL.md +580 -0
- package/skills/ASR/scripts/asr.ts +27 -0
- package/skills/LLM/LICENSE.txt +21 -0
- package/skills/LLM/SKILL.md +856 -0
- package/skills/LLM/scripts/chat.ts +32 -0
- package/skills/TTS/LICENSE.txt +21 -0
- package/skills/TTS/SKILL.md +735 -0
- package/skills/TTS/tts.ts +25 -0
- package/skills/VLM/LICENSE.txt +21 -0
- package/skills/VLM/SKILL.md +588 -0
- package/skills/VLM/scripts/vlm.ts +57 -0
- package/skills/__init__.py +5 -0
- package/skills/agent-browser/SKILL.md +328 -0
- package/skills/ai-news-collectors/SKILL.md +157 -0
- package/skills/ai-news-collectors/_meta.json +6 -0
- package/skills/ai-news-collectors/references/sources.md +128 -0
- package/skills/aminer-open-academic/SKILL.md +312 -0
- package/skills/aminer-open-academic/_meta.json +6 -0
- package/skills/aminer-open-academic/evals/evals.json +46 -0
- package/skills/aminer-open-academic/references/api-catalog.md +1032 -0
- package/skills/aminer-open-academic/scripts/__pycache__/aminer_client.cpython-312.pyc +0 -0
- package/skills/aminer-open-academic/scripts/aminer_client.py +875 -0
- package/skills/auto-target-tracker/SKILL.md +317 -0
- package/skills/base.py +147 -0
- package/skills/blog-writer/2024-02-17-radical-transparency-sales.md +35 -0
- package/skills/blog-writer/2024-02-17-raycast-spotlight-superpowers.md +33 -0
- package/skills/blog-writer/2024-02-17-short-form-content-marketing.md +47 -0
- package/skills/blog-writer/2024-02-17-typing-speed-benefits.md +33 -0
- package/skills/blog-writer/2024-03-14-effective-ai-prompts.md +55 -0
- package/skills/blog-writer/2024-11-08-ai-revolutionizing-entry-level-sales.md +43 -0
- package/skills/blog-writer/2025-11-12-why-ai-art-is-useless.md +49 -0
- package/skills/blog-writer/README.md +2 -0
- package/skills/blog-writer/SKILL.md +158 -0
- package/skills/blog-writer/__pycache__/manage_examples.cpython-312.pyc +0 -0
- package/skills/blog-writer/_meta.json +6 -0
- package/skills/blog-writer/manage_examples.py +90 -0
- package/skills/blog-writer/style-guide.md +160 -0
- package/skills/browser_skill.py +146 -0
- package/skills/coding-agent/SKILL.md +120 -0
- package/skills/coding-agent/_meta.json +6 -0
- package/skills/coding-agent/criteria.md +48 -0
- package/skills/coding-agent/execution.md +42 -0
- package/skills/coding-agent/memory-template.md +38 -0
- package/skills/coding-agent/planning.md +31 -0
- package/skills/coding-agent/state.md +60 -0
- package/skills/coding-agent/verification.md +39 -0
- package/skills/content-strategy/SKILL.md +181 -0
- package/skills/content-strategy/_meta.json +6 -0
- package/skills/contentanalysis/ExtractWisdom/SKILL.md +229 -0
- package/skills/contentanalysis/ExtractWisdom/Workflows/Extract.md +60 -0
- package/skills/contentanalysis/SKILL.md +14 -0
- package/skills/docx/CHANGELOG.md +85 -0
- package/skills/docx/LICENSE.txt +30 -0
- package/skills/docx/SKILL.md +455 -0
- package/skills/docx/docx-js.md +681 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
- package/skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/skills/docx/ooxml/scripts/__pycache__/pack.cpython-312.pyc +0 -0
- package/skills/docx/ooxml/scripts/__pycache__/unpack.cpython-312.pyc +0 -0
- package/skills/docx/ooxml/scripts/__pycache__/validate.cpython-312.pyc +0 -0
- package/skills/docx/ooxml/scripts/pack.py +159 -0
- package/skills/docx/ooxml/scripts/unpack.py +29 -0
- package/skills/docx/ooxml/scripts/validate.py +69 -0
- package/skills/docx/ooxml/scripts/validation/__init__.py +15 -0
- package/skills/docx/ooxml/scripts/validation/__pycache__/__init__.cpython-312.pyc +0 -0
- package/skills/docx/ooxml/scripts/validation/__pycache__/base.cpython-312.pyc +0 -0
- package/skills/docx/ooxml/scripts/validation/__pycache__/docx.cpython-312.pyc +0 -0
- package/skills/docx/ooxml/scripts/validation/__pycache__/pptx.cpython-312.pyc +0 -0
- package/skills/docx/ooxml/scripts/validation/__pycache__/redlining.cpython-312.pyc +0 -0
- package/skills/docx/ooxml/scripts/validation/base.py +951 -0
- package/skills/docx/ooxml/scripts/validation/docx.py +274 -0
- package/skills/docx/ooxml/scripts/validation/pptx.py +315 -0
- package/skills/docx/ooxml/scripts/validation/redlining.py +279 -0
- package/skills/docx/ooxml.md +615 -0
- package/skills/docx/scripts/__init__.py +1 -0
- package/skills/docx/scripts/__pycache__/__init__.cpython-312.pyc +0 -0
- package/skills/docx/scripts/__pycache__/add_toc_placeholders.cpython-312.pyc +0 -0
- package/skills/docx/scripts/__pycache__/document.cpython-312.pyc +0 -0
- package/skills/docx/scripts/__pycache__/utilities.cpython-312.pyc +0 -0
- package/skills/docx/scripts/add_toc_placeholders.py +220 -0
- package/skills/docx/scripts/document.py +1302 -0
- package/skills/docx/scripts/templates/comments.xml +3 -0
- package/skills/docx/scripts/templates/commentsExtended.xml +3 -0
- package/skills/docx/scripts/templates/commentsExtensible.xml +3 -0
- package/skills/docx/scripts/templates/commentsIds.xml +3 -0
- package/skills/docx/scripts/templates/people.xml +3 -0
- package/skills/docx/scripts/utilities.py +374 -0
- package/skills/dream-interpreter/SKILL.md +88 -0
- package/skills/dream-interpreter/assets/example_asset.txt +24 -0
- package/skills/dream-interpreter/references/api_reference.md +34 -0
- package/skills/dream-interpreter/references/interpretation-guide.md +83 -0
- package/skills/dream-interpreter/references/output-schema.md +65 -0
- package/skills/dream-interpreter/references/questioning-strategy.md +62 -0
- package/skills/dream-interpreter/references/visual-mapping.md +81 -0
- package/skills/dream-interpreter/scripts/__pycache__/example.cpython-312.pyc +0 -0
- package/skills/dream-interpreter/scripts/example.py +19 -0
- package/skills/dream-interpreter/skill.json +7 -0
- package/skills/file_skill.py +246 -0
- package/skills/finance/Finance_API_Doc.md +445 -0
- package/skills/finance/SKILL.md +53 -0
- package/skills/fullstack-dev/SKILL.md +205 -0
- package/skills/get-fortune-analysis/SKILL.md +370 -0
- package/skills/get-fortune-analysis/lunar_python.py +91 -0
- package/skills/gift-evaluator/SKILL.md +83 -0
- package/skills/gift-evaluator/__pycache__/html_tools.cpython-312.pyc +0 -0
- package/skills/gift-evaluator/html_tools.py +268 -0
- package/skills/image-edit/LICENSE.txt +21 -0
- package/skills/image-edit/SKILL.md +896 -0
- package/skills/image-edit/scripts/image-edit.ts +36 -0
- package/skills/image-generation/LICENSE.txt +21 -0
- package/skills/image-generation/SKILL.md +583 -0
- package/skills/image-generation/scripts/image-generation.ts +28 -0
- package/skills/image-understand/LICENSE.txt +21 -0
- package/skills/image-understand/SKILL.md +855 -0
- package/skills/image-understand/scripts/image-understand.ts +41 -0
- package/skills/interview-designer/README.md +70 -0
- package/skills/interview-designer/SKILL.md +53 -0
- package/skills/interview-designer/_meta.json +6 -0
- package/skills/interview-designer/references/design_rationale.md +43 -0
- package/skills/interview-designer/templates/interview_guide_template.md +62 -0
- package/skills/market-research-reports/SKILL.md +901 -0
- package/skills/market-research-reports/assets/FORMATTING_GUIDE.md +428 -0
- package/skills/market-research-reports/assets/market_report_template.tex +1380 -0
- package/skills/market-research-reports/assets/market_research.sty +564 -0
- package/skills/market-research-reports/references/data_analysis_patterns.md +548 -0
- package/skills/market-research-reports/references/report_structure_guide.md +999 -0
- package/skills/market-research-reports/references/visual_generation_guide.md +1077 -0
- package/skills/market-research-reports/scripts/__pycache__/generate_market_visuals.cpython-312.pyc +0 -0
- package/skills/market-research-reports/scripts/generate_market_visuals.py +529 -0
- package/skills/marketing-mode/README.md +49 -0
- package/skills/marketing-mode/SKILL.md +693 -0
- package/skills/marketing-mode/_meta.json +6 -0
- package/skills/marketing-mode/mode-prompt.md +39 -0
- package/skills/marketing-mode/skill.json +51 -0
- package/skills/mindfulness-meditation/SKILL.md +65 -0
- package/skills/mindfulness-meditation/_meta.json +6 -0
- package/skills/multi-search-engine/CHANGELOG.md +15 -0
- package/skills/multi-search-engine/CHANNELLOG.md +48 -0
- package/skills/multi-search-engine/SKILL.md +78 -0
- package/skills/multi-search-engine/_meta.json +6 -0
- package/skills/multi-search-engine/config.json +14 -0
- package/skills/multi-search-engine/metadata.json +7 -0
- package/skills/multi-search-engine/references/international-search.md +651 -0
- package/skills/pdf/LICENSE.txt +30 -0
- package/skills/pdf/SKILL.md +1534 -0
- package/skills/pdf/forms.md +205 -0
- package/skills/pdf/reference.md +765 -0
- package/skills/pdf/scripts/__pycache__/add_zai_metadata.cpython-312.pyc +0 -0
- package/skills/pdf/scripts/__pycache__/check_bounding_boxes.cpython-312.pyc +0 -0
- package/skills/pdf/scripts/__pycache__/check_bounding_boxes_test.cpython-312.pyc +0 -0
- package/skills/pdf/scripts/__pycache__/check_fillable_fields.cpython-312.pyc +0 -0
- package/skills/pdf/scripts/__pycache__/convert_pdf_to_images.cpython-312.pyc +0 -0
- package/skills/pdf/scripts/__pycache__/create_validation_image.cpython-312.pyc +0 -0
- package/skills/pdf/scripts/__pycache__/extract_form_field_info.cpython-312.pyc +0 -0
- package/skills/pdf/scripts/__pycache__/fill_fillable_fields.cpython-312.pyc +0 -0
- package/skills/pdf/scripts/__pycache__/fill_pdf_form_with_annotations.cpython-312.pyc +0 -0
- package/skills/pdf/scripts/__pycache__/sanitize_code.cpython-312.pyc +0 -0
- package/skills/pdf/scripts/add_zai_metadata.py +172 -0
- package/skills/pdf/scripts/check_bounding_boxes.py +70 -0
- package/skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
- package/skills/pdf/scripts/check_fillable_fields.py +12 -0
- package/skills/pdf/scripts/convert_pdf_to_images.py +35 -0
- package/skills/pdf/scripts/create_validation_image.py +41 -0
- package/skills/pdf/scripts/extract_form_field_info.py +152 -0
- package/skills/pdf/scripts/fill_fillable_fields.py +114 -0
- package/skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
- package/skills/pdf/scripts/sanitize_code.py +110 -0
- package/skills/podcast-generate/LICENSE.txt +21 -0
- package/skills/podcast-generate/SKILL.md +198 -0
- package/skills/podcast-generate/generate.ts +661 -0
- package/skills/podcast-generate/package.json +30 -0
- package/skills/podcast-generate/readme.md +177 -0
- package/skills/podcast-generate/test_data/segments.jsonl +3 -0
- package/skills/podcast-generate/tsconfig.json +26 -0
- package/skills/pptx/LICENSE.txt +30 -0
- package/skills/pptx/SKILL.md +507 -0
- package/skills/pptx/html2pptx.md +625 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/skills/pptx/ooxml/schemas/mce/mc.xsd +75 -0
- package/skills/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/skills/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/skills/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/skills/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/skills/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/skills/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/skills/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/skills/pptx/ooxml/scripts/__pycache__/pack.cpython-312.pyc +0 -0
- package/skills/pptx/ooxml/scripts/__pycache__/unpack.cpython-312.pyc +0 -0
- package/skills/pptx/ooxml/scripts/__pycache__/validate.cpython-312.pyc +0 -0
- package/skills/pptx/ooxml/scripts/pack.py +159 -0
- package/skills/pptx/ooxml/scripts/unpack.py +29 -0
- package/skills/pptx/ooxml/scripts/validate.py +69 -0
- package/skills/pptx/ooxml/scripts/validation/__init__.py +15 -0
- package/skills/pptx/ooxml/scripts/validation/__pycache__/__init__.cpython-312.pyc +0 -0
- package/skills/pptx/ooxml/scripts/validation/__pycache__/base.cpython-312.pyc +0 -0
- package/skills/pptx/ooxml/scripts/validation/__pycache__/docx.cpython-312.pyc +0 -0
- package/skills/pptx/ooxml/scripts/validation/__pycache__/pptx.cpython-312.pyc +0 -0
- package/skills/pptx/ooxml/scripts/validation/__pycache__/redlining.cpython-312.pyc +0 -0
- package/skills/pptx/ooxml/scripts/validation/base.py +951 -0
- package/skills/pptx/ooxml/scripts/validation/docx.py +274 -0
- package/skills/pptx/ooxml/scripts/validation/pptx.py +315 -0
- package/skills/pptx/ooxml/scripts/validation/redlining.py +279 -0
- package/skills/pptx/ooxml.md +427 -0
- package/skills/pptx/scripts/__pycache__/inventory.cpython-312.pyc +0 -0
- package/skills/pptx/scripts/__pycache__/inventory.cpython-313.pyc +0 -0
- package/skills/pptx/scripts/__pycache__/rearrange.cpython-312.pyc +0 -0
- package/skills/pptx/scripts/__pycache__/replace.cpython-312.pyc +0 -0
- package/skills/pptx/scripts/__pycache__/thumbnail.cpython-312.pyc +0 -0
- package/skills/pptx/scripts/html2pptx.js +1044 -0
- package/skills/pptx/scripts/inventory.py +1020 -0
- package/skills/pptx/scripts/rearrange.py +231 -0
- package/skills/pptx/scripts/replace.py +385 -0
- package/skills/pptx/scripts/thumbnail.py +450 -0
- package/skills/qingyan-research/SKILL.md +294 -0
- package/skills/qingyan-research/__pycache__/generate_html.cpython-312.pyc +0 -0
- package/skills/qingyan-research/generate_html.py +33 -0
- package/skills/registry.py +344 -0
- package/skills/search_skill.py +228 -0
- package/skills/seo-content-writer/SKILL.md +661 -0
- package/skills/seo-content-writer/_meta.json +6 -0
- package/skills/seo-content-writer/references/content-structure-templates.md +875 -0
- package/skills/seo-content-writer/references/title-formulas.md +339 -0
- package/skills/skill-creator/LICENSE.txt +202 -0
- package/skills/skill-creator/SKILL.md +485 -0
- package/skills/skill-creator/agents/analyzer.md +274 -0
- package/skills/skill-creator/agents/comparator.md +202 -0
- package/skills/skill-creator/agents/grader.md +223 -0
- package/skills/skill-creator/assets/eval_review.html +146 -0
- package/skills/skill-creator/eval-viewer/__pycache__/generate_review.cpython-312.pyc +0 -0
- package/skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/skills/skill-creator/references/schemas.md +430 -0
- package/skills/skill-creator/scripts/__init__.py +0 -0
- package/skills/skill-creator/scripts/__pycache__/__init__.cpython-312.pyc +0 -0
- package/skills/skill-creator/scripts/__pycache__/aggregate_benchmark.cpython-312.pyc +0 -0
- package/skills/skill-creator/scripts/__pycache__/generate_report.cpython-312.pyc +0 -0
- package/skills/skill-creator/scripts/__pycache__/improve_description.cpython-312.pyc +0 -0
- package/skills/skill-creator/scripts/__pycache__/package_skill.cpython-312.pyc +0 -0
- package/skills/skill-creator/scripts/__pycache__/quick_validate.cpython-312.pyc +0 -0
- package/skills/skill-creator/scripts/__pycache__/run_eval.cpython-312.pyc +0 -0
- package/skills/skill-creator/scripts/__pycache__/run_loop.cpython-312.pyc +0 -0
- package/skills/skill-creator/scripts/__pycache__/utils.cpython-312.pyc +0 -0
- package/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/skills/skill-creator/scripts/generate_report.py +326 -0
- package/skills/skill-creator/scripts/improve_description.py +236 -0
- package/skills/skill-creator/scripts/package_skill.py +136 -0
- package/skills/skill-creator/scripts/quick_validate.py +103 -0
- package/skills/skill-creator/scripts/run_eval.py +310 -0
- package/skills/skill-creator/scripts/run_loop.py +328 -0
- package/skills/skill-creator/scripts/utils.py +47 -0
- package/skills/skill-finder-cn/SKILL.md +66 -0
- package/skills/skill-finder-cn/_meta.json +6 -0
- package/skills/skill-finder-cn/package.json +5 -0
- package/skills/skill-finder-cn/scripts/search.sh +15 -0
- package/skills/skill-vetter/SKILL.md +137 -0
- package/skills/stock-analysis-skill/SKILL.md +156 -0
- package/skills/stock-analysis-skill/package.json +21 -0
- package/skills/stock-analysis-skill/src/analyzer.ts +264 -0
- package/skills/stock-analysis-skill/src/dataFetcher.ts +130 -0
- package/skills/stock-analysis-skill/src/dividend.ts +226 -0
- package/skills/stock-analysis-skill/src/index.ts +327 -0
- package/skills/stock-analysis-skill/src/rumorScanner.ts +200 -0
- package/skills/stock-analysis-skill/src/types.ts +167 -0
- package/skills/stock-analysis-skill/src/watchlist.ts +292 -0
- package/skills/stock-analysis-skill/tsconfig.json +15 -0
- package/skills/storyboard-manager/SKILL.md +532 -0
- package/skills/storyboard-manager/index.js +9 -0
- package/skills/storyboard-manager/package.json +11 -0
- package/skills/storyboard-manager/references/character_development.md +232 -0
- package/skills/storyboard-manager/references/story_structures.md +148 -0
- package/skills/storyboard-manager/scripts/__pycache__/consistency_checker.cpython-312.pyc +0 -0
- package/skills/storyboard-manager/scripts/__pycache__/timeline_tracker.cpython-312.pyc +0 -0
- package/skills/storyboard-manager/scripts/consistency_checker.py +391 -0
- package/skills/storyboard-manager/scripts/timeline_tracker.py +352 -0
- package/skills/system_skill.py +249 -0
- package/skills/ui-ux-pro-max/SKILL.md +43 -0
- package/skills/ui-ux-pro-max/_meta.json +6 -0
- package/skills/ui-ux-pro-max/assets/data/charts.csv +26 -0
- package/skills/ui-ux-pro-max/assets/data/colors.csv +97 -0
- package/skills/ui-ux-pro-max/assets/data/icons.csv +101 -0
- package/skills/ui-ux-pro-max/assets/data/landing.csv +31 -0
- package/skills/ui-ux-pro-max/assets/data/products.csv +97 -0
- package/skills/ui-ux-pro-max/assets/data/react-performance.csv +45 -0
- package/skills/ui-ux-pro-max/assets/data/stacks/astro.csv +54 -0
- package/skills/ui-ux-pro-max/assets/data/stacks/flutter.csv +53 -0
- package/skills/ui-ux-pro-max/assets/data/stacks/html-tailwind.csv +56 -0
- package/skills/ui-ux-pro-max/assets/data/stacks/jetpack-compose.csv +53 -0
- package/skills/ui-ux-pro-max/assets/data/stacks/nextjs.csv +53 -0
- package/skills/ui-ux-pro-max/assets/data/stacks/nuxt-ui.csv +51 -0
- package/skills/ui-ux-pro-max/assets/data/stacks/nuxtjs.csv +59 -0
- package/skills/ui-ux-pro-max/assets/data/stacks/react-native.csv +52 -0
- package/skills/ui-ux-pro-max/assets/data/stacks/react.csv +54 -0
- package/skills/ui-ux-pro-max/assets/data/stacks/shadcn.csv +61 -0
- package/skills/ui-ux-pro-max/assets/data/stacks/svelte.csv +54 -0
- package/skills/ui-ux-pro-max/assets/data/stacks/swiftui.csv +51 -0
- package/skills/ui-ux-pro-max/assets/data/stacks/vue.csv +50 -0
- package/skills/ui-ux-pro-max/assets/data/styles.csv +68 -0
- package/skills/ui-ux-pro-max/assets/data/typography.csv +58 -0
- package/skills/ui-ux-pro-max/assets/data/ui-reasoning.csv +101 -0
- package/skills/ui-ux-pro-max/assets/data/ux-guidelines.csv +100 -0
- package/skills/ui-ux-pro-max/assets/data/web-interface.csv +31 -0
- package/skills/ui-ux-pro-max/data/charts.csv +26 -0
- package/skills/ui-ux-pro-max/data/colors.csv +97 -0
- package/skills/ui-ux-pro-max/data/icons.csv +101 -0
- package/skills/ui-ux-pro-max/data/landing.csv +31 -0
- package/skills/ui-ux-pro-max/data/products.csv +97 -0
- package/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
- package/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
- package/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
- package/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
- package/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
- package/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
- package/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
- package/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/skills/ui-ux-pro-max/data/styles.csv +68 -0
- package/skills/ui-ux-pro-max/data/typography.csv +58 -0
- package/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
- package/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
- package/skills/ui-ux-pro-max/references/upstream-README.md +488 -0
- package/skills/ui-ux-pro-max/references/upstream-skill-content.md +288 -0
- package/skills/ui-ux-pro-max/scripts/__init__.py +0 -0
- package/skills/ui-ux-pro-max/scripts/__pycache__/__init__.cpython-312.pyc +0 -0
- package/skills/ui-ux-pro-max/scripts/__pycache__/core.cpython-312.pyc +0 -0
- package/skills/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-312.pyc +0 -0
- package/skills/ui-ux-pro-max/scripts/__pycache__/search.cpython-312.pyc +0 -0
- package/skills/ui-ux-pro-max/scripts/core.py +253 -0
- package/skills/ui-ux-pro-max/scripts/design_system.py +1071 -0
- package/skills/ui-ux-pro-max/scripts/search.py +111 -0
- package/skills/video-generation/LICENSE.txt +21 -0
- package/skills/video-generation/SKILL.md +1082 -0
- package/skills/video-generation/scripts/video.ts +168 -0
- package/skills/video-understand/LICENSE.txt +21 -0
- package/skills/video-understand/SKILL.md +916 -0
- package/skills/video-understand/scripts/video-understand.ts +41 -0
- package/skills/visual-design-foundations/SKILL.md +318 -0
- package/skills/visual-design-foundations/references/color-systems.md +417 -0
- package/skills/visual-design-foundations/references/spacing-iconography.md +425 -0
- package/skills/visual-design-foundations/references/typography-systems.md +432 -0
- package/skills/web-reader/LICENSE.txt +21 -0
- package/skills/web-reader/SKILL.md +1140 -0
- package/skills/web-reader/scripts/web-reader.ts +37 -0
- package/skills/web-search/LICENSE.txt +21 -0
- package/skills/web-search/SKILL.md +912 -0
- package/skills/web-search/scripts/web_search.ts +44 -0
- package/skills/web-shader-extractor/SKILL.md +145 -0
- package/skills/web-shader-extractor/references/config-extraction.md +50 -0
- package/skills/web-shader-extractor/references/encoded-definitions.md +53 -0
- package/skills/web-shader-extractor/references/extraction-workflow.md +61 -0
- package/skills/web-shader-extractor/references/porting-strategy.md +164 -0
- package/skills/web-shader-extractor/references/shader-injection.md +126 -0
- package/skills/web-shader-extractor/references/shaders-com.md +190 -0
- package/skills/web-shader-extractor/references/tech-signatures.md +54 -0
- package/skills/web-shader-extractor/references/tsl-extraction.md +41 -0
- package/skills/web-shader-extractor/references/unicorn-studio.md +353 -0
- package/skills/web-shader-extractor/scripts/fetch-rendered-dom.mjs +153 -0
- package/skills/web-shader-extractor/scripts/scan-bundle.sh +76 -0
- package/skills/writing-plans/SKILL.md +116 -0
- package/skills/writing-plans/_meta.json +6 -0
- package/skills/xlsx/LICENSE.txt +30 -0
- package/skills/xlsx/SKILL.md +496 -0
- package/skills/xlsx/__pycache__/recalc.cpython-312.pyc +0 -0
- package/skills/xlsx/recalc.py +178 -0
- package/start.sh +36 -0
- package/web/__init__.py +1 -0
- package/web/__pycache__/api_server.cpython-312.pyc +0 -0
- package/web/api_server.py +2043 -0
- package/web/ui/chat.html +3235 -0
- package/web/ui/index.html +458 -0
|
@@ -0,0 +1,651 @@
|
|
|
1
|
+
# 国际搜索引擎深度搜索指南
|
|
2
|
+
|
|
3
|
+
## 🔍 Google 深度搜索
|
|
4
|
+
|
|
5
|
+
### 1.1 基础高级搜索操作符
|
|
6
|
+
|
|
7
|
+
| 操作符 | 功能 | 示例 | URL |
|
|
8
|
+
|--------|------|------|-----|
|
|
9
|
+
| `""` | 精确匹配 | `"machine learning"` | `https://www.google.com/search?q=%22machine+learning%22` |
|
|
10
|
+
| `-` | 排除关键词 | `python -snake` | `https://www.google.com/search?q=python+-snake` |
|
|
11
|
+
| `OR` | 或运算 | `machine learning OR deep learning` | `https://www.google.com/search?q=machine+learning+OR+deep+learning` |
|
|
12
|
+
| `*` | 通配符 | `machine * algorithms` | `https://www.google.com/search?q=machine+*+algorithms` |
|
|
13
|
+
| `()` | 分组 | `(apple OR microsoft) phones` | `https://www.google.com/search?q=(apple+OR+microsoft)+phones` |
|
|
14
|
+
| `..` | 数字范围 | `laptop $500..$1000` | `https://www.google.com/search?q=laptop+%24500..%241000` |
|
|
15
|
+
|
|
16
|
+
### 1.2 站点与文件搜索
|
|
17
|
+
|
|
18
|
+
| 操作符 | 功能 | 示例 |
|
|
19
|
+
|--------|------|------|
|
|
20
|
+
| `site:` | 站内搜索 | `site:github.com python projects` |
|
|
21
|
+
| `filetype:` | 文件类型 | `filetype:pdf annual report` |
|
|
22
|
+
| `inurl:` | URL包含 | `inurl:login admin` |
|
|
23
|
+
| `intitle:` | 标题包含 | `intitle:"index of" mp3` |
|
|
24
|
+
| `intext:` | 正文包含 | `intext:password filetype:txt` |
|
|
25
|
+
| `cache:` | 查看缓存 | `cache:example.com` |
|
|
26
|
+
| `related:` | 相关网站 | `related:github.com` |
|
|
27
|
+
| `info:` | 网站信息 | `info:example.com` |
|
|
28
|
+
|
|
29
|
+
### 1.3 时间筛选参数
|
|
30
|
+
|
|
31
|
+
| 参数 | 含义 | URL示例 |
|
|
32
|
+
|------|------|---------|
|
|
33
|
+
| `tbs=qdr:h` | 过去1小时 | `https://www.google.com/search?q=news&tbs=qdr:h` |
|
|
34
|
+
| `tbs=qdr:d` | 过去24小时 | `https://www.google.com/search?q=news&tbs=qdr:d` |
|
|
35
|
+
| `tbs=qdr:w` | 过去1周 | `https://www.google.com/search?q=news&tbs=qdr:w` |
|
|
36
|
+
| `tbs=qdr:m` | 过去1月 | `https://www.google.com/search?q=news&tbs=qdr:m` |
|
|
37
|
+
| `tbs=qdr:y` | 过去1年 | `https://www.google.com/search?q=news&tbs=qdr:y` |
|
|
38
|
+
| `tbs=cdr:1,cd_min:1/1/2024,cd_max:12/31/2024` | 自定义日期范围 | 2024年全年 |
|
|
39
|
+
|
|
40
|
+
### 1.4 语言和地区筛选
|
|
41
|
+
|
|
42
|
+
| 参数 | 功能 | 示例 |
|
|
43
|
+
|------|------|------|
|
|
44
|
+
| `hl=en` | 界面语言 | `https://www.google.com/search?q=test&hl=en` |
|
|
45
|
+
| `lr=lang_zh-CN` | 搜索结果语言 | `https://www.google.com/search?q=test&lr=lang_zh-CN` |
|
|
46
|
+
| `cr=countryCN` | 国家/地区 | `https://www.google.com/search?q=test&cr=countryCN` |
|
|
47
|
+
| `gl=us` | 地理位置 | `https://www.google.com/search?q=test&gl=us` |
|
|
48
|
+
|
|
49
|
+
### 1.5 特殊搜索类型
|
|
50
|
+
|
|
51
|
+
| 类型 | URL | 说明 |
|
|
52
|
+
|------|-----|------|
|
|
53
|
+
| 图片搜索 | `https://www.google.com/search?q={keyword}&tbm=isch` | `tbm=isch` 表示图片 |
|
|
54
|
+
| 新闻搜索 | `https://www.google.com/search?q={keyword}&tbm=nws` | `tbm=nws` 表示新闻 |
|
|
55
|
+
| 视频搜索 | `https://www.google.com/search?q={keyword}&tbm=vid` | `tbm=vid` 表示视频 |
|
|
56
|
+
| 地图搜索 | `https://www.google.com/search?q={keyword}&tbm=map` | `tbm=map` 表示地图 |
|
|
57
|
+
| 购物搜索 | `https://www.google.com/search?q={keyword}&tbm=shop` | `tbm=shop` 表示购物 |
|
|
58
|
+
| 图书搜索 | `https://www.google.com/search?q={keyword}&tbm=bks` | `tbm=bks` 表示图书 |
|
|
59
|
+
| 学术搜索 | `https://scholar.google.com/scholar?q={keyword}` | Google Scholar |
|
|
60
|
+
|
|
61
|
+
### 1.6 Google 深度搜索示例
|
|
62
|
+
|
|
63
|
+
```javascript
|
|
64
|
+
// 1. 搜索GitHub上的Python机器学习项目
|
|
65
|
+
web_fetch({"url": "https://www.google.com/search?q=site:github.com+python+machine+learning"})
|
|
66
|
+
|
|
67
|
+
// 2. 搜索2024年的PDF格式机器学习教程
|
|
68
|
+
web_fetch({"url": "https://www.google.com/search?q=machine+learning+tutorial+filetype:pdf&tbs=cdr:1,cd_min:1/1/2024"})
|
|
69
|
+
|
|
70
|
+
// 3. 搜索标题包含"tutorial"的Python相关页面
|
|
71
|
+
web_fetch({"url": "https://www.google.com/search?q=intitle:tutorial+python"})
|
|
72
|
+
|
|
73
|
+
// 4. 搜索过去一周的新闻
|
|
74
|
+
web_fetch({"url": "https://www.google.com/search?q=AI+breakthrough&tbs=qdr:w&tbm=nws"})
|
|
75
|
+
|
|
76
|
+
// 5. 搜索中文内容(界面英文,结果中文)
|
|
77
|
+
web_fetch({"url": "https://www.google.com/search?q=人工智能&lr=lang_zh-CN&hl=en"})
|
|
78
|
+
|
|
79
|
+
// 6. 搜索特定价格范围的笔记本电脑
|
|
80
|
+
web_fetch({"url": "https://www.google.com/search?q=laptop+%241000..%242000+best+rating"})
|
|
81
|
+
|
|
82
|
+
// 7. 搜索排除Wikipedia的结果
|
|
83
|
+
web_fetch({"url": "https://www.google.com/search?q=python+programming+-wikipedia"})
|
|
84
|
+
|
|
85
|
+
// 8. 搜索学术文献
|
|
86
|
+
web_fetch({"url": "https://scholar.google.com/scholar?q=deep+learning+optimization"})
|
|
87
|
+
|
|
88
|
+
// 9. 搜索缓存页面(查看已删除内容)
|
|
89
|
+
web_fetch({"url": "https://webcache.googleusercontent.com/search?q=cache:example.com"})
|
|
90
|
+
|
|
91
|
+
// 10. 搜索相关网站
|
|
92
|
+
web_fetch({"url": "https://www.google.com/search?q=related:stackoverflow.com"})
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
## 🦆 DuckDuckGo 深度搜索
|
|
98
|
+
|
|
99
|
+
### 2.1 DuckDuckGo 特色功能
|
|
100
|
+
|
|
101
|
+
| 功能 | 语法 | 示例 |
|
|
102
|
+
|------|------|------|
|
|
103
|
+
| **Bangs 快捷** | `!缩写` | `!g python` → Google搜索 |
|
|
104
|
+
| **密码生成** | `password` | `https://duckduckgo.com/?q=password+20` |
|
|
105
|
+
| **颜色转换** | `color` | `https://duckduckgo.com/?q=+%23FF5733` |
|
|
106
|
+
| **短链接** | `shorten` | `https://duckduckgo.com/?q=shorten+example.com` |
|
|
107
|
+
| **二维码生成** | `qr` | `https://duckduckgo.com/?q=qr+hello+world` |
|
|
108
|
+
| **生成UUID** | `uuid` | `https://duckduckgo.com/?q=uuid` |
|
|
109
|
+
| **Base64编解码** | `base64` | `https://duckduckgo.com/?q=base64+hello` |
|
|
110
|
+
|
|
111
|
+
### 2.2 DuckDuckGo Bangs 完整列表
|
|
112
|
+
|
|
113
|
+
#### 搜索引擎
|
|
114
|
+
|
|
115
|
+
| Bang | 跳转目标 | 示例 |
|
|
116
|
+
|------|---------|------|
|
|
117
|
+
| `!g` | Google | `!g python tutorial` |
|
|
118
|
+
| `!b` | Bing | `!b weather` |
|
|
119
|
+
| `!y` | Yahoo | `!y finance` |
|
|
120
|
+
| `!sp` | Startpage | `!sp privacy` |
|
|
121
|
+
| `!brave` | Brave Search | `!brave tech` |
|
|
122
|
+
|
|
123
|
+
#### 编程开发
|
|
124
|
+
|
|
125
|
+
| Bang | 跳转目标 | 示例 |
|
|
126
|
+
|------|---------|------|
|
|
127
|
+
| `!gh` | GitHub | `!gh tensorflow` |
|
|
128
|
+
| `!so` | Stack Overflow | `!so javascript error` |
|
|
129
|
+
| `!npm` | npmjs.com | `!npm express` |
|
|
130
|
+
| `!pypi` | PyPI | `!pypi requests` |
|
|
131
|
+
| `!mdn` | MDN Web Docs | `!mdn fetch api` |
|
|
132
|
+
| `!docs` | DevDocs | `!docs python` |
|
|
133
|
+
| `!docker` | Docker Hub | `!docker nginx` |
|
|
134
|
+
|
|
135
|
+
#### 知识百科
|
|
136
|
+
|
|
137
|
+
| Bang | 跳转目标 | 示例 |
|
|
138
|
+
|------|---------|------|
|
|
139
|
+
| `!w` | Wikipedia | `!w machine learning` |
|
|
140
|
+
| `!wen` | Wikipedia英文 | `!wen artificial intelligence` |
|
|
141
|
+
| `!wt` | Wiktionary | `!wt serendipity` |
|
|
142
|
+
| `!imdb` | IMDb | `!imdb inception` |
|
|
143
|
+
|
|
144
|
+
#### 购物价格
|
|
145
|
+
|
|
146
|
+
| Bang | 跳转目标 | 示例 |
|
|
147
|
+
|------|---------|------|
|
|
148
|
+
| `!a` | Amazon | `!a wireless headphones` |
|
|
149
|
+
| `!e` | eBay | `!e vintage watch` |
|
|
150
|
+
| `!ali` | AliExpress | `!ali phone case` |
|
|
151
|
+
|
|
152
|
+
#### 地图位置
|
|
153
|
+
|
|
154
|
+
| Bang | 跳转目标 | 示例 |
|
|
155
|
+
|------|---------|------|
|
|
156
|
+
| `!m` | Google Maps | `!m Beijing` |
|
|
157
|
+
| `!maps` | OpenStreetMap | `!maps Paris` |
|
|
158
|
+
|
|
159
|
+
### 2.3 DuckDuckGo 搜索参数
|
|
160
|
+
|
|
161
|
+
| 参数 | 功能 | 示例 |
|
|
162
|
+
|------|------|------|
|
|
163
|
+
| `kp=1` | 严格安全搜索 | `https://duckduckgo.com/html/?q=test&kp=1` |
|
|
164
|
+
| `kp=-1` | 关闭安全搜索 | `https://duckduckgo.com/html/?q=test&kp=-1` |
|
|
165
|
+
| `kl=cn` | 中国区域 | `https://duckduckgo.com/html/?q=news&kl=cn` |
|
|
166
|
+
| `kl=us-en` | 美国英文 | `https://duckduckgo.com/html/?q=news&kl=us-en` |
|
|
167
|
+
| `ia=web` | 网页结果 | `https://duckduckgo.com/?q=test&ia=web` |
|
|
168
|
+
| `ia=images` | 图片结果 | `https://duckduckgo.com/?q=test&ia=images` |
|
|
169
|
+
| `ia=news` | 新闻结果 | `https://duckduckgo.com/?q=test&ia=news` |
|
|
170
|
+
| `ia=videos` | 视频结果 | `https://duckduckgo.com/?q=test&ia=videos` |
|
|
171
|
+
|
|
172
|
+
### 2.4 DuckDuckGo 深度搜索示例
|
|
173
|
+
|
|
174
|
+
```javascript
|
|
175
|
+
// 1. 使用Bang跳转到Google搜索
|
|
176
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=!g+machine+learning"})
|
|
177
|
+
|
|
178
|
+
// 2. 直接搜索GitHub上的项目
|
|
179
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=!gh+react"})
|
|
180
|
+
|
|
181
|
+
// 3. 查找Stack Overflow答案
|
|
182
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=!so+python+list+comprehension"})
|
|
183
|
+
|
|
184
|
+
// 4. 生成密码
|
|
185
|
+
web_fetch({"url": "https://duckduckgo.com/?q=password+16"})
|
|
186
|
+
|
|
187
|
+
// 5. Base64编码
|
|
188
|
+
web_fetch({"url": "https://duckduckgo.com/?q=base64+hello+world"})
|
|
189
|
+
|
|
190
|
+
// 6. 颜色代码转换
|
|
191
|
+
web_fetch({"url": "https://duckduckgo.com/?q=%23FF5733"})
|
|
192
|
+
|
|
193
|
+
// 7. 搜索YouTube视频
|
|
194
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=!yt+python+tutorial"})
|
|
195
|
+
|
|
196
|
+
// 8. 查看Wikipedia
|
|
197
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=!w+artificial+intelligence"})
|
|
198
|
+
|
|
199
|
+
// 9. 亚马逊商品搜索
|
|
200
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=!a+laptop"})
|
|
201
|
+
|
|
202
|
+
// 10. 生成二维码
|
|
203
|
+
web_fetch({"url": "https://duckduckgo.com/?q=qr+https://github.com"})
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
---
|
|
207
|
+
|
|
208
|
+
## 🔎 Brave Search 深度搜索
|
|
209
|
+
|
|
210
|
+
### 3.1 Brave Search 特色功能
|
|
211
|
+
|
|
212
|
+
| 功能 | 参数 | 示例 |
|
|
213
|
+
|------|------|------|
|
|
214
|
+
| **独立索引** | 无依赖Google/Bing | 自有爬虫索引 |
|
|
215
|
+
| **Goggles** | 自定义搜索规则 | 创建个性化过滤器 |
|
|
216
|
+
| **Discussions** | 论坛讨论搜索 | 聚合Reddit等论坛 |
|
|
217
|
+
| **News** | 新闻聚合 | 独立新闻索引 |
|
|
218
|
+
|
|
219
|
+
### 3.2 Brave Search 参数
|
|
220
|
+
|
|
221
|
+
| 参数 | 功能 | 示例 |
|
|
222
|
+
|------|------|------|
|
|
223
|
+
| `tf=pw` | 本周 | `https://search.brave.com/search?q=news&tf=pw` |
|
|
224
|
+
| `tf=pm` | 本月 | `https://search.brave.com/search?q=tech&tf=pm` |
|
|
225
|
+
| `tf=py` | 本年 | `https://search.brave.com/search?q=AI&tf=py` |
|
|
226
|
+
| `safesearch=strict` | 严格安全 | `https://search.brave.com/search?q=test&safesearch=strict` |
|
|
227
|
+
| `source=web` | 网页搜索 | 默认 |
|
|
228
|
+
| `source=news` | 新闻搜索 | `https://search.brave.com/search?q=tech&source=news` |
|
|
229
|
+
| `source=images` | 图片搜索 | `https://search.brave.com/search?q=cat&source=images` |
|
|
230
|
+
| `source=videos` | 视频搜索 | `https://search.brave.com/search?q=music&source=videos` |
|
|
231
|
+
|
|
232
|
+
### 3.3 Brave Search Goggles(自定义过滤器)
|
|
233
|
+
|
|
234
|
+
Goggles 允许创建自定义搜索规则:
|
|
235
|
+
|
|
236
|
+
```
|
|
237
|
+
$discard // 丢弃所有
|
|
238
|
+
$boost,site=stackoverflow.com // 提升Stack Overflow
|
|
239
|
+
$boost,site=github.com // 提升GitHub
|
|
240
|
+
$boost,site=docs.python.org // 提升Python文档
|
|
241
|
+
```
|
|
242
|
+
|
|
243
|
+
### 3.4 Brave Search 深度搜索示例
|
|
244
|
+
|
|
245
|
+
```javascript
|
|
246
|
+
// 1. 本周科技新闻
|
|
247
|
+
web_fetch({"url": "https://search.brave.com/search?q=technology&tf=pw&source=news"})
|
|
248
|
+
|
|
249
|
+
// 2. 本月AI发展
|
|
250
|
+
web_fetch({"url": "https://search.brave.com/search?q=artificial+intelligence&tf=pm"})
|
|
251
|
+
|
|
252
|
+
// 3. 图片搜索
|
|
253
|
+
web_fetch({"url": "https://search.brave.com/search?q=machine+learning&source=images"})
|
|
254
|
+
|
|
255
|
+
// 4. 视频教程
|
|
256
|
+
web_fetch({"url": "https://search.brave.com/search?q=python+tutorial&source=videos"})
|
|
257
|
+
|
|
258
|
+
// 5. 使用独立索引搜索
|
|
259
|
+
web_fetch({"url": "https://search.brave.com/search?q=privacy+tools"})
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
---
|
|
263
|
+
|
|
264
|
+
## 📊 WolframAlpha 知识计算搜索
|
|
265
|
+
|
|
266
|
+
### 4.1 WolframAlpha 数据类型
|
|
267
|
+
|
|
268
|
+
| 类型 | 查询示例 | URL |
|
|
269
|
+
|------|---------|-----|
|
|
270
|
+
| **数学计算** | `integrate x^2 dx` | `https://www.wolframalpha.com/input?i=integrate+x%5E2+dx` |
|
|
271
|
+
| **单位换算** | `100 miles to km` | `https://www.wolframalpha.com/input?i=100+miles+to+km` |
|
|
272
|
+
| **货币转换** | `100 USD to CNY` | `https://www.wolframalpha.com/input?i=100+USD+to+CNY` |
|
|
273
|
+
| **股票数据** | `AAPL stock` | `https://www.wolframalpha.com/input?i=AAPL+stock` |
|
|
274
|
+
| **天气查询** | `weather in Beijing` | `https://www.wolframalpha.com/input?i=weather+in+Beijing` |
|
|
275
|
+
| **人口数据** | `population of China` | `https://www.wolframalpha.com/input?i=population+of+China` |
|
|
276
|
+
| **化学元素** | `properties of gold` | `https://www.wolframalpha.com/input?i=properties+of+gold` |
|
|
277
|
+
| **营养成分** | `nutrition of apple` | `https://www.wolframalpha.com/input?i=nutrition+of+apple` |
|
|
278
|
+
| **日期计算** | `days between Jan 1 2020 and Dec 31 2024` | 日期间隔计算 |
|
|
279
|
+
| **时区转换** | `10am Beijing to New York` | 时区转换 |
|
|
280
|
+
| **IP地址** | `8.8.8.8` | IP信息查询 |
|
|
281
|
+
| **条形码** | `scan barcode 123456789` | 条码信息 |
|
|
282
|
+
| **飞机航班** | `flight AA123` | 航班信息 |
|
|
283
|
+
|
|
284
|
+
### 4.2 WolframAlpha 深度搜索示例
|
|
285
|
+
|
|
286
|
+
```javascript
|
|
287
|
+
// 1. 计算积分
|
|
288
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=integrate+sin%28x%29+from+0+to+pi"})
|
|
289
|
+
|
|
290
|
+
// 2. 解方程
|
|
291
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=solve+x%5E2-5x%2B6%3D0"})
|
|
292
|
+
|
|
293
|
+
// 3. 货币实时汇率
|
|
294
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=100+USD+to+CNY"})
|
|
295
|
+
|
|
296
|
+
// 4. 股票实时数据
|
|
297
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=Apple+stock+price"})
|
|
298
|
+
|
|
299
|
+
// 5. 城市天气
|
|
300
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=weather+in+Shanghai+tomorrow"})
|
|
301
|
+
|
|
302
|
+
// 6. 国家统计信息
|
|
303
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=GDP+of+China+vs+USA"})
|
|
304
|
+
|
|
305
|
+
// 7. 化学计算
|
|
306
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=molar+mass+of+H2SO4"})
|
|
307
|
+
|
|
308
|
+
// 8. 物理常数
|
|
309
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=speed+of+light"})
|
|
310
|
+
|
|
311
|
+
// 9. 营养信息
|
|
312
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=calories+in+banana"})
|
|
313
|
+
|
|
314
|
+
// 10. 历史日期
|
|
315
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=events+on+July+20+1969"})
|
|
316
|
+
```
|
|
317
|
+
|
|
318
|
+
---
|
|
319
|
+
|
|
320
|
+
## 🔧 Startpage 隐私搜索
|
|
321
|
+
|
|
322
|
+
### 5.1 Startpage 特色功能
|
|
323
|
+
|
|
324
|
+
| 功能 | 说明 | URL |
|
|
325
|
+
|------|------|-----|
|
|
326
|
+
| **代理浏览** | 匿名访问搜索结果 | 点击"匿名查看" |
|
|
327
|
+
| **无追踪** | 不记录搜索历史 | 默认开启 |
|
|
328
|
+
| **EU服务器** | 受欧盟隐私法保护 | 数据在欧洲 |
|
|
329
|
+
| **代理图片** | 图片代理加载 | 隐藏IP |
|
|
330
|
+
|
|
331
|
+
### 5.2 Startpage 参数
|
|
332
|
+
|
|
333
|
+
| 参数 | 功能 | 示例 |
|
|
334
|
+
|------|------|------|
|
|
335
|
+
| `cat=web` | 网页搜索 | 默认 |
|
|
336
|
+
| `cat=images` | 图片搜索 | `...&cat=images` |
|
|
337
|
+
| `cat=video` | 视频搜索 | `...&cat=video` |
|
|
338
|
+
| `cat=news` | 新闻搜索 | `...&cat=news` |
|
|
339
|
+
| `language=english` | 英文结果 | `...&language=english` |
|
|
340
|
+
| `time=day` | 过去24小时 | `...&time=day` |
|
|
341
|
+
| `time=week` | 过去一周 | `...&time=week` |
|
|
342
|
+
| `time=month` | 过去一月 | `...&time=month` |
|
|
343
|
+
| `time=year` | 过去一年 | `...&time=year` |
|
|
344
|
+
| `nj=0` | 关闭 family filter | `...&nj=0` |
|
|
345
|
+
|
|
346
|
+
### 5.3 Startpage 深度搜索示例
|
|
347
|
+
|
|
348
|
+
```javascript
|
|
349
|
+
// 1. 隐私搜索
|
|
350
|
+
web_fetch({"url": "https://www.startpage.com/sp/search?query=privacy+tools"})
|
|
351
|
+
|
|
352
|
+
// 2. 图片隐私搜索
|
|
353
|
+
web_fetch({"url": "https://www.startpage.com/sp/search?query=nature&cat=images"})
|
|
354
|
+
|
|
355
|
+
// 3. 本周新闻(隐私模式)
|
|
356
|
+
web_fetch({"url": "https://www.startpage.com/sp/search?query=tech+news&time=week&cat=news"})
|
|
357
|
+
|
|
358
|
+
// 4. 英文结果搜索
|
|
359
|
+
web_fetch({"url": "https://www.startpage.com/sp/search?query=machine+learning&language=english"})
|
|
360
|
+
```
|
|
361
|
+
|
|
362
|
+
---
|
|
363
|
+
|
|
364
|
+
## 🌍 综合搜索策略
|
|
365
|
+
|
|
366
|
+
### 6.1 按搜索目标选择引擎
|
|
367
|
+
|
|
368
|
+
| 搜索目标 | 首选引擎 | 备选引擎 | 原因 |
|
|
369
|
+
|---------|---------|---------|------|
|
|
370
|
+
| **学术研究** | Google Scholar | Google, Brave | 学术资源索引 |
|
|
371
|
+
| **编程开发** | Google | GitHub(DuckDuckGo bang) | 技术文档全面 |
|
|
372
|
+
| **隐私敏感** | DuckDuckGo | Startpage, Brave | 不追踪用户 |
|
|
373
|
+
| **实时新闻** | Brave News | Google News | 独立新闻索引 |
|
|
374
|
+
| **知识计算** | WolframAlpha | Google | 结构化数据 |
|
|
375
|
+
| **中文内容** | Google HK | Bing | 中文优化好 |
|
|
376
|
+
| **欧洲视角** | Qwant | Startpage | 欧盟合规 |
|
|
377
|
+
| **环保支持** | Ecosia | DuckDuckGo | 搜索植树 |
|
|
378
|
+
| **无过滤** | Brave | Startpage | 无偏见结果 |
|
|
379
|
+
|
|
380
|
+
### 6.2 多引擎交叉验证
|
|
381
|
+
|
|
382
|
+
```javascript
|
|
383
|
+
// 策略:同一关键词多引擎搜索,对比结果
|
|
384
|
+
const keyword = "climate change 2024";
|
|
385
|
+
|
|
386
|
+
// 获取不同视角
|
|
387
|
+
const searches = [
|
|
388
|
+
{ engine: "Google", url: `https://www.google.com/search?q=${keyword}&tbs=qdr:m` },
|
|
389
|
+
{ engine: "Brave", url: `https://search.brave.com/search?q=${keyword}&tf=pm` },
|
|
390
|
+
{ engine: "DuckDuckGo", url: `https://duckduckgo.com/html/?q=${keyword}` },
|
|
391
|
+
{ engine: "Ecosia", url: `https://www.ecosia.org/search?q=${keyword}` }
|
|
392
|
+
];
|
|
393
|
+
|
|
394
|
+
// 分析不同引擎的结果差异
|
|
395
|
+
```
|
|
396
|
+
|
|
397
|
+
### 6.3 时间敏感搜索策略
|
|
398
|
+
|
|
399
|
+
| 时效性要求 | 引擎选择 | 参数设置 |
|
|
400
|
+
|-----------|---------|---------|
|
|
401
|
+
| **实时(小时级)** | Google News, Brave News | `tbs=qdr:h`, `tf=pw` |
|
|
402
|
+
| **近期(天级)** | Google, Brave | `tbs=qdr:d`, `time=day` |
|
|
403
|
+
| **本周** | 所有引擎 | `tbs=qdr:w`, `tf=pw` |
|
|
404
|
+
| **本月** | 所有引擎 | `tbs=qdr:m`, `tf=pm` |
|
|
405
|
+
| **历史** | Google Scholar | 学术档案 |
|
|
406
|
+
|
|
407
|
+
### 6.4 专业领域深度搜索
|
|
408
|
+
|
|
409
|
+
#### 技术开发
|
|
410
|
+
|
|
411
|
+
```javascript
|
|
412
|
+
// GitHub 项目搜索
|
|
413
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=!gh+tensorflow+stars:%3E1000"})
|
|
414
|
+
|
|
415
|
+
// Stack Overflow 问题
|
|
416
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=!so+python+memory+leak"})
|
|
417
|
+
|
|
418
|
+
// MDN 文档
|
|
419
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=!mdn+javascript+async+await"})
|
|
420
|
+
|
|
421
|
+
// PyPI 包
|
|
422
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=!pypi+requests"})
|
|
423
|
+
|
|
424
|
+
// npm 包
|
|
425
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=!npm+express"})
|
|
426
|
+
```
|
|
427
|
+
|
|
428
|
+
#### 学术研究
|
|
429
|
+
|
|
430
|
+
```javascript
|
|
431
|
+
// Google Scholar 论文
|
|
432
|
+
web_fetch({"url": "https://scholar.google.com/scholar?q=deep+learning+2024"})
|
|
433
|
+
|
|
434
|
+
// 搜索PDF论文
|
|
435
|
+
web_fetch({"url": "https://www.google.com/search?q=machine+learning+filetype:pdf+2024"})
|
|
436
|
+
|
|
437
|
+
// arXiv 论文
|
|
438
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=site:arxiv.org+quantum+computing"})
|
|
439
|
+
```
|
|
440
|
+
|
|
441
|
+
#### 金融投资
|
|
442
|
+
|
|
443
|
+
```javascript
|
|
444
|
+
// 股票实时数据
|
|
445
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=AAPL+stock"})
|
|
446
|
+
|
|
447
|
+
// 汇率转换
|
|
448
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=EUR+to+USD"})
|
|
449
|
+
|
|
450
|
+
// 搜索财报PDF
|
|
451
|
+
web_fetch({"url": "https://www.google.com/search?q=Apple+Q4+2024+earnings+filetype:pdf"})
|
|
452
|
+
```
|
|
453
|
+
|
|
454
|
+
#### 新闻时事
|
|
455
|
+
|
|
456
|
+
```javascript
|
|
457
|
+
// Google新闻
|
|
458
|
+
web_fetch({"url": "https://www.google.com/search?q=breaking+news&tbm=nws&tbs=qdr:h"})
|
|
459
|
+
|
|
460
|
+
// Brave新闻
|
|
461
|
+
web_fetch({"url": "https://search.brave.com/search?q=world+news&source=news"})
|
|
462
|
+
|
|
463
|
+
// DuckDuckGo新闻
|
|
464
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=tech+news&ia=news"})
|
|
465
|
+
```
|
|
466
|
+
|
|
467
|
+
---
|
|
468
|
+
|
|
469
|
+
## 🛠️ 高级搜索技巧汇总
|
|
470
|
+
|
|
471
|
+
### URL编码工具函数
|
|
472
|
+
|
|
473
|
+
```javascript
|
|
474
|
+
// URL编码关键词
|
|
475
|
+
function encodeKeyword(keyword) {
|
|
476
|
+
return encodeURIComponent(keyword);
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
// 示例
|
|
480
|
+
const keyword = "machine learning";
|
|
481
|
+
const encoded = encodeKeyword(keyword); // "machine%20learning"
|
|
482
|
+
```
|
|
483
|
+
|
|
484
|
+
### 批量搜索模板
|
|
485
|
+
|
|
486
|
+
```javascript
|
|
487
|
+
// 多引擎批量搜索函数
|
|
488
|
+
function generateSearchUrls(keyword) {
|
|
489
|
+
const encoded = encodeURIComponent(keyword);
|
|
490
|
+
return {
|
|
491
|
+
google: `https://www.google.com/search?q=${encoded}`,
|
|
492
|
+
google_hk: `https://www.google.com.hk/search?q=${encoded}`,
|
|
493
|
+
duckduckgo: `https://duckduckgo.com/html/?q=${encoded}`,
|
|
494
|
+
brave: `https://search.brave.com/search?q=${encoded}`,
|
|
495
|
+
startpage: `https://www.startpage.com/sp/search?query=${encoded}`,
|
|
496
|
+
bing_intl: `https://cn.bing.com/search?q=${encoded}&ensearch=1`,
|
|
497
|
+
yahoo: `https://search.yahoo.com/search?p=${encoded}`,
|
|
498
|
+
ecosia: `https://www.ecosia.org/search?q=${encoded}`,
|
|
499
|
+
qwant: `https://www.qwant.com/?q=${encoded}`
|
|
500
|
+
};
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
// 使用示例
|
|
504
|
+
const urls = generateSearchUrls("artificial intelligence");
|
|
505
|
+
```
|
|
506
|
+
|
|
507
|
+
### 时间筛选快捷函数
|
|
508
|
+
|
|
509
|
+
```javascript
|
|
510
|
+
// Google时间筛选URL生成
|
|
511
|
+
function googleTimeSearch(keyword, period) {
|
|
512
|
+
const periods = {
|
|
513
|
+
hour: 'qdr:h',
|
|
514
|
+
day: 'qdr:d',
|
|
515
|
+
week: 'qdr:w',
|
|
516
|
+
month: 'qdr:m',
|
|
517
|
+
year: 'qdr:y'
|
|
518
|
+
};
|
|
519
|
+
return `https://www.google.com/search?q=${encodeURIComponent(keyword)}&tbs=${periods[period]}`;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
// 使用示例
|
|
523
|
+
const recentNews = googleTimeSearch("AI breakthrough", "week");
|
|
524
|
+
```
|
|
525
|
+
|
|
526
|
+
---
|
|
527
|
+
|
|
528
|
+
## 📝 完整搜索示例集
|
|
529
|
+
|
|
530
|
+
```javascript
|
|
531
|
+
// ==================== 技术开发 ====================
|
|
532
|
+
|
|
533
|
+
// 1. 搜索GitHub上高Star的Python项目
|
|
534
|
+
web_fetch({"url": "https://www.google.com/search?q=site:github.com+python+stars:%3E1000"})
|
|
535
|
+
|
|
536
|
+
// 2. Stack Overflow最佳答案
|
|
537
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=!so+best+way+to+learn+python"})
|
|
538
|
+
|
|
539
|
+
// 3. MDN文档查询
|
|
540
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=!mdn+promises"})
|
|
541
|
+
|
|
542
|
+
// 4. 搜索npm包
|
|
543
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=!npm+axios"})
|
|
544
|
+
|
|
545
|
+
// ==================== 学术研究 ====================
|
|
546
|
+
|
|
547
|
+
// 5. Google Scholar论文
|
|
548
|
+
web_fetch({"url": "https://scholar.google.com/scholar?q=transformer+architecture"})
|
|
549
|
+
|
|
550
|
+
// 6. 搜索PDF论文
|
|
551
|
+
web_fetch({"url": "https://www.google.com/search?q=attention+is+all+you+need+filetype:pdf"})
|
|
552
|
+
|
|
553
|
+
// 7. arXiv最新论文
|
|
554
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=site:arxiv.org+abs+quantum"})
|
|
555
|
+
|
|
556
|
+
// ==================== 新闻时事 ====================
|
|
557
|
+
|
|
558
|
+
// 8. Google最新新闻(过去1小时)
|
|
559
|
+
web_fetch({"url": "https://www.google.com/search?q=breaking+news&tbs=qdr:h&tbm=nws"})
|
|
560
|
+
|
|
561
|
+
// 9. Brave本周科技新闻
|
|
562
|
+
web_fetch({"url": "https://search.brave.com/search?q=technology&tf=pw&source=news"})
|
|
563
|
+
|
|
564
|
+
// 10. DuckDuckGo新闻
|
|
565
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=world+news&ia=news"})
|
|
566
|
+
|
|
567
|
+
// ==================== 金融投资 ====================
|
|
568
|
+
|
|
569
|
+
// 11. 股票实时数据
|
|
570
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=Tesla+stock"})
|
|
571
|
+
|
|
572
|
+
// 12. 货币汇率
|
|
573
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=1+BTC+to+USD"})
|
|
574
|
+
|
|
575
|
+
// 13. 公司财报PDF
|
|
576
|
+
web_fetch({"url": "https://www.google.com/search?q=Microsoft+annual+report+2024+filetype:pdf"})
|
|
577
|
+
|
|
578
|
+
// ==================== 知识计算 ====================
|
|
579
|
+
|
|
580
|
+
// 14. 数学计算
|
|
581
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=derivative+of+x%5E3+sin%28x%29"})
|
|
582
|
+
|
|
583
|
+
// 15. 单位换算
|
|
584
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=convert+100+miles+to+kilometers"})
|
|
585
|
+
|
|
586
|
+
// 16. 营养信息
|
|
587
|
+
web_fetch({"url": "https://www.wolframalpha.com/input?i=protein+in+chicken+breast"})
|
|
588
|
+
|
|
589
|
+
// ==================== 隐私保护搜索 ====================
|
|
590
|
+
|
|
591
|
+
// 17. DuckDuckGo隐私搜索
|
|
592
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=privacy+tools"})
|
|
593
|
+
|
|
594
|
+
// 18. Startpage匿名搜索
|
|
595
|
+
web_fetch({"url": "https://www.startpage.com/sp/search?query=secure+messaging"})
|
|
596
|
+
|
|
597
|
+
// 19. Brave无追踪搜索
|
|
598
|
+
web_fetch({"url": "https://search.brave.com/search?q=encryption+software"})
|
|
599
|
+
|
|
600
|
+
// ==================== 高级组合搜索 ====================
|
|
601
|
+
|
|
602
|
+
// 20. Google多条件精确搜索
|
|
603
|
+
web_fetch({"url": "https://www.google.com/search?q=%22machine+learning%22+site:github.com+filetype:pdf+2024"})
|
|
604
|
+
|
|
605
|
+
// 21. 排除特定站点的搜索
|
|
606
|
+
web_fetch({"url": "https://www.google.com/search?q=python+tutorial+-wikipedia+-w3schools"})
|
|
607
|
+
|
|
608
|
+
// 22. 价格范围搜索
|
|
609
|
+
web_fetch({"url": "https://www.google.com/search?q=laptop+%24800..%241200+best+review"})
|
|
610
|
+
|
|
611
|
+
// 23. 使用Bangs快速跳转
|
|
612
|
+
web_fetch({"url": "https://duckduckgo.com/html/?q=!g+site:medium.com+python"})
|
|
613
|
+
|
|
614
|
+
// 24. 图片搜索(Google)
|
|
615
|
+
web_fetch({"url": "https://www.google.com/search?q=beautiful+landscape&tbm=isch"})
|
|
616
|
+
|
|
617
|
+
// 25. 学术引用搜索
|
|
618
|
+
web_fetch({"url": "https://scholar.google.com/scholar?q=author:%22Geoffrey+Hinton%22"})
|
|
619
|
+
```
|
|
620
|
+
|
|
621
|
+
---
|
|
622
|
+
|
|
623
|
+
## 🔐 隐私保护最佳实践
|
|
624
|
+
|
|
625
|
+
### 搜索引擎隐私级别
|
|
626
|
+
|
|
627
|
+
| 引擎 | 追踪级别 | 数据保留 | 加密 | 推荐场景 |
|
|
628
|
+
|------|---------|---------|------|---------|
|
|
629
|
+
| **DuckDuckGo** | 无追踪 | 无保留 | 是 | 日常隐私搜索 |
|
|
630
|
+
| **Startpage** | 无追踪 | 无保留 | 是 | 需要Google结果但保护隐私 |
|
|
631
|
+
| **Brave** | 无追踪 | 无保留 | 是 | 独立索引,无偏见 |
|
|
632
|
+
| **Qwant** | 无追踪 | 无保留 | 是 | 欧盟合规要求 |
|
|
633
|
+
| **Google** | 高度追踪 | 长期保留 | 是 | 需要个性化结果 |
|
|
634
|
+
| **Bing** | 中度追踪 | 长期保留 | 是 | 微软服务集成 |
|
|
635
|
+
|
|
636
|
+
### 隐私搜索建议
|
|
637
|
+
|
|
638
|
+
1. **日常使用**: DuckDuckGo 或 Brave
|
|
639
|
+
2. **需要Google结果但保护隐私**: Startpage
|
|
640
|
+
3. **学术研究**: Google Scholar(学术用途追踪较少)
|
|
641
|
+
4. **敏感查询**: 使用Tor浏览器 + DuckDuckGo onion服务
|
|
642
|
+
5. **跨设备同步**: 避免登录搜索引擎账户
|
|
643
|
+
|
|
644
|
+
---
|
|
645
|
+
|
|
646
|
+
## 📚 参考资料
|
|
647
|
+
|
|
648
|
+
- [Google搜索操作符完整列表](https://support.google.com/websearch/answer/...)
|
|
649
|
+
- [DuckDuckGo Bangs完整列表](https://duckduckgo.com/bang)
|
|
650
|
+
- [Brave Search文档](https://search.brave.com/help/...)
|
|
651
|
+
- [WolframAlpha示例](https://www.wolframalpha.com/examples/)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
© 2025 Anthropic, PBC. All rights reserved.
|
|
2
|
+
|
|
3
|
+
LICENSE: Use of these materials (including all code, prompts, assets, files,
|
|
4
|
+
and other components of this Skill) is governed by your agreement with
|
|
5
|
+
Anthropic regarding use of Anthropic's services. If no separate agreement
|
|
6
|
+
exists, use is governed by Anthropic's Consumer Terms of Service or
|
|
7
|
+
Commercial Terms of Service, as applicable:
|
|
8
|
+
https://www.anthropic.com/legal/consumer-terms
|
|
9
|
+
https://www.anthropic.com/legal/commercial-terms
|
|
10
|
+
Your applicable agreement is referred to as the "Agreement." "Services" are
|
|
11
|
+
as defined in the Agreement.
|
|
12
|
+
|
|
13
|
+
ADDITIONAL RESTRICTIONS: Notwithstanding anything in the Agreement to the
|
|
14
|
+
contrary, users may not:
|
|
15
|
+
|
|
16
|
+
- Extract these materials from the Services or retain copies of these
|
|
17
|
+
materials outside the Services
|
|
18
|
+
- Reproduce or copy these materials, except for temporary copies created
|
|
19
|
+
automatically during authorized use of the Services
|
|
20
|
+
- Create derivative works based on these materials
|
|
21
|
+
- Distribute, sublicense, or transfer these materials to any third party
|
|
22
|
+
- Make, offer to sell, sell, or import any inventions embodied in these
|
|
23
|
+
materials
|
|
24
|
+
- Reverse engineer, decompile, or disassemble these materials
|
|
25
|
+
|
|
26
|
+
The receipt, viewing, or possession of these materials does not convey or
|
|
27
|
+
imply any license or right beyond those expressly granted above.
|
|
28
|
+
|
|
29
|
+
Anthropic retains all right, title, and interest in these materials,
|
|
30
|
+
including all copyrights, patents, and other intellectual property rights.
|