一键导入
frontend-ui-ux-engineer
Reference material for frontend, UI, and UX engineering skill conversion, including component structure, scripts, and implementation notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Reference material for frontend, UI, and UX engineering skill conversion, including component structure, scripts, and implementation notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Sandbox MCP Server 是一个隔离的代码执行环境,提供完整的文件系统操作、命令执行、 代码分析、测试运行和远程桌面能力。当你需要执行代码、操作文件、运行测试、 分析代码结构、或需要图形界面操作时使用此技能。支持 Python、Node.js、Java 等多语言环境。
Perform comprehensive code review with best practices analysis. Use when user asks for code review, code quality check, or wants to analyze their code for issues.
Extract durable memory items from a single user and assistant turn.
Extract durable memory items before conversation compaction.
Use GitHub repositories, issues, pull requests, commits, search, and files through the configured GitHub plugin.
Evolve prompts, regex, SQL, or code with an LLM loop.
| name | frontend-ui-ux-engineer |
| description | Reference material for frontend, UI, and UX engineering skill conversion, including component structure, scripts, and implementation notes. |
| risk | unknown |
| source | community |
This project provides comprehensive scripts and references for 11 ML/AI-related skills, designed for production use with best practices, error handling, and configuration management.
claude-skills-conversion/
├── ai-engineer-skill/ # AI service integration, RAG, prompts
├── llm-architect-skill/ # LLM design, fine-tuning, serving
├── ml-engineer-skill/ # ML pipelines, scikit-learn
├── mlops-engineer-skill/ # MLflow, deployment, monitoring
├── machine-learning-engineer-skill/ # Jupyter, feature engineering
├── data-engineer-skill/ # ETL pipelines, data lakes
├── data-scientist-skill/ # Statistical analysis, visualization
├── data-analyst-skill/ # Data analysis, dashboards
├── prompt-engineer-skill/ # Prompt optimization, A/B testing
├── postgres-pro-skill/ # PostgreSQL administration
├── devops-incident-responder-skill/ # Incident response automation
└── incident-responder-skill/ # Alert handling and triage
Scripts:
integrate_openai.py - OpenAI API integration with retry logicintegrate_anthropic.py - Claude API integrationsetup_rag.py - RAG system with vector databasemanage_prompts.py - Prompt template managementmonitor_ai_service.py - AI service health monitoringoptimize_tokens.py - Token usage and cost trackingReferences:
Use Cases:
Scripts:
benchmark_models.py - Model comparison and selectionfinetune_model.py - Fine-tuning with LoRA/PEFTsetup_rag_pipeline.py - End-to-end RAG pipelineserve_model.py - Model serving infrastructureengineer_prompts.py - Prompt optimizationevaluate_model.py - Model evaluation frameworkReferences:
Use Cases:
Scripts:
train_sklearn.py - Scikit-learn training pipelinetune_hyperparameters.py - Optuna hyperparameter optimizationReferences:
Use Cases:
Scripts:
track_mlflow.py - MLflow experiment tracking and model registryUse Cases:
Scripts:
backup_pg.py - PostgreSQL backup and restoreUse Cases:
Scripts:
run_etl_pipeline.py - ETL automation with schedulingUse Cases:
Scripts:
handle_alerts.py - Incident classification and triageUse Cases:
# Python dependencies
pip install scikit-learn pandas numpy
pip install transformers peft datasets
pip install chromadb sentence-transformers
pip install mlflow optuna
pip install openai anthropic
pip install fastapi uvicorn
# Optional: GPU support
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
# Set API keys
export OPENAI_API_KEY="your-openai-key"
export ANTHROPIC_API_KEY="your-anthropic-key"
# PostgreSQL
export PGPASSWORD="your-db-password"
from ai_engineer_skill.scripts.integrate_openai import OpenAIIntegration, OpenAIConfig
config = OpenAIConfig(api_key=os.getenv("OPENAI_API_KEY"))
integration = OpenAIIntegration(config)
messages = [{"role": "user", "content": "Hello!"}]
response = integration.chat_completion(messages)
print(response['content'])
from llm_architect_skill.scripts.benchmark_models import ModelBenchmarker
benchmarker = ModelBenchmarker(models)
benchmarker.benchmark_task("summarization", task_func, test_data)
best = benchmarker.get_best_model_for_task("summarization")
from ml_engineer_skill.scripts.train_sklearn import MLModelTrainer, ModelConfig
trainer = MLModelTrainer(ModelConfig())
X_train, X_test = trainer.preprocess_features(X_train, X_test)
trainer.train_model(X_train, y_train)
metrics = trainer.evaluate_model(X_test, y_test)
from mlops_engineer_skill.scripts.track_mlflow import MLflowTracker
tracker = MLflowTracker(experiment_name="my_experiment")
run_id = tracker.start_run("run_1")
tracker.log_params({"lr": 0.01, "epochs": 10})
tracker.log_metrics({"accuracy": 0.95})
tracker.log_model(model, "my_model")
tracker.end_run()
All scripts include:
Each skill follows consistent patterns:
scripts/ directory for executable codereferences/ directory for documentationmain() functionProduction-ready educational code. Adapt to your needs.
The following skills have placeholder structures ready for implementation:
Follow the existing patterns to implement these skills.