@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.
- package/.project/chats/complete/2025-10-03_AGENTS-MD-AND-TOOL-GENERATORS.md +764 -0
- package/.project/chats/current/2025-10-03_AI-PROVIDER-INTEGRATION.md +569 -0
- package/.project/chats/current/2025-10-03_FRAMEWORK-UPDATE-SYSTEM.md +497 -0
- package/.project/chats/current/SESSION-STATUS.md +127 -0
- package/.project/docs/AI-PROVIDER-INTEGRATION.md +600 -0
- package/.project/docs/FRAMEWORK-UPDATE-INTEGRATION.md +421 -0
- package/.project/docs/FRAMEWORK-UPDATE-SYSTEM.md +832 -0
- package/.project/docs/PROJECT-STRUCTURE-EXPLANATION.md +500 -0
- package/.project/docs/architecture/SYSTEM-DESIGN.md +122 -1
- package/.project/docs/goals/PROJECT-VISION.md +33 -28
- package/.project/docs/tool-integrations/RESEARCH-FINDINGS.md +828 -0
- package/CHANGELOG.md +325 -0
- package/README.md +100 -11
- package/bin/adf.js +7 -0
- package/lib/ai/ai-client.js +328 -0
- package/lib/ai/ai-config.js +398 -0
- package/lib/commands/config.js +154 -0
- package/lib/commands/deploy.js +122 -3
- package/lib/commands/init.js +56 -10
- package/lib/frameworks/interviewer.js +89 -11
- package/lib/frameworks/progress-tracker.js +8 -1
- package/lib/generators/agents-md-generator.js +388 -0
- package/lib/generators/cursor-generator.js +374 -0
- package/lib/generators/index.js +98 -0
- package/lib/generators/tool-config-generator.js +188 -0
- package/lib/generators/vscode-generator.js +403 -0
- package/lib/generators/windsurf-generator.js +596 -0
- package/package.json +15 -3
- package/tests/agents-md-generator.test.js +245 -0
- package/tests/cursor-generator.test.js +326 -0
- package/tests/vscode-generator.test.js +436 -0
- package/tests/windsurf-generator.test.js +320 -0
- /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
|
-
- [
|
|
30
|
-
- [
|
|
31
|
-
- [
|
|
32
|
-
- [
|
|
33
|
-
- [
|
|
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
|
-
- [
|
|
37
|
-
- [
|
|
38
|
-
- [
|
|
39
|
-
- [
|
|
40
|
-
- [
|
|
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
|
-
- [
|
|
44
|
-
- [
|
|
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 (
|
|
71
|
-
- Quality-based progress tracking
|
|
72
|
-
- Triple-redundant saves
|
|
73
|
-
- Resume capability
|
|
74
|
-
- Framework-specific outputs
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
-
|
|
79
|
-
-
|
|
80
|
-
-
|
|
81
|
-
|
|
82
|
-
|
|
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
|
|