بنقرة واحدة
python-repl
Interactive Python REPL automation with common helpers and best practices
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Interactive Python REPL automation with common helpers and best practices
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Interactive onboarding workflow that interviews users to understand their coding goals and generates PR-ready implementation plans. Use when starting a new development task to ensure clear requirements and structured execution.
Implement security best practices for Gamma integration. Use when securing API keys, implementing access controls, or auditing Gamma security configuration. Trigger with phrases like "gamma security", "gamma API key security", "gamma secure", "gamma credentials", "gamma access control".
Write effective technical documentation including READMEs, API docs, architecture decisions, and inline code documentation.
Build and manage CI/CD pipelines with Azure DevOps. Configure builds, releases, and automate software delivery workflows.
Develop, deploy, and manage Azure Functions for serverless computing. Supports HTTP triggers, timers, queues, and event-driven architectures.
Manage Azure resources effectively using CLI, Portal, Bicep, and ARM templates. Use for provisioning, organizing, and maintaining cloud infrastructure.
| 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