@pourkit/cli 0.0.0-next-20260707210730 → 0.0.0-next-20260708233839

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
@@ -13487,6 +13487,8 @@ function buildManagedAgentInstructions(options) {
13487
13487
 
13488
13488
  Use \`fd\` for file discovery, \`rg\` for text search, and direct file reads for focused context.
13489
13489
 
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
+
13490
13492
  For multi-step exploration, prefer the dedicated subagents in \`.opencode/agents\`:
13491
13493
 
13492
13494
  - Use \`codebase-locator\` when you need to find relevant files, directories, or entry points.
@@ -13497,7 +13499,7 @@ For multi-step exploration, prefer the dedicated subagents in \`.opencode/agents
13497
13499
 
13498
13500
  Use direct \`fd\`/\`rg\`/reads for focused checks; use subagents when the search would otherwise require several discovery/read steps.
13499
13501
 
13500
- Use \`opensrc path <package-or-repo>\` whenever implementation requires reading external source code, not only package dependencies. If you would otherwise clone a repository to inspect its source, use \`opensrc\` first, then search or read files under the returned source path with \`rg\` and direct file reads.
13502
+ Use the \`explore-codebase\` skill as the main route for broad external-source exploration. Inside that workflow, use \`opensrc path <package-or-repo>\` whenever implementation requires reading external source code, not only package dependencies. For focused external-source checks, use \`opensrc\` directly. If you would otherwise clone a repository to inspect its source, use \`opensrc\` first, then search or read files under the returned source path with \`rg\` and direct file reads.
13501
13503
 
13502
13504
  Follow the project's domain docs and workflow routes documented in the Pourkit managed block below.
13503
13505
 
@@ -19360,11 +19362,11 @@ function createCliProgram(version) {
19360
19362
  return program;
19361
19363
  }
19362
19364
  async function resolveCliVersion() {
19363
- if (isPackageVersion("0.0.0-next-20260707210730")) {
19364
- return "0.0.0-next-20260707210730";
19365
+ if (isPackageVersion("0.0.0-next-20260708233839")) {
19366
+ return "0.0.0-next-20260708233839";
19365
19367
  }
19366
- if (isReleaseVersion("0.0.0-next-20260707210730")) {
19367
- return "0.0.0-next-20260707210730";
19368
+ if (isReleaseVersion("0.0.0-next-20260708233839")) {
19369
+ return "0.0.0-next-20260708233839";
19368
19370
  }
19369
19371
  try {
19370
19372
  const root = repoRoot();