skill-tree 0.1.6 → 0.1.7

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/index.mjs CHANGED
@@ -9511,7 +9511,7 @@ var IndexerService = class {
9511
9511
  if (this.db) {
9512
9512
  const skills = await (this.db.getAllSkills?.() || this.db.listSkills?.()) || [];
9513
9513
  for (const skill of skills) {
9514
- if (skill.status !== "indexed" && !options?.force) continue;
9514
+ if (skill.status !== "indexed" && !options?.force && !options?.importAll) continue;
9515
9515
  try {
9516
9516
  const converted = convertIndexerSkill(skill);
9517
9517
  await this.skillBank.saveSkill(converted.skill);