スキル一覧に戻る
raqkaaq

conda

by raqkaaq

A langGraph powered research agentic pipeline

0🍴 0📅 2026年1月16日
GitHubで見るManusで実行

SKILL.md


name: conda description: Instructions for correct conda usage in opencode

What I do

Correctly utilize conda environments to run python code

When to use me

When you are asked to run python code. You should ask the user which conda enviroment is the correct one to use, and then correctly use the commands listed below to accomplish the task.

When using conda commands in opencode, always prepend the sourcing of conda's profile script to ensure the shell has conda's functions loaded. Opencode runs bash commands in non-interactive shells, which do not automatically source ~/.bashrc or load conda initialization.

For any conda command, such as activation, installation, or environment management, use this format: source ~/miniconda3/etc/profile.d/conda.sh && conda

Examples:

  • To activate an environment: source ~/miniconda3/etc/profile.d/conda.sh && conda activate arxiv
  • To install a package: source ~/miniconda3/etc/profile.d/conda.sh && conda install numpy
  • To create an environment: source ~/miniconda3/etc/profile.d/conda.sh && conda create -n myenv python=3.9

This ensures conda works correctly despite the non-interactive shell limitation. For ease of ensuring consistency with the code, you should never try to install a package nor create an environment without explicit instructions. You can activate environments, but you should first clarify with the user that the environment is the correct one. You should assume that all necessary packages are installed in the conda environment that the user specifies. NEVER try to alter PYTHONPATH. The project should always be configured to correctly run things. If you have questions, ask the user.

スコア

総合スコア

45/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

0/5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です