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.
@@ -8857,7 +8857,7 @@ var IndexerService = class {
8857
8857
  if (this.db) {
8858
8858
  const skills = await (this.db.getAllSkills?.() || this.db.listSkills?.()) || [];
8859
8859
  for (const skill of skills) {
8860
- if (skill.status !== "indexed" && !options?.force) continue;
8860
+ if (skill.status !== "indexed" && !options?.force && !options?.importAll) continue;
8861
8861
  try {
8862
8862
  const converted = convertIndexerSkill(skill);
8863
8863
  await this.skillBank.saveSkill(converted.skill);