Skip to main content

feature-exploration

Explore unfamiliar APIs, libraries, or implementation behavior with minimal reproducible examples and documented findings. Use when implementation details are unclear and can be resolved by reading docs, inspecting code, and running focused experiments.

설치로 이동

소스 정보

저장소
pymc-labs/CausalPy
최근 소스 활동
2026년 6월 8일 13:06
감지된 SKILL.md 언어
영어
스타
1,190
포크
115

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
feature-exploration
description
Explore unfamiliar APIs, libraries, or implementation behavior with minimal reproducible examples and documented findings. Use when implementation details are unclear and can be resolved by reading docs, inspecting code, and running focused experiments.
# Feature Exploration Use this developer skill when a task depends on API behavior that is unclear from memory or partially documented. The goal is to resolve uncertainty before changing production code. ## Workflow 1. State the uncertainty: name the API, behavior, or integration detail that needs proof. 2. Read the closest authoritative docs or source code before experimenting. 3. Build the smallest reproducible example that answers the question. 4. Run it in the project environment when it imports project code or dependencies. 5. Iterate only until the behavior is understood. 6. Record the finding in the final answer or in the durable project docs if it affects future work. 7. Apply the production change using the confirmed behavior. ## Guardrails - Do not create throwaway files in tracked locations. If a temporary note is needed, use `.scratch/`. - Do not leave exploratory scripts behind unless they become real tests or documented examples. - Prefer adding a proper test under `causalpy/tests/` when the discovered behavior is important to preserve. - Keep experiments narrow; avoid broad refactors while investigating. - Follow the repository environment rules in `AGENTS.md` for commands that import CausalPy, PyMC, PyTensor, matplotlib, or repo tooling. ## Output When using this skill, report: - The uncertainty investigated. - The evidence gathered. - The conclusion. - Any production change or test that now relies on that conclusion.
GitHub에서 보기