Agent Skillsparcadei/Continuous-Claude-v3 › math-model-selector

math-model-selector

GitHub

通过专家启发式规则引导用户将问题映射到合适的数学框架,辅助选择建模方法。

.claude/skills/math/math-model-selector/SKILL.md parcadei/Continuous-Claude-v3

Trigger Scenarios

what math should I use which mathematical framework how do I model this

Install

npx skills add parcadei/Continuous-Claude-v3 --skill math-model-selector -g -y
More Options

Non-standard path

npx skills add https://github.com/parcadei/Continuous-Claude-v3/tree/main/.claude/skills/math/math-model-selector -g -y

Use without installing

npx skills use parcadei/Continuous-Claude-v3@math-model-selector

指定 Agent (Claude Code)

npx skills add parcadei/Continuous-Claude-v3 --skill math-model-selector -a claude-code -g -y

安装 repo 全部 skill

npx skills add parcadei/Continuous-Claude-v3 --all -g -y

预览 repo 内 skill

npx skills add parcadei/Continuous-Claude-v3 --list

SKILL.md

Frontmatter
{
    "name": "math-model-selector",
    "description": "Routes problems to appropriate mathematical frameworks using expert heuristics"
}

Math Model Selector

When to Use

Trigger on phrases like:

  • "what math should I use"
  • "which mathematical framework"
  • "how do I model this"
  • "what kind of problem is this"
  • "formalize this problem"

Use when user has a problem but doesn't know which mathematical domain applies.

Process

Guide user through decision tree using Polya-style questions:

1. Identify the quantity

Ask: "What quantity or phenomenon are you trying to understand?"

  • Physics problem -> conservation laws, differential equations
  • Economics -> equilibrium, optimization
  • Data patterns -> statistics, regression

2. Characterize change

Ask: "What changes, and how does it change?"

  • Discrete steps -> difference equations, recurrences
  • Continuous rate -> ODEs
  • Rate of rate matters -> 2nd order ODEs
  • Spatial variation -> PDEs

3. Check for uncertainty

Ask: "Is there randomness or uncertainty involved?"

  • Deterministic -> standard analysis
  • Epistemic uncertainty -> Bayesian methods
  • Random process -> probability theory, stochastic processes

4. Optimization check

Ask: "Are you optimizing something?"

  • Convex objective -> linear/quadratic programming
  • Non-convex -> gradient descent, evolutionary methods
  • Discrete choices -> combinatorics, integer programming

5. Answer precision

Ask: "What level of answer do you need?"

  • Rough estimate -> dimensional analysis
  • Qualitative behavior -> phase portraits, stability
  • Numerical answer -> simulation
  • Exact closed form -> analytical methods

Key Questions to Ask

  1. What changes? (discrete vs continuous)
  2. What causes the change? (rate dependencies)
  3. What's random? (uncertainty type)
  4. What's being optimized? (objective function)
  5. How precise? (qualitative vs quantitative)

Output Format

Framework Recommendation:
- Primary: [framework name]
- Why: [one-sentence justification]

Starting Point:
- Key equations: [relevant formulas]
- Initial approach: [first step]

Tools to Use:
- [specific script or computation tool]

Related Skills:
- [domain skill to activate next]

Example Interaction

User: I want to model how a rumor spreads through a population

Claude: Let me help you find the right framework.

Q1: What quantity are we tracking?
> Number of people who heard the rumor over time.

Q2: What causes it to change?
> Spread rate depends on who knows and who doesn't.

Q3: Is there randomness?
> Assume deterministic (average behavior) for now.

Q4: Optimizing anything?
> No, just understanding dynamics.

Q5: What precision?
> Qualitative behavior, maybe predict peak rate.

Framework Recommendation:
- Primary: First-order ODE (logistic growth)
- Why: Rate depends on current state nonlinearly

Starting Point:
- dN/dt = r * N * (1 - N/K)
- N = heard count, K = population, r = spread rate

Tools:
- sympy_compute.py solve (equilibrium)
- Phase line for qualitative behavior

Related Skills:
- math/math-intuition-builder (understand the model)
- odes-pdes/first-order-odes (solve it)

Co-activates

After framework selection, suggest:

  • math-intuition-builder - to understand the framework
  • Relevant domain skill - for actual computation
  • math-mode - for symbolic verification

Version History

  • d07ff4b Current 2026-08-20 12:48

Same Skill Collection

.claude/plugins/braintrust-tracing/skills/trace-claude-code/SKILL.md
.claude/skills/agentica-claude-proxy/SKILL.md
.claude/skills/agentica-infrastructure/SKILL.md
.claude/skills/agentica-prompts/SKILL.md
.claude/skills/agentica-sdk/SKILL.md
.claude/skills/agentica-server/SKILL.md
.claude/skills/archive/leann-search/SKILL.md
.claude/skills/ast-grep-find/SKILL.md
.claude/skills/braintrust-tracing/SKILL.md
.claude/skills/cli-reference/SKILL.md
.claude/skills/commit/SKILL.md
.claude/skills/compound-learnings/SKILL.md
.claude/skills/continuity_ledger/SKILL.md
.claude/skills/create_handoff/SKILL.md
.claude/skills/dead-code/SKILL.md
.claude/skills/debug-hooks/SKILL.md
.claude/skills/debug/SKILL.md
.claude/skills/describe_pr/SKILL.md
.claude/skills/discovery-interview/SKILL.md
.claude/skills/explore/SKILL.md
.claude/skills/firecrawl-scrape/SKILL.md
.claude/skills/fix/SKILL.md
.claude/skills/github-search/SKILL.md
.claude/skills/help/SKILL.md
.claude/skills/hook-developer/SKILL.md
.claude/skills/implement_plan_micro/SKILL.md
.claude/skills/implement_plan/SKILL.md
.claude/skills/implement_task/SKILL.md
.claude/skills/loogle-search/SKILL.md
.claude/skills/math-help/SKILL.md
.claude/skills/math-router/SKILL.md
.claude/skills/math-unified/SKILL.md
.claude/skills/math/abstract-algebra/fields/SKILL.md
.claude/skills/math/abstract-algebra/groups/SKILL.md
.claude/skills/math/abstract-algebra/rings/SKILL.md
.claude/skills/math/category-theory/categories-functors/SKILL.md
.claude/skills/math/category-theory/limits-colimits/SKILL.md
.claude/skills/math/category-theory/natural-transformations/SKILL.md
.claude/skills/math/complex-analysis/analytic-functions/SKILL.md
.claude/skills/math/complex-analysis/contour-integrals/SKILL.md
.claude/skills/math/complex-analysis/residues/SKILL.md
.claude/skills/math/functional-analysis/banach-spaces/SKILL.md
.claude/skills/math/functional-analysis/hilbert-spaces/SKILL.md
.claude/skills/math/functional-analysis/operator-theory/SKILL.md
.claude/skills/math/graph-number-theory/graph-algorithms/SKILL.md
.claude/skills/math/graph-number-theory/modular-arithmetic/SKILL.md
.claude/skills/math/graph-number-theory/prime-numbers/SKILL.md
.claude/skills/math/information-theory/channel-capacity/SKILL.md
.claude/skills/math/information-theory/entropy/SKILL.md
.claude/skills/math/information-theory/source-coding/SKILL.md

Metadata

Files
0
Version
d07ff4b
Hash
e5e2ef15
Indexed
2026-08-20 12:48

Главная - Вики-сайт
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-21 03:28
浙ICP备14020137号-1 $Гость$