@pourkit/cli 0.0.0-next-20260704180701 → 0.0.0-next-20260705165838

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.
@@ -3,7 +3,7 @@ name: codebase-pattern-finder
3
3
  description: codebase-pattern-finder is a useful subagent_type for finding similar implementations, usage examples, or existing patterns that can be modeled after. It will give you concrete code examples based on what you're looking for! It's sorta like codebase-locator, but it will not only tell you the location of files, it will also give you code details!
4
4
  mode: subagent
5
5
  hidden: true
6
- model: opencode-go/deepseek-v4-pro
6
+ model: opencode-go/deepseek-v4-flash
7
7
  permission:
8
8
  grep: allow
9
9
  glob: allow
package/dist/cli.js CHANGED
@@ -13355,6 +13355,7 @@ var BASELINE_MANAGED_SKILLS = [
13355
13355
  "code-review",
13356
13356
  "diagnose",
13357
13357
  "explain",
13358
+ "explore-codebase",
13358
13359
  "grill-with-docs",
13359
13360
  "handoff",
13360
13361
  "improve-codebase-architecture",
@@ -13625,25 +13626,7 @@ function resolveSourceAssetPath(sourceRoot, ...segments) {
13625
13626
  }
13626
13627
  return path5.join(sourceRoot, "pourkit", ...segments);
13627
13628
  }
13628
- var BASELINE_SKILL_NAMES = [
13629
- "code-review",
13630
- "diagnose",
13631
- "explain",
13632
- "grill-with-docs",
13633
- "handoff",
13634
- "improve-codebase-architecture",
13635
- "publish-prd",
13636
- "secret-commit-guard",
13637
- "security-review",
13638
- "ship-current-changes",
13639
- "tdd",
13640
- "to-issues",
13641
- "to-oneshot",
13642
- "to-prd",
13643
- "triage",
13644
- "write-a-skill",
13645
- "zoom-out"
13646
- ];
13629
+ var BASELINE_SKILL_NAMES = getBaselineManagedSkillNames();
13647
13630
  var NO_TOKEN_LABEL_PROVISIONING_WARNING = "Skipped GitHub label provisioning because no GitHub token was provided.";
