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,317 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: auto-target-tracker
|
|
3
|
+
description: 自动目标进度追踪器。在对话中检测到目标相关图片(笔记、进度、截图、记录)时,自动调用 VLM 识别关键信息并记录到目标日记。适用于学习管理、健身追踪、工作进度、习惯养成、创作记录等所有目标管理场景。
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 自动目标进度追踪器
|
|
7
|
+
|
|
8
|
+
## 触发条件
|
|
9
|
+
|
|
10
|
+
当对话中出现以下条件时自动触发:
|
|
11
|
+
|
|
12
|
+
1. **用户发送了图片**(特别是学习笔记、进度截图、健身记录、任务清单、创作作品等)。
|
|
13
|
+
2. **用户在设定的目标时间段**(如 08:30, 10:00, 20:00)发送了图片。
|
|
14
|
+
3. **用户明确说**"帮我记一下"、"看下进度"、"打卡"、"更新一下"等。
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## 工作流程
|
|
19
|
+
|
|
20
|
+
### 1. 检测图片
|
|
21
|
+
|
|
22
|
+
当检测到图片时,检查:
|
|
23
|
+
- 图片文件名是否包含目标关键词(progress, goal, task, workout, note等)
|
|
24
|
+
- 图片内容是否包含目标元素(进度条、文字、代码、图表、计划表等)
|
|
25
|
+
- 是否在预定的目标提醒时间附近
|
|
26
|
+
- 用户最近的对话上下文是否涉及目标的执行
|
|
27
|
+
|
|
28
|
+
### 2. 调用 VLM 识别
|
|
29
|
+
|
|
30
|
+
使用 vlm 工具识别图片:
|
|
31
|
+
|
|
32
|
+
**通用 prompt 模板**:
|
|
33
|
+
```
|
|
34
|
+
"识别图片中的关键信息,根据目标类型提取以下内容:
|
|
35
|
+
- 核心任务/内容
|
|
36
|
+
- 完成进度或数量
|
|
37
|
+
- 关键数据(如时间、重量、字数等)
|
|
38
|
+
- 给出一段简短的执行反馈"
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
**目标类型专用 prompt**:
|
|
42
|
+
|
|
43
|
+
| 目标类型 | Prompt |
|
|
44
|
+
|---------|--------|
|
|
45
|
+
| 学习 | "识别学习笔记,提取知识点、完成度" |
|
|
46
|
+
| 健身 | "识别健身记录,提取运动类型、组数、次数、重量" |
|
|
47
|
+
| 工作 | "识别工作进度,提取完成任务、完成率" |
|
|
48
|
+
| 创作 | "识别创作作品,提取创作类型、进度、关键元素" |
|
|
49
|
+
| 习惯 | "识别打卡记录,提取打卡内容、连续天数" |
|
|
50
|
+
|
|
51
|
+
### 3. 解析目标信息
|
|
52
|
+
|
|
53
|
+
从 VLM 返回的结果中提取:
|
|
54
|
+
- **任务/内容清单**:识别出的具体行动或任务
|
|
55
|
+
- **完成度**:基于图片内容的进度估算
|
|
56
|
+
- **关键数据**:时间、数量、重量、字数等量化指标
|
|
57
|
+
- **认知反馈**:对当前目标状态的简评
|
|
58
|
+
|
|
59
|
+
### 4. 记录到目标日记
|
|
60
|
+
|
|
61
|
+
调用`edit_daily`工具将识别结果记录到当天的日常笔记中
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
### 5. 反馈给用户
|
|
65
|
+
|
|
66
|
+
向用户确认识别结果:
|
|
67
|
+
|
|
68
|
+
```
|
|
69
|
+
已记录你的目标打卡:
|
|
70
|
+
|
|
71
|
+
📝 识别结果:
|
|
72
|
+
核心内容:你拍的是今天的英语单词表,一共记了 15 个新词。
|
|
73
|
+
进度估算:今天的单词任务全部搞定,进度打败了 80% 的学习党。
|
|
74
|
+
建议:有两个单词的拼写有点模糊,明天复习的时候记得多看两眼。
|
|
75
|
+
|
|
76
|
+
记录准确吗?要帮你存进今天的目标日记里吗?
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## 记录格式
|
|
82
|
+
|
|
83
|
+
### 目标日记条目示例
|
|
84
|
+
|
|
85
|
+
```markdown
|
|
86
|
+
## 20:00 打卡记录
|
|
87
|
+
|
|
88
|
+
**目标类型**: 📚 学习
|
|
89
|
+
|
|
90
|
+
**图片**: 
|
|
91
|
+
|
|
92
|
+
**VLM识别结果**:
|
|
93
|
+
|
|
94
|
+
| 任务/内容 | 进度/数量 | 状态 |
|
|
95
|
+
|----------|----------|------|
|
|
96
|
+
| 英语单词 (Unit 1) | 15 个 | 已完成 |
|
|
97
|
+
| 数学练习 (第3章) | 80% | 进行中 |
|
|
98
|
+
|
|
99
|
+
| **总计** | | **今日达成 2/3** |
|
|
100
|
+
|
|
101
|
+
**关键数据**:
|
|
102
|
+
- 学习时长: 2小时
|
|
103
|
+
- 专注度: 高
|
|
104
|
+
|
|
105
|
+
**备注**: 自动识别,用户确认正确
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
## 10:30 健身打卡
|
|
110
|
+
|
|
111
|
+
**目标类型**: 🏃 健身
|
|
112
|
+
|
|
113
|
+
**图片**: 
|
|
114
|
+
|
|
115
|
+
**VLM识别结果**:
|
|
116
|
+
|
|
117
|
+
| 运动类型 | 组数 | 次数 | 重量 | 状态 |
|
|
118
|
+
|---------|------|------|------|------|
|
|
119
|
+
| 卧推 | 4 | 12 | 60kg | ✅ 完成 |
|
|
120
|
+
| 深蹲 | 4 | 10 | 80kg | ✅ 完成 |
|
|
121
|
+
| 引体向上 | 3 | 8 | 自重 | ⚠️ 少一组 |
|
|
122
|
+
|
|
123
|
+
| **总计** | | | **今日达标** |
|
|
124
|
+
|
|
125
|
+
**关键数据**:
|
|
126
|
+
- 总重量: 2640kg
|
|
127
|
+
- 训练时长: 45分钟
|
|
128
|
+
|
|
129
|
+
**备注**: 引体向上少完成一组,下次补上
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
---
|
|
133
|
+
|
|
134
|
+
## 与目标系统的集成
|
|
135
|
+
|
|
136
|
+
### 每日汇总
|
|
137
|
+
|
|
138
|
+
在每天晚上 22:00 的汇总中,包含:
|
|
139
|
+
- 今日所有打卡记录
|
|
140
|
+
- 目标达成率分析
|
|
141
|
+
- 与目标的对比(如果设置了目标)
|
|
142
|
+
|
|
143
|
+
### 周/月报告
|
|
144
|
+
|
|
145
|
+
在周报告中,包含:
|
|
146
|
+
- 本周有效执行时长
|
|
147
|
+
- 目标覆盖范围
|
|
148
|
+
- 连续打卡天数
|
|
149
|
+
- 动态难度调整建议:如果连续达标,则建议提升下周任务量
|
|
150
|
+
|
|
151
|
+
---
|
|
152
|
+
|
|
153
|
+
## 常见使用场景
|
|
154
|
+
|
|
155
|
+
### 场景1:学习打卡
|
|
156
|
+
|
|
157
|
+
**用户行为**:发送手写笔记照片
|
|
158
|
+
|
|
159
|
+
**自动识别**:
|
|
160
|
+
- 提取知识点
|
|
161
|
+
- 计算学习进度
|
|
162
|
+
- 记录到学习日志
|
|
163
|
+
|
|
164
|
+
**反馈示例**:
|
|
165
|
+
```
|
|
166
|
+
📚 识别到学习笔记:
|
|
167
|
+
- 机器学习监督学习算法(已完成)
|
|
168
|
+
- 梯度下降优化器(进行中)
|
|
169
|
+
- 正则化防过拟合(未开始)
|
|
170
|
+
|
|
171
|
+
进度:33% | 预计还需 2 小时完成
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
### 场景2:健身打卡
|
|
175
|
+
|
|
176
|
+
**用户行为**:发送健身记录照片
|
|
177
|
+
|
|
178
|
+
**自动识别**:
|
|
179
|
+
- 提取运动类型
|
|
180
|
+
- 统计组数、次数、重量
|
|
181
|
+
- 计算训练量
|
|
182
|
+
|
|
183
|
+
**反馈示例**:
|
|
184
|
+
```
|
|
185
|
+
🏃 健身记录已识别:
|
|
186
|
+
- 卧推 60kg × 12 × 4组 ✅
|
|
187
|
+
- 深蹲 80kg × 10 × 4组 ✅
|
|
188
|
+
- 引体向上 自重 × 8 × 3组 ✅
|
|
189
|
+
|
|
190
|
+
总训练量:2640kg | 时长:45分钟
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
### 场景3:工作进度
|
|
194
|
+
|
|
195
|
+
**用户行为**:发送项目进度截图
|
|
196
|
+
|
|
197
|
+
**自动识别**:
|
|
198
|
+
- 提取已完成任务
|
|
199
|
+
- 计算完成百分比
|
|
200
|
+
- 识别剩余任务
|
|
201
|
+
|
|
202
|
+
**反馈示例**:
|
|
203
|
+
```
|
|
204
|
+
💼 工作进度已识别:
|
|
205
|
+
- 需求文档(已完成)✅
|
|
206
|
+
- 原型设计(已完成)✅
|
|
207
|
+
- 前端开发(进行中)🔄 80%
|
|
208
|
+
- 后端开发(未开始)⏳
|
|
209
|
+
|
|
210
|
+
项目总进度:67%
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
### 场景4:创作打卡
|
|
214
|
+
|
|
215
|
+
**用户行为**:发送创作作品照片
|
|
216
|
+
|
|
217
|
+
**自动识别**:
|
|
218
|
+
- 提取创作类型
|
|
219
|
+
- 识别关键元素
|
|
220
|
+
- 估算完成度
|
|
221
|
+
|
|
222
|
+
**反馈示例**:
|
|
223
|
+
```
|
|
224
|
+
🎨 创作记录已识别:
|
|
225
|
+
类型:插画创作
|
|
226
|
+
元素:人物角色、背景场景
|
|
227
|
+
完成度:线稿100%,上色60%
|
|
228
|
+
|
|
229
|
+
建议:今天完成了角色线稿,明天可以开始背景上色
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
### 场景5:习惯打卡
|
|
233
|
+
|
|
234
|
+
**用户行为**:发送打卡日历截图
|
|
235
|
+
|
|
236
|
+
**自动识别**:
|
|
237
|
+
- 提取连续打卡天数
|
|
238
|
+
- 识别今日打卡状态
|
|
239
|
+
- 计算打卡率
|
|
240
|
+
|
|
241
|
+
**反馈示例**:
|
|
242
|
+
```
|
|
243
|
+
✅ 习惯打卡已识别:
|
|
244
|
+
早起:连续 15 天 | 打卡率 100%
|
|
245
|
+
阅读:连续 8 天 | 打卡率 73%
|
|
246
|
+
运动:连续 21 天 | 打卡率 100%
|
|
247
|
+
|
|
248
|
+
🎉 运动已连续打卡 3 周,继续保持!
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
---
|
|
252
|
+
|
|
253
|
+
## Scope
|
|
254
|
+
|
|
255
|
+
This skill ONLY:
|
|
256
|
+
- 识别目标相关图片并提取关键信息
|
|
257
|
+
- 记录打卡数据到日常笔记文件
|
|
258
|
+
- 提供进度反馈和建议
|
|
259
|
+
|
|
260
|
+
This skill NEVER:
|
|
261
|
+
- 自动执行任何基于识别结果的操作
|
|
262
|
+
- 上传图片到外部服务(除 VLM API)
|
|
263
|
+
- 访问用户未授权的图片资源
|
|
264
|
+
- 修改用户的目标计划(仅记录进度)
|
|
265
|
+
|
|
266
|
+
---
|
|
267
|
+
|
|
268
|
+
## Security & Privacy
|
|
269
|
+
|
|
270
|
+
**Data that stays local:**
|
|
271
|
+
- 识别后的结构化结果
|
|
272
|
+
- 记录到 日常笔记或长期记忆 和 USER.md 的内容
|
|
273
|
+
- 打卡历史数据
|
|
274
|
+
|
|
275
|
+
**This skill does NOT:**
|
|
276
|
+
- 分享目标进度或打卡数据给第三方
|
|
277
|
+
- 自动发布打卡信息到社交平台
|
|
278
|
+
- 访问用户的其他图片资源
|
|
279
|
+
|
|
280
|
+
---
|
|
281
|
+
|
|
282
|
+
## 注意事项
|
|
283
|
+
|
|
284
|
+
1. **隐私保护**: 图片和识别结果仅存储在本地,不会上传到云端(除了调用 VLM API 进行识别)
|
|
285
|
+
2. **准确性**: VLM 识别的内容仅供参考,可能因字迹模糊、图片质量等原因有所偏差
|
|
286
|
+
3. **及时确认**: 建议用户在记录后及时确认识别结果,如有偏差可手动修正
|
|
287
|
+
4. **目标类型识别**: 系统会根据图片内容自动判断目标类型,如有误可手动调整
|
|
288
|
+
5. **进度估算**: 进度百分比基于图片内容估算,可能不准确,建议用户定期手动更新
|
|
289
|
+
|
|
290
|
+
---
|
|
291
|
+
|
|
292
|
+
## 集成建议
|
|
293
|
+
|
|
294
|
+
### 与 SOUL.md 配合
|
|
295
|
+
|
|
296
|
+
将自动追踪器整合到目标管理日常工作流中:
|
|
297
|
+
|
|
298
|
+
```markdown
|
|
299
|
+
### 2. 智能记录与估算 (Logging & Estimation)
|
|
300
|
+
|
|
301
|
+
- 当用户发送任何与目标相关的图片时:
|
|
302
|
+
1. 自动调用 auto-target-tracker 识别内容
|
|
303
|
+
2. 提取关键信息并估算进度
|
|
304
|
+
3. 立刻记录到日常笔记中
|
|
305
|
+
4. 同步更新 USER.md 的目标进度
|
|
306
|
+
```
|
|
307
|
+
|
|
308
|
+
### 与 HEARTBEAT.md 配合
|
|
309
|
+
|
|
310
|
+
在心跳检查中包含:
|
|
311
|
+
|
|
312
|
+
```markdown
|
|
313
|
+
## 每日汇总
|
|
314
|
+
- 22:00 自动读取今日所有打卡记录
|
|
315
|
+
- 生成目标进度报告
|
|
316
|
+
- 发送给用户
|
|
317
|
+
```
|
package/skills/base.py
ADDED
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
"""
|
|
2
|
+
skills/base.py - 技能基类
|
|
3
|
+
===========================
|
|
4
|
+
定义所有技能的统一接口,兼容 OpenClaw 风格的 JSON 结构化调用。
|
|
5
|
+
"""
|
|
6
|
+
from __future__ import annotations
|
|
7
|
+
|
|
8
|
+
import json
|
|
9
|
+
from abc import ABC, abstractmethod
|
|
10
|
+
from dataclasses import dataclass, field
|
|
11
|
+
from typing import Any, Dict, List, Optional
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
@dataclass
|
|
15
|
+
class SkillParameter:
|
|
16
|
+
"""技能参数定义"""
|
|
17
|
+
name: str
|
|
18
|
+
type: str = "string" # string | integer | float | boolean | array | object
|
|
19
|
+
description: str = ""
|
|
20
|
+
required: bool = True
|
|
21
|
+
default: Any = None
|
|
22
|
+
enum: Optional[List[str]] = None # 限制可选值
|
|
23
|
+
|
|
24
|
+
def to_dict(self) -> dict:
|
|
25
|
+
result = {
|
|
26
|
+
"name": self.name,
|
|
27
|
+
"type": self.type,
|
|
28
|
+
"description": self.description,
|
|
29
|
+
"required": self.required,
|
|
30
|
+
}
|
|
31
|
+
if self.default is not None:
|
|
32
|
+
result["default"] = self.default
|
|
33
|
+
if self.enum:
|
|
34
|
+
result["enum"] = self.enum
|
|
35
|
+
return result
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
@dataclass
|
|
39
|
+
class SkillResult:
|
|
40
|
+
"""技能执行结果"""
|
|
41
|
+
success: bool = True
|
|
42
|
+
data: Any = None # 返回数据
|
|
43
|
+
message: str = "" # 人类可读的消息
|
|
44
|
+
error: str = "" # 错误信息
|
|
45
|
+
files: List[str] = field(default_factory=list) # 产生的文件列表
|
|
46
|
+
metadata: Dict[str, Any] = field(default_factory=dict)
|
|
47
|
+
|
|
48
|
+
def to_dict(self) -> dict:
|
|
49
|
+
return {
|
|
50
|
+
"success": self.success,
|
|
51
|
+
"data": self.data,
|
|
52
|
+
"message": self.message,
|
|
53
|
+
"error": self.error,
|
|
54
|
+
"files": self.files,
|
|
55
|
+
"metadata": self.metadata,
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
def to_json(self) -> str:
|
|
59
|
+
return json.dumps(self.to_dict(), ensure_ascii=False, indent=2)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
class Skill(ABC):
|
|
63
|
+
"""
|
|
64
|
+
技能抽象基类。
|
|
65
|
+
|
|
66
|
+
所有技能必须继承此类并实现 execute 方法。
|
|
67
|
+
技能定义遵循 OpenClaw 风格的 JSON Schema。
|
|
68
|
+
|
|
69
|
+
子类需要设置:
|
|
70
|
+
- name: 技能名称
|
|
71
|
+
- description: 技能描述
|
|
72
|
+
- parameters: 参数列表
|
|
73
|
+
"""
|
|
74
|
+
|
|
75
|
+
name: str = "base_skill"
|
|
76
|
+
description: str = "基础技能"
|
|
77
|
+
category: str = "general"
|
|
78
|
+
parameters: List[SkillParameter] = []
|
|
79
|
+
dangerous: bool = False # 标记是否为危险操作
|
|
80
|
+
|
|
81
|
+
@abstractmethod
|
|
82
|
+
async def execute(self, **kwargs) -> SkillResult:
|
|
83
|
+
"""
|
|
84
|
+
执行技能。
|
|
85
|
+
|
|
86
|
+
Args:
|
|
87
|
+
**kwargs: 技能参数
|
|
88
|
+
|
|
89
|
+
Returns:
|
|
90
|
+
SkillResult 执行结果
|
|
91
|
+
"""
|
|
92
|
+
pass
|
|
93
|
+
|
|
94
|
+
def validate_params(self, params: Dict[str, Any]) -> tuple[bool, str]:
|
|
95
|
+
"""校验参数是否合法"""
|
|
96
|
+
for p in self.parameters:
|
|
97
|
+
if p.required and p.name not in params:
|
|
98
|
+
return False, f"缺少必需参数: {p.name}"
|
|
99
|
+
if p.name in params and p.enum and params[p.name] not in p.enum:
|
|
100
|
+
return False, f"参数 {p.name} 值无效,可选: {p.enum}"
|
|
101
|
+
return True, ""
|
|
102
|
+
|
|
103
|
+
def get_schema(self) -> dict:
|
|
104
|
+
"""
|
|
105
|
+
获取技能的 JSON Schema (用于 LLM function calling)。
|
|
106
|
+
兼容 OpenAI function calling 格式。
|
|
107
|
+
"""
|
|
108
|
+
properties = {}
|
|
109
|
+
required = []
|
|
110
|
+
for p in self.parameters:
|
|
111
|
+
prop = {
|
|
112
|
+
"type": p.type,
|
|
113
|
+
"description": p.description,
|
|
114
|
+
}
|
|
115
|
+
if p.enum:
|
|
116
|
+
prop["enum"] = p.enum
|
|
117
|
+
if p.default is not None:
|
|
118
|
+
prop["default"] = p.default
|
|
119
|
+
properties[p.name] = prop
|
|
120
|
+
if p.required:
|
|
121
|
+
required.append(p.name)
|
|
122
|
+
|
|
123
|
+
return {
|
|
124
|
+
"type": "function",
|
|
125
|
+
"function": {
|
|
126
|
+
"name": self.name,
|
|
127
|
+
"description": self.description,
|
|
128
|
+
"parameters": {
|
|
129
|
+
"type": "object",
|
|
130
|
+
"properties": properties,
|
|
131
|
+
"required": required,
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
def to_openclaw_format(self) -> dict:
|
|
137
|
+
"""获取 OpenClaw 风格的技能定义"""
|
|
138
|
+
return {
|
|
139
|
+
"name": self.name,
|
|
140
|
+
"description": self.description,
|
|
141
|
+
"category": self.category,
|
|
142
|
+
"parameters": [p.to_dict() for p in self.parameters],
|
|
143
|
+
"dangerous": self.dangerous,
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
def __repr__(self):
|
|
147
|
+
return f"<Skill: {self.name}>"
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Radical Transparency Influence Methodology
|
|
2
|
+
|
|
3
|
+
### Honesty
|
|
4
|
+
|
|
5
|
+
Radical transparency is a commitment to engaging prospects, clients, investors, and colleagues with complete candor, even if, on the surface, it may seem like it could hurt your chances of closing a sale or landing a particular investor. In B2B markets, where many salespeople are focused on meeting quotas and achieving their commission or bonus, this approach stands out as a refreshingly honest way to build relationships with potential customers. Honesty is a key element in any successful sales process, as it helps to foster trust and respect between the buyer and the seller.
|
|
6
|
+
|
|
7
|
+
### Leveraging Brain Science to Inform How We Sell
|
|
8
|
+
|
|
9
|
+
Sales software and technology have advanced exponentially over the past decade, but sales strategies and approaches have not kept pace. This has contributed to the growing feeling among B2B buyers that salespeople offer little value in the buying process.
|
|
10
|
+
|
|
11
|
+
To address this issue, we can look to modern research in the field of neurology first. Research from the past decade has shown that emotion is the biggest factor in important decisions. We know that a narrative, or story, is the most effective way to share information so that it has impact and can influence behavior. The human brain has evolved over millions of years to attach the most meaning to information presented in this way.
|
|
12
|
+
|
|
13
|
+
### Understanding The Analytic Brain vs The Lizard Brain
|
|
14
|
+
|
|
15
|
+
### The Modern Brain
|
|
16
|
+
|
|
17
|
+
Also known as the **Neocortex**, this is the most recent area of the human brain to have evolved. It is used to rationalize and analyze information, and is responsible for identifying mistakes and holes in newly presented concepts.
|
|
18
|
+
|
|
19
|
+
Unfortunately, a vast majority of salespeople have been trained to communicate information to this part of the brain. Brain scans have shown that important decisions are not processed in the Neocortex.
|
|
20
|
+
|
|
21
|
+
### The Lizard Brain
|
|
22
|
+
|
|
23
|
+
The **Limbic Cortex**, a part of the brain, has been present since the first humans evolved and is responsible for our behavior and how it can be modified. It is also the source of instinct and emotion, which are essential for successful sales conversations.
|
|
24
|
+
|
|
25
|
+
Brain scans have shown that the limbic system plays a major role in significant decision-making. Investing, buying, and other consequential decisions are often driven by emotion, motivating actions.
|
|
26
|
+
|
|
27
|
+
### What does this have to do with Sales?
|
|
28
|
+
|
|
29
|
+
What makes this methodology especially effective is that it focuses primarily on both how the human brain takes in information most effectively and how it processes that information within a context where value is being presented in exchange for money.
|
|
30
|
+
|
|
31
|
+
Unfortunately, most salespeople are out of the game within the first few seconds. This happens because older methodologies and sales training practices are focused heavily on delivering information to the analytical brain. This is not ideal, as the analytical brain is largely responsible for skepticism, non-emotional evaluation, and is therefore very difficult to persuade.
|
|
32
|
+
|
|
33
|
+
On the other hand, salespeople who deliver information primarily to the part of the brain responsible for emotion, the lizard brain, are able to influence the behavior of their prospects more effectively. This is because buying decisions are most often emotional in nature.
|
|
34
|
+
|
|
35
|
+
While the analytical brain is stimulated by identifying mistakes and justifying actions, the limbic system is stimulated by stories, human connection, shared beliefs, and driving emotionally based decisions.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Give Spotlight on Mac Superpowers with Raycast
|
|
2
|
+
|
|
3
|
+
## What is Raycast?
|
|
4
|
+
|
|
5
|
+
I recently rediscovered Raycast and wanted to try it again after a few years. Raycast has infinitely more features than Spotlight (Apple's search tool).
|
|
6
|
+
|
|
7
|
+
I was skeptical, assuming it would be just another Spotlight replacement that would require a lot of effort for minimal productivity gains, so I was hesitant to give it a try thinking I'd need to devote time and resources I don't have to a steep learning curve. Boy was I wrong!
|
|
8
|
+
|
|
9
|
+
I finally decided to give it a try, and it's probably the single most impactful software I've introduced into my daily workflows, outside of maybe Notion.
|
|
10
|
+
|
|
11
|
+
I use it countless times daily for tasks like searching Hubspot for contact or deal information, generating social posts with ChatGPT, and starting my next Zoom meeting. Tasks that would have taken at least a minute or two now take under 10 seconds.
|
|
12
|
+
|
|
13
|
+
I've saved a significant amount of time using Raycast to access all kinds of information from my most-used applications. The real kicker is that Raycast is a completely **free** application and not a "free plan" with the all the good features paywalled. It's a no-brainer for anyone who frequently uses Spotlight, keyboard shortcuts, or those built into MacOS.
|
|
14
|
+
|
|
15
|
+
### The Raycast Extension Store
|
|
16
|
+
|
|
17
|
+
Raycast's Extension Store is a comprehensive directory that's divided into three main categories: productivity, utility, and business. The store houses thousands of extensions that can be installed by simply tapping return.
|
|
18
|
+
|
|
19
|
+
The extensions in the extension store are provided by a dedicated community of developers and are constantly being updated with new features and improvements. There are thousands of extensions available for the most popular apps and tools out there. A few notable options include Salesforce, Hubspot, ChatGPT, Slack, Notion, Crunchbase, Google Drive/Meet/Calendar/Search, Facetime, Mail, WhatsApp, Todoist, ClickUp, and so many more.
|
|
20
|
+
|
|
21
|
+
### Interacting with Applications
|
|
22
|
+
|
|
23
|
+
Since discovering Raycast a few weeks ago, I've been incredibly impressed with its capabilities.
|
|
24
|
+
|
|
25
|
+
More important than the fantastic selection of app extensions is how Raycast allows users to interact directly with these apps.
|
|
26
|
+
|
|
27
|
+
Tasks like searching Hubspot or Salesforce for a contact's email, starting your next Zoom meeting, or adding a quick task to Notion now take less than 5-10 seconds. For example, instead of going into Hubspot and finding a contact's profile to grab an email or phone number, I can hit ⌘+space, type "hub," and search my entire Hubspot database right from the command bar.
|
|
28
|
+
|
|
29
|
+
### Conclusion
|
|
30
|
+
|
|
31
|
+
It's still hard to believe, but Raycast is completely 100% free. This isn't a "free plan" with all the good features paywalled, but all features are free.
|
|
32
|
+
|
|
33
|
+
Raycast is a game-changer for any professional working on a Mac that frequently uses keyboard shortcuts, Apple's Spotlight, or just wants to save a ton of time finding information within your most used apps.
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# How Short-form Content Is Changing Marketing & Storytelling Forever
|
|
2
|
+
|
|
3
|
+
Over the past decade, our youngest generations have been fighting a losing battle against the impact that short-form algorithms, used in apps like TikTok and Instagram, have had on their brains and attention spans. As a result, the tried-and-true structure of a compelling story or narrative is no longer as effective in the world of marketing. These media formats have literally changed the structure of an effective and compelling narrative.
|
|
4
|
+
|
|
5
|
+
In a world where a tweet can spark a movement and a 60-second video can go viral, we are living through one of the largest transformations in how we share ideas, stories, and information. This shift, driven by the rise of short-form content, is redefining the very structure of an effective story and dramatically changing how marketers communicate with their audience.
|
|
6
|
+
|
|
7
|
+
## How Did We Get Here?
|
|
8
|
+
|
|
9
|
+
### Sesame Street Started It. Really.
|
|
10
|
+
|
|
11
|
+
Believe it or not, the journey begins with "Sesame Street." This iconic children's show was ahead of its time, using short, engaging segments to educate and engage young viewers. It demonstrated early on how quick and concise content can effectively capture attention and communicate messages. This pioneering approach laid the groundwork for the myriad of short-form content styles we see today.
|
|
12
|
+
|
|
13
|
+
### The Mobile Tech Influence
|
|
14
|
+
|
|
15
|
+
With the advent of mobile technology, more importantly, the smartphone, shorter content naturally matched this type of consumption. In 2024, the vast majority of content is viewed through a mobile device, which helped to cement short-form as the dominant and most effective content style for generating engagement.
|
|
16
|
+
|
|
17
|
+
### The Perfect Storm: Social Media Meets Mobile-First
|
|
18
|
+
|
|
19
|
+
The advent of social media platforms, combined with the rise of smartphones, created the perfect environment for bite-sized content. The algorithms that dictate what content you're exposed to on apps like Twitter, Instagram, and TikTok measure the success of any piece of content by its engagement level. To achieve success, creators must put out a large volume of content that drives engagement, as opposed to spending significant time on more meaningful content. The latter strategy simply won't help you break through.
|
|
20
|
+
|
|
21
|
+
## The Evolution of Storytelling in the Social Media Age
|
|
22
|
+
|
|
23
|
+
### Classic vs. Modern Storytelling
|
|
24
|
+
|
|
25
|
+
The traditionally accepted structure of an effective story or narrative generally begins with rising action, followed by an inciting event, all building towards a climax, which is where the audience is at peak engagement. For this type of storytelling to pay off, it must spend time drawing the viewer in.
|
|
26
|
+
|
|
27
|
+
In 2024, however, the structure for telling a successful story begins with the climax. The most viral content often starts by thrusting the viewer right into the middle of the most tense moments. Given the short timeframes, it's easy to see why the satisfaction wears off quickly and results in the dreaded doom scrolling.
|
|
28
|
+
|
|
29
|
+
### New Formats, New Stories
|
|
30
|
+
|
|
31
|
+
Before social media, storytelling online began evolving with platforms like microblogs, forums, and instant messaging services. These formats laid the foundation for short-form by serializing storytelling in a way that allows the narrative to unfold over separate bits of content, again driving users to just keep on scrolling.
|
|
32
|
+
|
|
33
|
+
## The Negative Effects of Short-Form Content
|
|
34
|
+
|
|
35
|
+
### Cognitive Overload and Overstimulation
|
|
36
|
+
|
|
37
|
+
There are other serious downsides to the new world of short-form content that may quite possibly have unintended effects on the younger generations, as they are quite literally the guinea pigs, being exposed to almost exclusively short-form content with fewer and fewer alternatives.
|
|
38
|
+
|
|
39
|
+
The relentless stream of short, engaging content can lead to cognitive overload. Users are bombarded with information, making it more difficult to focus or deeply engage with any single piece. This overstimulation often results in a superficial understanding of topics and a diminished interest in more in-depth and nuanced content.
|
|
40
|
+
|
|
41
|
+
### The Compromise of Intellectual Depth
|
|
42
|
+
|
|
43
|
+
Studies have raised concerns about how short-form content, particularly when consumed extensively by younger audiences, might impact cognitive development and attention spans. The format's emphasis on immediate feedback and satisfaction can oversimplify complex topics, leading viewers into the false belief that they have a much better understanding of an issue than they actually do.
|
|
44
|
+
|
|
45
|
+
### Short-Form Content is Here to Stay
|
|
46
|
+
|
|
47
|
+
Short-form content has irreversibly changed the landscape of marketing and storytelling. Its rise reflects a broader shift in how we consume information and what we expect from our digital experiences. By understanding its evolution, embracing its potential, and being mindful of its pitfalls, we can use short-form content to tell stories that are not only engaging and relevant but also meaningful and impactful. In the ever-evolving world of content, adaptability, creativity, and a commitment to quality will be key to captivating and maintaining the attention of modern audiences.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# The Amazing Benefits of Typing Very Fast
|
|
2
|
+
|
|
3
|
+
About a year ago I decided I wanted to become a faster typer as I spend most of my day on a computer and thought it might have an impact on how fast I could work. I decided to practice on Monkeytype.com every day for at least 10 mins. I started out around 80 WPM and about 2 weeks in I was already over 100. A year in and I've hit 150. The impact on my daily workflows has been incredible. I'm about at the speed where I can type at the speed of my thinking, which is great for writing copy.
|
|
4
|
+
|
|
5
|
+
### Getting Started
|
|
6
|
+
|
|
7
|
+
To start, I used Monkeytype.com and decided to commit at least 5 to 10 minutes every day to practice. I started at around 80 WPM, which was decent, but I really didn't expect to improve as quickly as I did.
|
|
8
|
+
|
|
9
|
+
Within 2 to 3 weeks of daily practice, my speed jumped to over 100 WPM. This rapid improvement served as a great morale boost, prompting me to stick with my practice regime. A little under a year later, I was able to clock a 150 WPM!
|
|
10
|
+
|
|
11
|
+
### The Impact on Daily Workflows
|
|
12
|
+
|
|
13
|
+
The impact of my newfound typing speed on my daily workflows was phenomenal. As someone who works in front of a computer all-day everyday, the ability to type at the same speed as my thinking proved to be a game-changer, particularly when it came to writing copy. It was amazing how quickly I could get my ideas on the computer screen.
|
|
14
|
+
|
|
15
|
+
I discovered that the benefits of being a fast typer extend beyond simple time-saving. It's akin to unlocking a new level of proficiency on your computer, and the advantages are more numerous than you might expect.
|
|
16
|
+
|
|
17
|
+
### Why You Should Consider Typing Faster
|
|
18
|
+
|
|
19
|
+
If you're at all like me, it will quickly become like a sport where you're constantly trying to improve your previous WPM. The beauty of this skill is that the barriers to entry are virtually non-existent. If you can type, you can improve. All it requires is a little dedication, with just 5-10 minutes of practice per day.
|
|
20
|
+
|
|
21
|
+
### Taking Workflows to the Next Level by Typing Faster
|
|
22
|
+
|
|
23
|
+
For Mac users that leverage a spotlight replacement app like Alfred or Raycast, typing faster can revolutionize your daily workflows. I use Raycast personally, and the simple act of pressing cmd+space and quickly typing the app I need to open or file I need to search become nearly instantaneous. Whether it's opening apps or performing functions, everything seems to be accomplished at warp speed.
|
|
24
|
+
|
|
25
|
+
Even if you only use the basic spotlight feature on your Mac, you'll certainly see a substantial increase in your speed of navigation. Suddenly, finding what you're looking for becomes a swift, almost instantaneous process.
|
|
26
|
+
|
|
27
|
+
### Conclusion
|
|
28
|
+
|
|
29
|
+
As we further immerse ourselves in our digital era, being a fast typer is no longer just a party trick. It's a practical skill, one that can help you navigate your digital world more efficiently and productively.
|
|
30
|
+
|
|
31
|
+
My journey towards becoming a faster typer proved to be one of the most impactful things I've done to get more done. It took a tool I use every day — my keyboard — and turned it into a vehicle for productivity and efficiency.
|
|
32
|
+
|
|
33
|
+
If you find yourself tethered to a keyboard for a significant part of your day, consider investing a few minutes each day towards improving your typing speed. You will certainly be surprised by the boost in productivity, how much quicker you can communicate and collaborate with your team. So, how about giving it a shot and seeing where it takes you?
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# How to Write More Effective AI Prompts
|
|
2
|
+
|
|
3
|
+
## The Art of Prompt Engineering for ChatGPT
|
|
4
|
+
|
|
5
|
+
In an AI-driven era, mastering communication with tools like ChatGPT is crucial. This guide explores writing effective prompts for ChatGPT, unlocking its full potential. Whether you're a tech enthusiast, content creator, or business professional, these tips enhance your AI interaction.
|
|
6
|
+
|
|
7
|
+
### The GIGO Principle: Quality In, Quality Out
|
|
8
|
+
|
|
9
|
+
The axiom "Garbage In, Garbage Out" (GIGO) holds true in the world of AI. The quality of the output you receive from ChatGPT directly correlates with the quality of the prompts you provide. Inadequate prompts can lead to misleading or irrelevant answers, while well-crafted ones can produce insightful and accurate responses.
|
|
10
|
+
|
|
11
|
+
### Crafting Prompts that Spark Excellence
|
|
12
|
+
|
|
13
|
+
The skill of writing effective prompts is now so crucial that it has spawned a new discipline: prompt engineering. This involves meticulously designing prompts that guide ChatGPT's large language model (LLM) to generate the best possible answers.
|
|
14
|
+
|
|
15
|
+
### Conversational AI: Talk to ChatGPT Like a Person
|
|
16
|
+
|
|
17
|
+
Interacting with ChatGPT should mimic a conversation with a colleague. This approach helps in setting the stage, providing context, and maintaining the AI's focus on the topic.
|
|
18
|
+
|
|
19
|
+
### Context Is Key
|
|
20
|
+
|
|
21
|
+
Providing ChatGPT with clear context is vital. It narrows down the AI's focus to your specific subject, leading to more accurate and useful responses. Contextualized prompts require more details but offer more refined outputs.
|
|
22
|
+
|
|
23
|
+
### Assuming Identities and Professions
|
|
24
|
+
|
|
25
|
+
One of ChatGPT's fascinating features is its ability to adopt different personas or professional perspectives. This ability can be harnessed to gain diverse viewpoints on a topic.
|
|
26
|
+
|
|
27
|
+
### Maintaining Relevance and Accuracy
|
|
28
|
+
|
|
29
|
+
While ChatGPT is an advanced AI, it can sometimes veer off-topic or produce fabricated answers. To mitigate this, ask the AI to justify its responses and guide it gently back on track. Remember to prompt it for source citations where necessary.
|
|
30
|
+
|
|
31
|
+
## Advanced Prompt-Writing Techniques
|
|
32
|
+
|
|
33
|
+
### Fine-Tuning Your Prompts
|
|
34
|
+
|
|
35
|
+
Minor adjustments to your prompts can lead to significantly different responses from ChatGPT. Remember, the AI retains its awareness of previous conversations as long as the session is ongoing.
|
|
36
|
+
|
|
37
|
+
### Breaking Down Responses
|
|
38
|
+
|
|
39
|
+
Be mindful that responses over 500 words can sometimes lose coherence. Keep your prompts concise and to the point for the best results.
|
|
40
|
+
|
|
41
|
+
### Evolving Your Questions
|
|
42
|
+
|
|
43
|
+
If ChatGPT seems hesitant to answer a question, rephrasing it might yield better results. Utilize personas to elicit responses that might not be forthcoming otherwise.
|
|
44
|
+
|
|
45
|
+
### Seeking Justification and Sources
|
|
46
|
+
|
|
47
|
+
When looking for well-supported answers, instruct ChatGPT to justify its responses or provide sources. This practice ensures a higher degree of accuracy and reliability in the information provided.
|
|
48
|
+
|
|
49
|
+
### Embrace Experimentation
|
|
50
|
+
|
|
51
|
+
Experimentation is key in mastering prompt writing. The more you test different approaches, the better you'll understand how to steer ChatGPT towards desired outcomes.
|
|
52
|
+
|
|
53
|
+
### Conclusion: The Journey to AI Mastery
|
|
54
|
+
|
|
55
|
+
Mastering ChatGPT prompts is a journey of continuous learning and adaptation. By understanding the intricacies of prompt engineering and staying updated with the latest advancements, you can transform your interaction with AI from a mere task to an enriching experience. Embrace these tips, keep experimenting, and watch as ChatGPT becomes an invaluable asset in your digital toolkit.
|