在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
$ git log --oneline --stat
stars:4,315
forks:390
updated:2026年3月21日 19:33
文件资源管理器
SKILL.md
| name | python-repl |
| description | Interactive Python REPL automation with common helpers and best practices |
Enhances Python REPL workflows with bundled utility functions for data analysis, debugging, and performance profiling.
This skill bundles Python REPL helpers, common imports, and execution patterns for efficient Python development in gptme.
This skill includes bundled utility functions for common Python tasks:
When working with data, automatically import common libraries and set up display options:
import numpy as np
import pandas as pd
pd.set_option('display.max_rows', 100)
Use bundled helpers for debugging:
from python_helpers import inspect_df, describe_object
inspect_df(df) # Quick dataframe overview
describe_object(obj) # Object introspection
Required packages are listed in requirements.txt:
# Helpers auto-import pandas, numpy
df = pd.read_csv('data.csv')
inspect_df(df) # Show overview
from python_helpers import time_function
@time_function
def slow_operation():
# Your code here
pass