← スキル一覧に戻る

analyze-equations
by mvillmow
Training framework written in Mojo
⭐ 11🍴 4📅 2026年1月24日
SKILL.md
name: analyze-equations description: "Parse and interpret mathematical equations from research papers. Use when extracting formulas for implementation." mcp_fallback: none category: analysis tier: 2 user-invocable: false
Analyze Equations
Extract and parse mathematical equations from research papers to understand computational requirements and implementation details.
When to Use
- Converting paper formulas to code implementations
- Understanding algorithm mathematical foundation
- Identifying performance-critical computations
- Planning SIMD optimization strategies
Quick Reference
# Extract LaTeX equations from PDF
pdftotext -layout paper.pdf - | grep -E '\$\$|\\begin\{equation\}' | head -20
Workflow
- Extract equations: Identify and extract LaTeX/mathematical notation from source documents
- Parse components: Break down complex equations into primitive operations
- Identify variables: Document input parameters, intermediate values, output
- Determine data types: Specify scalar vs vector operations, precision requirements
- Map to implementation: Connect mathematical notation to code operations (matrix multiply, activation, etc.)
Output Format
Mathematical analysis document:
- Extracted equations (with source references)
- Component breakdown (operands, operations)
- Variable definitions and constraints
- Data type requirements (float32, float64, int32)
- Mojo implementation mapping
References
- See CLAUDE.md > Language Preference for Mojo ML implementations
- See
extract-algorithmskill for algorithmic interpretation - See
/notes/review/mojo-ml-patterns.mdfor Mojo tensor operations
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です