13648
13631
  var DEFAULT_RUNNER_LABELS = {
13649
13632
  readyForAgent: "ready-for-agent",
@@ -16203,48 +16186,53 @@ async function validateWorkflowPack(cwd) {
16203
16186
  }
16204
16187
  for (const skillName of baselineSkills) {
16205
16188
  const skillDir = resolve4(cwd, `.pourkit/managed/skills/${skillName}`);
16189
+ const skillSourcePath = resolve4(skillDir, "SKILL.md");
16206
16190
  if (!existsSync18(skillDir)) {
16207
16191
  failures.push({
16208
16192
  severity: "failure",
16209
16193
  kind: "missing_managed_asset",
16210
- path: `.pourkit/managed/skills/${skillName}`,
16194
+ path: `.pourkit/managed/skills/${skillName}/SKILL.md`,
16211
16195
  message: `Missing managed skill: ${skillName}`
16212
16196
  });
16197
+ } else if (!existsSync18(skillSourcePath)) {
16198
+ failures.push({
16199
+ severity: "failure",
16200
+ kind: "missing_managed_asset",
16201
+ path: `.pourkit/managed/skills/${skillName}/SKILL.md`,
16202
+ message: `Missing managed skill source: ${skillName}/SKILL.md`
16203
+ });
16213
16204
  } else {
16214
- const skillSourcePath = resolve4(skillDir, "SKILL.md");
16215
- if (existsSync18(skillSourcePath)) {
16216
- const packagedSkillPath = resolvePackagedManagedPath(
16217
- "skills",
16218
- skillName,
16219
- "SKILL.md"
16220
- );
16221
- const packagedContent = await readPackagedTextFile(packagedSkillPath);
16222
- if (packagedContent !== null) {
16223
- try {
16224
- const localContent = await readFile6(skillSourcePath, "utf-8");
16225
- if (localContent !== packagedContent) {
16226
- const overridePath = resolve4(
16227
- cwd,
16228
- `.pourkit/overrides/skills/${skillName}/SKILL.md`
16229
- );
16230
- if (existsSync18(overridePath)) {
16231
- warnings.push({
16232
- severity: "warning",
16233
- kind: "overridden",
16234
- path: `.pourkit/overrides/skills/${skillName}/SKILL.md`,
16235
- message: `Managed skill ${skillName} is overridden by explicit override.`
16236
- });
16237
- } else {
16238
- failures.push({
16239
- severity: "failure",
16240
- kind: "managed_asset_drift",
16241
- path: `.pourkit/managed/skills/${skillName}/SKILL.md`,
16242
- message: `Managed skill ${skillName} content differs from packaged source. Run 'pourkit sync workflow-pack' to repair.`
16243
- });
16244
- }
16205
+ const packagedSkillPath = resolvePackagedManagedPath(
16206
+ "skills",
16207
+ skillName,
16208
+ "SKILL.md"
16209
+ );
16210
+ const packagedContent = await readPackagedTextFile(packagedSkillPath);
16211
+ if (packagedContent !== null) {
16212
+ try {
16213
+ const localContent = await readFile6(skillSourcePath, "utf-8");
16214
+ if (localContent !== packagedContent) {
16215
+ const overridePath = resolve4(
16216
+ cwd,
16217
+ `.pourkit/overrides/skills/${skillName}/SKILL.md`
16218
+ );
16219
+ if (existsSync18(overridePath)) {
16220
+ warnings.push({
16221
+ severity: "warning",
16222
+ kind: "overridden",
16223
+ path: `.pourkit/overrides/skills/${skillName}/SKILL.md`,
16224
+ message: `Managed skill ${skillName} is overridden by explicit override.`
16225
+ });
16226
+ } else {
16227
+ failures.push({
16228
+ severity: "failure",
16229
+ kind: "managed_asset_drift",
16230
+ path: `.pourkit/managed/skills/${skillName}/SKILL.md`,
16231
+ message: `Managed skill ${skillName} content differs from packaged source. Run 'pourkit sync workflow-pack' to repair.`
16232
+ });
16245
16233
  }
16246
- } catch {
16247
16234
  }
16235
+ } catch {
16248
16236
  }
16249
16237
  }
16250
16238
  }
@@ -16262,39 +16250,44 @@ async function validateWorkflowPack(cwd) {
16262
16250
  }
16263
16251
  for (const skillName of baselineSkills) {
16264
16252
  const projectionDir = resolve4(cwd, `.agents/skills/${skillName}`);
16253
+ const projectionPath = resolve4(projectionDir, "SKILL.md");
16265
16254
  if (!existsSync18(projectionDir)) {
16266
16255
  warnings.push({
16267
16256
  severity: "warning",
16268
16257
  kind: "projection_stale",
16269
- path: `.agents/skills/${skillName}`,
16258
+ path: `.agents/skills/${skillName}/SKILL.md`,
16270
16259
  message: `Missing skill projection for ${skillName}. Run 'pourkit sync workflow-pack' to regenerate.`
16271
16260
  });
16261
+ } else if (!existsSync18(projectionPath)) {
16262
+ warnings.push({
16263
+ severity: "warning",
16264
+ kind: "projection_stale",
16265
+ path: `.agents/skills/${skillName}/SKILL.md`,
16266
+ message: `Missing skill projection source for ${skillName}. Run 'pourkit sync workflow-pack' to regenerate.`
16267
+ });
16272
16268
  } else {
16273
- const projectionPath = resolve4(projectionDir, "SKILL.md");
16274
- if (existsSync18(projectionPath)) {
16275
- const managedSourcePath = resolvePackagedManagedPath(
16276
- "skills",
16277
- skillName,
16278
- "SKILL.md"
16279
- );
16280
- const packagedContent = await readPackagedTextFile(managedSourcePath);
16281
- if (packagedContent !== null) {
16282
- try {
16283
- const projectionContent = await readFile6(projectionPath, "utf-8");
16284
- const managedSourceRelativePath = `.pourkit/managed/skills/${skillName}/SKILL.md`;
16285
- if (projectionContent !== buildOpenCodeSkillProjectionContent(
16286
- managedSourceRelativePath,
16287
- packagedContent
16288
- )) {
16289
- warnings.push({
16290
- severity: "warning",
16291
- kind: "projection_stale",
16292
- path: `.agents/skills/${skillName}/SKILL.md`,
16293
- message: `Projection for ${skillName} differs from managed source. Run 'pourkit sync workflow-pack' to regenerate.`
16294
- });
16295
- }
16296
- } catch {
16269
+ const managedSourcePath = resolvePackagedManagedPath(
16270
+ "skills",
16271
+ skillName,
16272
+ "SKILL.md"
16273
+ );
16274
+ const packagedContent = await readPackagedTextFile(managedSourcePath);
16275
+ if (packagedContent !== null) {
16276
+ try {
16277
+ const projectionContent = await readFile6(projectionPath, "utf-8");
16278
+ const managedSourceRelativePath = `.pourkit/managed/skills/${skillName}/SKILL.md`;
16279
+ if (projectionContent !== buildOpenCodeSkillProjectionContent(
16280
+ managedSourceRelativePath,
16281
+ packagedContent
16282
+ )) {
16283
+ warnings.push({
16284
+ severity: "warning",
16285
+ kind: "projection_stale",
16286
+ path: `.agents/skills/${skillName}/SKILL.md`,
16287
+ message: `Projection for ${skillName} differs from managed source. Run 'pourkit sync workflow-pack' to regenerate.`
16288
+ });
16297
16289
  }
16290
+ } catch {
16298
16291
  }
16299
16292
  }
16300
16293
  }
@@ -19339,11 +19332,11 @@ function createCliProgram(version) {
19339
19332
  return program;
19340
19333
  }
19341
19334
  async function resolveCliVersion() {
19342
- if (isPackageVersion("0.0.0-next-20260704180701")) {
19343
- return "0.0.0-next-20260704180701";
19335
+ if (isPackageVersion("0.0.0-next-20260705165838")) {
19336
+ return "0.0.0-next-20260705165838";
19344
19337
  }
19345
- if (isReleaseVersion("0.0.0-next-20260704180701")) {
19346
- return "0.0.0-next-20260704180701";
19338
+ if (isReleaseVersion("0.0.0-next-20260705165838")) {
19339
+ return "0.0.0-next-20260705165838";
19347
19340
  }
19348
19341
  try {
19349
19342
  const root = repoRoot();