Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

modernize-scientific-stack现代化科学堆栈

Agent Skill

modernize-scientific-stack 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

945

周安装

39

GitHub Stars

93

下载量

309
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:modernize-scientific-stack(现代化科学堆栈)
来源仓库:https://github.com/letta-ai/skills
仓库路径:skills/modernize-scientific-stack
安装命令:
npx skills add https://github.com/letta-ai/skills --skill modernize-scientific-stack
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill modernize-scientific-stack

简介

用于查找、检索和筛选相关信息,支持关键词和任务场景定位。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速获取候选结果。
  • 可结合来源仓库和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围和维护状态,避免触发联网或命令执行。
  • modernize-scientific-stack 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Modernize Scientific Computing Stack

This skill provides guidance for migrating legacy Python 2 scientific computing code to modern Python 3 with contemporary libraries and best practices.

When to Use This Skill

Apply this skill when:

  • Migrating Python 2 scientific scripts to Python 3
  • Updating legacy data processing code using outdated patterns
  • Modernizing scripts that use deprecated file handling, string encoding, or numerical libraries
  • Converting scripts from csv module to pandas for data analysis
  • Replacing os.path with pathlib for path manipulation

Approach

Phase 1: Complete Code Discovery

Before making any changes, ensure complete understanding of the existing codebase:

  1. Read all source files completely - If a file read is truncated, request the full content before proceeding. Never assume file contents based on partial reads.
  2. Identify all dependencies - Check for:

- Import statements (standard library and third-party) - Configuration files (JSON, YAML, INI) - Data files (CSV, Excel, pickle) - Environment requirements

  1. Map the data flow - Understand:

- Input file formats and encodings - Data transformations applied - Output format requirements - Any intermediate files or caches

Phase 2: Identify Migration Requirements

Common Python 2 to Python 3 migration patterns in scientific code:

Legacy PatternModern Replacement
print "text"print("text")
unicode() / str()str() with explicit encoding
open(file)open(file, encoding='utf-8')
os.path.join()pathlib.Path()
csv modulepandas.read_csv()
for key in dict.keys()for key in dict
dict.has_key(x)x in dict
Manual file iterationContext managers (with statements)
xrange()range()
Integer division /Explicit // or float division

Phase 3: Implementation Strategy

  1. Create the modernized script with these priorities:

- UTF-8 encoding for all file operations - pathlib.Path for all file path manipulations - pandas for CSV/data processing - Type hints where beneficial - Context managers for resource handling

  1. Handle configuration files - Check for file existence before reading: config_path = Path("config.json") if config_path.exists(): config = json.loads(config_path.read_text(encoding='utf-8'))
  2. Create requirements.txt - Include all dependencies with version constraints

Phase 4: Verification Protocol

Critical: Always verify file operations

After writing any file, read it back to confirm:

  • The complete content was written (not truncated)
  • The syntax is valid
  • All imports are present

Testing sequence:

  1. Syntax validation - Run Python syntax check: python -m py_compile script.py
  2. Import verification - Test all imports resolve: python -c "from script import *"
  3. Functional test - Run the script and compare output to expected results
  4. Output validation - Verify output format matches requirements exactly

Common Pitfalls to Avoid

  1. Truncated file content - Never proceed with partial file reads. If a response shows ... [truncated] or incomplete content, request the full file before continuing.
  2. Unverified writes - After using a write operation, always read the file back to confirm the complete content was written correctly.
  3. Encoding issues - Always specify encoding='utf-8' explicitly in file operations. Legacy scripts often have implicit ASCII assumptions.
  4. Path string concatenation - Replace all os.path.join() and string concatenation for paths with pathlib.Path operations.
  5. Missing edge case handling:

- Empty data files or datasets - Missing required files - Invalid data types in CSV columns - Stations/entities with no matching data

  1. Environment setup repetition - When setting up environments (venv, PATH), verify the setup persists rather than repeating in each command.

Verification Checklist

Before marking the task complete, confirm:

  • All source files were read completely (no truncation)
  • Written files were verified by reading back
  • All Python 2 patterns have been converted
  • File encodings are explicitly specified
  • pathlib is used for all path operations
  • pandas is used for data processing (where appropriate)
  • requirements.txt includes all dependencies
  • Script runs without errors
  • Output matches expected format exactly
  • Edge cases are handled (empty data, missing files)

Output Validation

When the task specifies an expected output format, verify the output matches exactly:

  1. Run the modernized script
  2. Capture the output
  3. Compare against expected format character-by-character if needed
  4. Pay attention to:

- Decimal precision in numerical output - Whitespace and formatting - Order of output items - Units and labels

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.25%
按下载量换算87

Antigravity

24.98%
按下载量换算77

windsurf

18.74%
按下载量换算58

Codex

14.64%
按下载量换算45

OpenCode

8.69%
按下载量换算27

Gemini CLI

3.57%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills