Token导航 LogoToken导航TokenDH.com
开发规范只读github未标认证来源可访问clear审计通过

scipy-best-practicesscipy 最佳实践

Agent Skill

scipy-best-practices 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,110

周安装

365

GitHub Stars

87

下载量

2,949
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:scipy-best-practices(scipy 最佳实践)
来源仓库:https://github.com/mindrally/skills
仓库路径:skills/scipy-best-practices
安装命令:
npx skills add https://github.com/mindrally/skills --skill scipy-best-practices
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mindrally/skills --skill scipy-best-practices

简介

scipy-best-practices 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合让 Agent 持续沉淀问题、修正和最佳实践时使用。

  • 适用于科学计算、算法开发、实验复现等需要知识积累的场景。
  • 通过安装命令 npx skills add https://github.com/mindrally/skills --skill scipy-best-practices 添加,需确认权限范围和维护状态。
  • 使用前应核实是否会触发联网、命令执行或文件读写操作,避免越权访问。
  • 建议结合原始 README 进一步核验具体用法和功能边界。

SKILL.md

SciPy Best Practices

Expert guidelines for SciPy development, focusing on scientific computing, optimization, signal processing, and statistical analysis.

Code Style and Structure

  • Write concise, technical Python code with accurate SciPy examples
  • Prioritize numerical accuracy and computational efficiency
  • Use functional programming patterns for mathematical operations
  • Prefer vectorized operations over explicit loops
  • Use descriptive variable names reflecting scientific context
  • Follow PEP 8 style guidelines

scipy.optimize - Optimization

  • Use scipy.optimize.minimize() for general-purpose optimization
  • Choose appropriate method based on problem characteristics:

- 'BFGS' for smooth, unconstrained problems - 'L-BFGS-B' for bounded problems - 'SLSQP' for constrained optimization - 'Nelder-Mead' for non-differentiable functions

  • Provide gradients when available for faster convergence
  • Use scipy.optimize.curve_fit() for nonlinear least squares fitting
  • Use scipy.optimize.root() for finding roots of equations

scipy.linalg - Linear Algebra

  • Prefer scipy.linalg over numpy.linalg for additional functionality
  • Use scipy.linalg.solve() instead of computing matrix inverse
  • Leverage specialized solvers for structured matrices (banded, triangular)
  • Use scipy.linalg.lu_factor() and lu_solve() for multiple right-hand sides
  • Use sparse matrix solvers from scipy.sparse.linalg for large sparse systems

scipy.stats - Statistics

  • Use distribution objects for probability calculations
  • Leverage scipy.stats.describe() for summary statistics
  • Use hypothesis testing functions: ttest_ind(), chi2_contingency(), mannwhitneyu()
  • Generate random samples with .rvs() method on distributions
  • Use .fit() for parameter estimation from data

scipy.interpolate - Interpolation

  • Use scipy.interpolate.interp1d() for 1D interpolation
  • Use scipy.interpolate.griddata() for scattered data interpolation
  • Choose appropriate interpolation method: 'linear', 'cubic', 'nearest'
  • Use spline functions for smooth interpolation: UnivariateSpline, BSpline
  • Consider RegularGridInterpolator for regular grid data

scipy.integrate - Integration

  • Use scipy.integrate.quad() for single integrals
  • Use scipy.integrate.dblquad(), tplquad() for multiple integrals
  • Use scipy.integrate.solve_ivp() for ordinary differential equations
  • Choose appropriate ODE method: 'RK45', 'BDF', 'LSODA'
  • Provide Jacobian for stiff systems to improve performance

scipy.signal - Signal Processing

  • Use scipy.signal.butter(), cheby1(), ellip() for filter design
  • Apply filters with scipy.signal.filtfilt() for zero-phase filtering
  • Use scipy.signal.welch() for power spectral density estimation
  • Use scipy.signal.find_peaks() for peak detection
  • Leverage scipy.signal.convolve() and correlate() for convolution

scipy.sparse - Sparse Matrices

  • Use appropriate sparse format for your use case:

- csr_matrix for efficient row slicing and matrix-vector products - csc_matrix for efficient column slicing - coo_matrix for constructing sparse matrices - lil_matrix for incremental construction

  • Convert to optimal format before operations
  • Use scipy.sparse.linalg solvers for sparse linear systems

Performance Optimization

  • Use appropriate data types (float64 for precision, float32 for memory)
  • Leverage BLAS/LAPACK through SciPy for optimized linear algebra
  • Pre-allocate arrays when possible
  • Use in-place operations when available

Error Handling and Validation

  • Check convergence status of optimization routines
  • Validate numerical results for reasonableness
  • Handle ill-conditioned problems gracefully
  • Use appropriate tolerances for convergence criteria

Testing Scientific Code

  • Test against known analytical solutions
  • Use np.testing.assert_allclose() for numerical comparisons
  • Test edge cases and boundary conditions
  • Verify conservation laws and invariants

Key Conventions

  • Import specific submodules: from scipy import optimize, stats, linalg
  • Use snake_case for variables and functions
  • Document algorithm choices and parameters
  • Include convergence diagnostics in output

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

26.34%
按下载量换算777

OpenCode

22.83%
按下载量换算673

Gemini CLI

16.99%
按下载量换算501

Antigravity

12.66%
按下载量换算373

Codex

7.67%
按下载量换算226

Cursor

2.94%
按下载量换算87

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills