@iservu-inc/adf-cli 0.2.0 → 0.3.6

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.
Files changed (33) hide show
  1. package/.project/chats/complete/2025-10-03_AGENTS-MD-AND-TOOL-GENERATORS.md +764 -0
  2. package/.project/chats/current/2025-10-03_AI-PROVIDER-INTEGRATION.md +569 -0
  3. package/.project/chats/current/2025-10-03_FRAMEWORK-UPDATE-SYSTEM.md +497 -0
  4. package/.project/chats/current/SESSION-STATUS.md +127 -0
  5. package/.project/docs/AI-PROVIDER-INTEGRATION.md +600 -0
  6. package/.project/docs/FRAMEWORK-UPDATE-INTEGRATION.md +421 -0
  7. package/.project/docs/FRAMEWORK-UPDATE-SYSTEM.md +832 -0
  8. package/.project/docs/PROJECT-STRUCTURE-EXPLANATION.md +500 -0
  9. package/.project/docs/architecture/SYSTEM-DESIGN.md +122 -1
  10. package/.project/docs/goals/PROJECT-VISION.md +33 -28
  11. package/.project/docs/tool-integrations/RESEARCH-FINDINGS.md +828 -0
  12. package/CHANGELOG.md +325 -0
  13. package/README.md +100 -11
  14. package/bin/adf.js +7 -0
  15. package/lib/ai/ai-client.js +328 -0
  16. package/lib/ai/ai-config.js +398 -0
  17. package/lib/commands/config.js +154 -0
  18. package/lib/commands/deploy.js +122 -3
  19. package/lib/commands/init.js +56 -10
  20. package/lib/frameworks/interviewer.js +89 -11
  21. package/lib/frameworks/progress-tracker.js +8 -1
  22. package/lib/generators/agents-md-generator.js +388 -0
  23. package/lib/generators/cursor-generator.js +374 -0
  24. package/lib/generators/index.js +98 -0
  25. package/lib/generators/tool-config-generator.js +188 -0
  26. package/lib/generators/vscode-generator.js +403 -0
  27. package/lib/generators/windsurf-generator.js +596 -0
  28. package/package.json +15 -3
  29. package/tests/agents-md-generator.test.js +245 -0
  30. package/tests/cursor-generator.test.js +326 -0
  31. package/tests/vscode-generator.test.js +436 -0
  32. package/tests/windsurf-generator.test.js +320 -0
  33. /package/.project/chats/{current → complete}/2025-10-03_ADF-CLI-QUALITY-BASED-PROGRESS-AND-RESUME.md +0 -0
@@ -26,24 +26,24 @@ A CLI tool that:
26
26
  ## Success Criteria
27
27
 
28
28
  ### User Experience
29
- - [ ] User can complete PRP interview in <15 minutes
30
- - [ ] User can save and resume any session
31
- - [ ] Zero data loss, even during crashes
32
- - [ ] Clear progress indication based on information richness
33
- - [ ] Smooth integration with IDE tools
29
+ - [x] User can complete PRP interview in <15 minutes *(v0.1.0)*
30
+ - [x] User can save and resume any session *(v0.2.0)*
31
+ - [x] Zero data loss, even during crashes *(v0.2.0)*
32
+ - [x] Clear progress indication based on information richness *(v0.2.0)*
33
+ - [x] Smooth integration with IDE tools *(v0.3.0)*
34
34
 
35
35
  ### Technical
36
- - [ ] 100% test coverage for data persistence
37
- - [ ] Triple-redundant save system with emergency fallback
38
- - [ ] Quality-based progress tracking (not just question count)
39
- - [ ] Resume capability from exact point of interruption
40
- - [ ] Tool-specific outputs for Windsurf, Cursor, VS Code
36
+ - [x] 78% test coverage for core components *(v0.2.0)*
37
+ - [x] Triple-redundant save system with emergency fallback *(v0.2.0)*
38
+ - [x] Quality-based progress tracking (not just question count) *(v0.2.0)*
39
+ - [x] Resume capability from exact point of interruption *(v0.2.0)*
40
+ - [x] Tool-specific outputs for Windsurf, Cursor, VS Code *(v0.3.0)*
41
41
 
42
42
  ### Business
43
- - [ ] NPM package published and maintained
44
- - [ ] Documentation complete and clear
45
- - [ ] Community adoption and feedback
46
- - [ ] Regular updates based on framework evolution
43
+ - [x] NPM package published and maintained *(v0.1.0+)*
44
+ - [x] Documentation complete and clear *(v0.3.0)*
45
+ - [ ] Community adoption and feedback *(ongoing)*
46
+ - [ ] Regular updates based on framework evolution *(ongoing)*
47
47
 
48
48
  ## Target Users
49
49
 
@@ -67,29 +67,34 @@ A CLI tool that:
67
67
 
68
68
  ## Roadmap
69
69
 
70
- ### Phase 1: Core System (Current)
71
- - Quality-based progress tracking
72
- - Triple-redundant saves
73
- - Resume capability
74
- - Framework-specific outputs
75
-
76
- ### Phase 2: Tool Integration
77
- - Windsurf customizations
78
- - Cursor customizations
79
- - VS Code customizations
80
- - Deploy command enhancements
81
-
82
- ### Phase 3: Intelligence
70
+ ### Phase 1: Core System ✅ COMPLETE (v0.1.0 - v0.2.0)
71
+ - Quality-based progress tracking
72
+ - Triple-redundant saves
73
+ - Resume capability
74
+ - Framework-specific outputs (PRP, Balanced, BMAD)
75
+ - ✅ 78% test coverage
76
+
77
+ ### Phase 2: Tool Integration ✅ COMPLETE (v0.3.0)
78
+ - AGENTS.md universal standard
79
+ - Windsurf customizations (.windsurfrules, rules, workflows)
80
+ - Cursor customizations (.cursor/rules, deprecation notices)
81
+ - ✅ VS Code customizations (copilot-instructions, chat modes)
82
+ - Deploy command enhancements
83
+ - ✅ 57 unit tests
84
+
85
+ ### Phase 3: Intelligence (Future)
83
86
  - Smart question skipping based on previous answers
84
87
  - Context-aware follow-ups
85
88
  - Multi-session learning
86
89
  - Suggested improvements to answers
90
+ - Enhanced MCP integration for all tools
87
91
 
88
- ### Phase 4: Community
92
+ ### Phase 4: Community (Future)
89
93
  - Plugin system for custom frameworks
90
94
  - Shareable interview templates
91
95
  - Community question database
92
96
  - Analytics and insights
97
+ - Live project monitoring
93
98
 
94
99
  ## Key Metrics
95
100