@pourkit/cli 0.0.0-next-20260708233839 → 0.0.0-next-20260709181702
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.js
CHANGED
|
@@ -13489,6 +13489,8 @@ Use \`fd\` for file discovery, \`rg\` for text search, and direct file reads for
|
|
|
13489
13489
|
|
|
13490
13490
|
Use the \`explore-codebase\` skill when the user asks to explore or map a codebase, including an external package or repository, find feature/module ownership, identify entry points/tests/docs, or produce a Codebase Navigation Atlas.
|
|
13491
13491
|
|
|
13492
|
+
Also check the \`explore-codebase\` skill for research-oriented codebase queries, such as requests to research, investigate, crawl, survey, or understand a domain before changing code.
|
|
13493
|
+
|
|
13492
13494
|
For multi-step exploration, prefer the dedicated subagents in \`.opencode/agents\`:
|
|
13493
13495
|
|
|
13494
13496
|
- Use \`codebase-locator\` when you need to find relevant files, directories, or entry points.
|
|
@@ -19362,11 +19364,11 @@ function createCliProgram(version) {
|
|
|
19362
19364
|
return program;
|
|
19363
19365
|
}
|
|
19364
19366
|
async function resolveCliVersion() {
|
|
19365
|
-
if (isPackageVersion("0.0.0-next-
|
|
19366
|
-
return "0.0.0-next-
|
|
19367
|
+
if (isPackageVersion("0.0.0-next-20260709181702")) {
|
|
19368
|
+
return "0.0.0-next-20260709181702";
|
|
19367
19369
|
}
|
|
19368
|
-
if (isReleaseVersion("0.0.0-next-
|
|
19369
|
-
return "0.0.0-next-
|
|
19370
|
+
if (isReleaseVersion("0.0.0-next-20260709181702")) {
|
|
19371
|
+
return "0.0.0-next-20260709181702";
|
|
19370
19372
|
}
|
|
19371
19373
|
try {
|
|
19372
19374
|
const root = repoRoot();
|