source-context
Use when working with Effect code. Resolve version-matched dependency source with opensrc before relying on memory, docs summaries, or generated examples.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when working with Effect code. Resolve version-matched dependency source with opensrc before relying on memory, docs summaries, or generated examples.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Validate and triage pull-request review findings before addressing selected items.
A relentless interview to sharpen a plan or design.
Grill the user relentlessly to sharpen a plan or design while maintaining ADRs and domain glossary documentation. Use when the user asks to "grill with docs" or wants decisions documented during a design interview.
Compact the current conversation into a handoff document for another agent to pick up.
Implement a piece of work based on a spec or set of tickets.
Scan a codebase for deepening opportunities, present them as a visual HTML report, then grill through whichever one you pick.
| name | source-context |
| description | Use when working with Effect code. Resolve version-matched dependency source with opensrc before relying on memory, docs summaries, or generated examples. |
Use version-matched dependency source as the authority for Effect v4 beta and AI SDK behavior.
Training data and public examples may be stale. Before changing, debugging, or explaining code that depends on these packages, inspect the installed-version source, tests, and bundled docs where available.
For anything beyond a quick one-file lookup, prefer running this work in a dedicated subagent.
Use a dedicated subagent by default when you need to:
Have the subagent:
opensrc path ...Prompt the subagent with the full target and question, including any version or cwd constraints.
effectIdentify the workspace package that owns the code being changed.
Use the nearest package.json that declares the dependency.
Resolve source paths with opensrc from that package directory:
opensrc path --cwd <workspace-package-dir> effect @effect/platform-node ai @ai-sdk/devtools
Do not hardcode versions or cache paths in this skill.
If only one dependency is relevant, resolve only that package:
opensrc path --cwd <workspace-package-dir> effect
Search and inspect the resolved source with the agent's available code search and file-reading tools. Prefer source, tests, examples, and bundled docs over memory.
When making a recommendation or code change, ground it in what was found. Reference the dependency file or test that supports the behavior when useful.
Resolve all covered packages for code owned by apps/cli:
opensrc path --cwd apps/web effect @effect
Resolve and search one package:
effect_src="$(opensrc path --cwd apps/cli effect)"
# Search for the relevant symbol or behavior inside "$effect_src".
Fetch a specific version only when package-local lockfile resolution is unavailable or intentionally bypassed:
opensrc path effect@4.0.0-beta.67
opensrc path --cwd from the repo root unless the root package declares the dependency. In a monorepo, the root may resolve the wrong version.opensrc fetches on cache miss and network access is blocked, request approval rather than guessing.ai-sdk skill. This skill provides source verification; the ai-sdk skill provides API-specific workflow guidance.Use it when you need to:
Do not fetch source for: