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/cli/index.js CHANGED
@@ -8878,7 +8878,7 @@ var IndexerService = class {
8878
8878
  if (this.db) {
8879
8879
  const skills = await (this.db.getAllSkills?.() || this.db.listSkills?.()) || [];
8880
8880
  for (const skill of skills) {
8881
- if (skill.status !== "indexed" && !options?.force) continue;
8881
+ if (skill.status !== "indexed" && !options?.force && !options?.importAll) continue;
8882
8882
  try {
8883
8883
  const converted = convertIndexerSkill(skill);
8884
8884
  await this.skillBank.saveSkill(converted.skill);