一键导入
paper-analyst
论文与长文深度分析助手,运用SCQA、5W2H、批判性思维、逆向思维、心智模型、第一性原理、系统思维、六顶帽子10+思维框架,支持URL/PDF/DOCX/TXT输入,四级深度(15~120min+),输出问题解决/学习笔记/写作参考/决策分析五种模式,将复杂内容转化为可落地洞见。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
论文与长文深度分析助手,运用SCQA、5W2H、批判性思维、逆向思维、心智模型、第一性原理、系统思维、六顶帽子10+思维框架,支持URL/PDF/DOCX/TXT输入,四级深度(15~120min+),输出问题解决/学习笔记/写作参考/决策分析五种模式,将复杂内容转化为可落地洞见。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Extracts text from PDF files and generates 3 thought-provoking questions that explore the study in depth. Supports direct PDF file processing and integration with OpenClaw.
Searches academic papers using scholar.club API with query keywords. Returns search results in either structured format or raw API response. Use --raw parameter to get original search results without any formatting. Invoke when user asks to search academic papers or query research topics.
Extracts text from PDF files and generates structured paper summaries with Key Ideas, Main Contributions, and Experimental Results. Supports direct PDF file processing and integration with OpenClaw.
学术科研助手,基于 ScholarClub 平台 及 Semantic Scholar 数据库,支持关键词/作者/期刊/时间多维度检索,自动构建关键词矩阵、进行论文质量评分(引用数/期刊级别/作者影响力),输出结构化文献报告。适用于文献综述、领域调研、作者研究脉络追踪。
| name | paper-analyst |
| description | 论文与长文深度分析助手,运用SCQA、5W2H、批判性思维、逆向思维、心智模型、第一性原理、系统思维、六顶帽子10+思维框架,支持URL/PDF/DOCX/TXT输入,四级深度(15~120min+),输出问题解决/学习笔记/写作参考/决策分析五种模式,将复杂内容转化为可落地洞见。 |
Transforms surface-level reading into deep learning through systematic analysis using 10+ proven thinking frameworks. Guides users from understanding to application through structured workflows.
Before any analysis, determine the content source and extract the text.
When the user provides a paper source, detect its type and extract content accordingly:
| Input type | Detection rule | Action |
|---|---|---|
| URL (http/https) | Starts with http:// or https:// | Use web_fetch to extract content |
.docx file | Path ends with .docx | Use run_shell_command to run a Python one-liner: python -c "import docx; print('\n'.join([p.text for p in docx.Document(r'<path>').paragraphs]))" |
.pdf file | Path ends with .pdf | Use run_shell_command to run: python -c "import pdfplumber; f=pdfplumber.open(r'<path>'); print('\n'.join([p.extract_text() or '' for p in f.pages]))" |
.txt / .md | Path ends with .txt or .md | Use read_file tool directly |
| Raw text / paste | No path or URL | Use content as-is |
If Python extraction fails (missing library like python-docx or pdfplumber), first try using run_shell_command to install them silently (pip install python-docx pdfplumber docx2txt) and retry.
If that fails, try:
.docx: run_shell_command → python -c "from docx2txt import process; print(process(r'<path>'))".pdf: run_shell_command → pdftotext <path> - (system tool)Do not ask the user to extract the text manually. Handle it silently.
Once text is successfully extracted, proceed to Step 1.
User provides content
↓
Ask: Purpose + Depth Level + Preferred Frameworks
↓
┌─────────────────┬─────────────────┬─────────────────┬─────────────────┐
│ Level 1 │ Level 2 │ Level 3 │ Level 4 │
│ Quick │ Standard │ Deep │ Research │
│ 15min │ 30min │ 60min │ 120min+ │
├─────────────────┼─────────────────┼─────────────────┼─────────────────┤
│ • SCQA │ Level 1 + │ Level 2 + │ Level 3 + │
│ • 5W2H │ • Critical │ • Mental Models │ • Cross-source │
│ • Structure │ • Inversion │ • First Princ. │ • Web search │
│ │ │ • Systems │ • Synthesis │
│ │ │ • Six Hats │ │
└─────────────────┴─────────────────┴─────────────────┴─────────────────┘
Ask User (conversationally):
Default if no response: Level 2 (Standard mode) with auto-selected frameworks
Based on content type, auto-suggest:
📄 Strategy/Business articles → SCQA + Mental Models + Inversion
📊 Research papers → 5W2H + Critical Thinking + Systems Thinking
💡 How-to guides → SCQA + 5W2H + First Principles
🎯 Opinion pieces → Critical Thinking + Inversion + Six Hats
📈 Case studies → SCQA + Mental Models + Systems Thinking
Always start here regardless of depth level.
📄 Content Type: [Article/Paper/Report/Guide]
⏱️ Estimated reading time: [X minutes]
🎯 Core Thesis: [One sentence]
Structure Overview:
├─ Main Argument 1
│ ├─ Supporting point 1.1
│ └─ Supporting point 1.2
├─ Main Argument 2
└─ Main Argument 3
Key Concepts: [3-5 terms with brief definitions]
Load references/scqa_framework.md and apply:
## SCQA Structure
**S (Situation)**: [Background/context the article establishes]
**C (Complication)**: [Problem/challenge identified]
**Q (Question)**: [Core question being addressed]
**A (Answer)**: [Main solution/conclusion]
📊 Structure Quality:
- Clarity: [★★★★☆]
- Logic flow: [★★★★★]
- Completeness: [★★★☆☆]
Quick scan using references/5w2h_analysis.md:
## Information Completeness
✅ Well-covered: [What, Why, How]
⚠️ Partially covered: [Who, When]
❌ Missing: [Where, How much]
🔴 Critical gaps: [List 1-2 most important missing pieces]
Select based on depth level and user preference:
Core: Structure + SCQA + 5W2H Quick Check
Output:
Add: Critical Thinking + Inversion
Load and apply:
references/critical_thinking.md:
references/inversion_thinking.md:
## Critical Analysis
### Argument Strength: [X/10]
Strengths:
- [Point 1]
Weaknesses:
- [Point 1]
Logical fallacies detected:
- [If any]
## Inversion Analysis
🚨 How this could fail:
1. [Failure mode 1] → Mitigation: [...]
2. [Failure mode 2] → Mitigation: [...]
Missing risk factors:
- [Risk 1]
Add: Mental Models + First Principles + Systems + Six Hats
Load and apply:
references/mental_models.md:
references/first_principles.md:
references/systems_thinking.md:
references/six_hats.md:
## Multi-Model Analysis
### Mental Models Applied:
1. **[Model 1 from X discipline]**
Insight: [...]
2. **[Model 2 from Y discipline]**
Insight: [...]
3. **[Model 3 from Z discipline]**
Insight: [...]
Cross-model pattern: [Key insight from combining models]
### First Principles Breakdown:
Core assumptions:
1. [Assumption 1] → Valid: [Yes/No/Conditional]
2. [Assumption 2] → Valid: [Yes/No/Conditional]
Fundamental truth: [What remains after stripping assumptions]
### Systems Map:
[Variable A] ──reinforces──> [Variable B] ↑ | | | balances reinforces | | └─────────<────────────────┘
Leverage point: [Where small change = big impact]
### Six Hats Perspective:
🤍 Facts: [Objective data]
❤️ Feelings: [Intuitive response]
🖤 Cautions: [Risks and downsides]
💛 Benefits: [Positive aspects]
💚 Ideas: [Creative alternatives]
💙 Process: [Meta-thinking]
Add: Cross-source comparison via web_search
Use web_search to find 2-3 related sources, then:
references/comparison_matrix.md## Multi-Source Analysis
### Source 1: [This article]
S-C-Q-A: [Summary]
Key claim: [...]
### Source 2: [Found article]
S-C-Q-A: [Summary]
Key claim: [...]
### Source 3: [Found article]
S-C-Q-A: [Summary]
Key claim: [...]
## Synthesis
**Consensus**: [What all agree on]
**Divergence**: [Where they differ]
**Unique value**: [What each contributes]
**Integrated view**: [Your synthesis]
Generate based on user goal:
## Applicable Solutions
[Extract 2-3 methods from content]
## Application Plan
Problem: [User's specific issue]
Relevant insights: [From analysis]
Action steps:
1. [Concrete action with timeline]
2. [Concrete action with timeline]
3. [Concrete action with timeline]
Success metrics: [How to measure]
## Risk Mitigation (from Inversion)
Potential failure points:
- [Point 1] → Prevent by: [...]
- [Point 2] → Prevent by: [...]
## Learning Notes
Core concepts (explained simply):
1. **[Concept 1]**: [Definition + Example]
2. **[Concept 2]**: [Definition + Example]
Mental models gained:
- [Model 1]: [How it works]
Connections to prior knowledge:
- [Link to something user already knows]
## Deeper Understanding (First Principles)
Fundamental question: [...]
Core principle: [...]
## Verification Questions
1. [Question to test understanding]
2. [Question to test application]
3. [Question to test evaluation]
## Key Arguments & Evidence
[Structured extraction with page/paragraph numbers]
## Quotable Insights
"[Quote 1]" — Context: [...]
"[Quote 2]" — Context: [...]
## Critical Analysis Notes
Strengths: [For citing]
Limitations: [For balanced discussion]
## Alternative Perspectives (from Mental Models)
[What other disciplines would say about this]
## Gaps & Counterfactuals
What the article doesn't address:
- [Gap 1]
- [Gap 2]
## Decision Framework
Options presented: [A / B / C]
Multi-model evaluation:
- Economic lens: [...]
- Risk lens (Inversion): [...]
- Systems lens: [...]
## Six Hats Decision Analysis
🤍 Facts: [Objective comparison]
🖤 Risks: [What could go wrong]
💛 Benefits: [Upside potential]
💚 Alternatives: [Other options not considered]
💙 Recommendation: [Synthesized advice]
## Scenario Analysis (from Inversion)
Best case: [...]
Worst case: [...]
Most likely: [...]
Always end with:
## 🎯 Immediate Takeaways (Top 3)
1. **[Insight 1]**
Why it matters: [Personal relevance]
One action: [Specific, time-bound]
2. **[Insight 2]**
Why it matters: [Personal relevance]
One action: [Specific, time-bound]
3. **[Insight 3]**
Why it matters: [Personal relevance]
One action: [Specific, time-bound]
## 💡 Quick Win
[One thing to try in next 24 hours - make it TINY and SPECIFIC]
## 🔗 Next Steps
**To deepen understanding:**
[ ] Further reading: [If relevant]
[ ] Apply framework X to topic Y
[ ] Discuss with: [Who could add perspective]
**To apply:**
[ ] Experiment: [Test in real context]
[ ] Teach: [Explain to someone else]
[ ] Combine: [Mix with another idea]
## 🧭 Thinking Models Used
[Checkboxes showing which frameworks were applied]
✅ SCQA ✅ 5W2H ✅ Critical Thinking ✅ Inversion
□ Mental Models □ First Principles □ Systems □ Six Hats
Every analysis must:
Avoid:
Progressive questioning:
Adapt to signals:
Framework suggestions during conversation:
references/scqa_framework.md - Structure thinking (S-C-Q-A)references/5w2h_analysis.md - Completeness check (7 questions)references/critical_thinking.md - Argument analysisreferences/inversion_thinking.md - Risk and failure mode analysisreferences/mental_models.md - Multi-discipline model libraryreferences/first_principles.md - Essence extraction methodreferences/systems_thinking.md - Relationship mappingreferences/six_hats.md - Multi-perspective protocolreferences/output_templates.md - Note format examplesreferences/comparison_matrix.md - Cross-article analysisUser can request specific combinations:
Start with Level 1, then ask:
Business/Strategy: SCQA + Mental Models (economics) + Inversion Technical/Research: 5W2H + First Principles + Critical Thinking Personal Development: Six Hats + Inversion + Systems Decision-Making: Mental Models + Inversion + SCQA Creative: Six Hats + First Principles + Mental Models
Remember: The goal is insight, not framework completion. Use frameworks as tools to reveal understanding, not as checklists to complete. Quality of thinking > quantity of frameworks applied.