@iservu-inc/adf-cli 0.9.0 → 0.9.1

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.
@@ -278,12 +278,19 @@ class Interviewer {
278
278
  console.log('');
279
279
  projectContext = { type: 'unknown', frameworks: [], languages: [], confidence: 0 };
280
280
 
281
- // Still initialize skip tracker for basic tracking
282
- this.skipTracker = new SkipTracker(this.projectPath, {
283
- projectType: 'unknown',
284
- frameworks: [],
285
- languages: []
286
- });
281
+ // Still initialize skip tracker for basic tracking (only if pattern detection enabled)
282
+ if (this.analysisConfig.features.patternDetection) {
283
+ this.skipTracker = new SkipTracker(this.projectPath, {
284
+ projectType: 'unknown',
285
+ frameworks: [],
286
+ languages: []
287
+ });
288
+ }
289
+ }
290
+ } else {
291
+ // Smart filtering disabled - set defaults
292
+ console.log(chalk.gray('ℹ️ Smart filtering disabled by configuration\n'));
293
+ projectContext = { type: 'unknown', frameworks: [], languages: [], confidence: 0 };
287
294
  }
288
295
 
289
296
  // Get questions for framework
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iservu-inc/adf-cli",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "CLI tool for AgentDevFramework - AI-assisted development framework with multi-provider AI support",
5
5
  "main": "index.js",
6
6
  "bin": {