@iservu-inc/adf-cli 0.5.1 → 0.5.2

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.
@@ -1,37 +1,40 @@
1
1
  # ADF CLI - Current Session Status
2
2
 
3
3
  **Date:** 2025-10-05
4
- **Status:** ✅ Active - UX Improvement Complete
5
- **Latest Version:** v0.5.1 (Ready to Publish)
4
+ **Status:** ✅ Active - v0.5.2 Ready to Publish
5
+ **Latest Version:** v0.5.2 (Ready)
6
6
  **Phase:** Phase 5 - Polish & UX Improvements
7
7
 
8
8
  ---
9
9
 
10
10
  ## Recent Completion
11
11
 
12
- **Session:** Improved Existing Project Detection UX (v0.5.1)
12
+ **Session:** Post-Install Information Display (v0.5.2)
13
13
  **Completed:** 2025-10-05
14
- **Status:** Ready to publish to npm
14
+ **Status:** 🚀 Ready to publish
15
15
  **Branch:** main
16
- **Previous:**
17
- - `4f236fe` - feat: v0.5.0 - Intelligent Answer Analysis & Dynamic Question Pipeline
18
16
 
19
17
  ---
20
18
 
21
19
  ## Current State
22
20
 
23
21
  ### Latest Version (Ready to Publish)
24
- - **Package:** `@iservu-inc/adf-cli@0.5.1`
22
+ - **Package:** `@iservu-inc/adf-cli@0.5.2`
25
23
  - **Status:** 🚀 Ready for npm publish
26
- - **Changes:** UX improvement for existing project detection
27
- - **Size:** ~955 kB (tarball), ~2.0 MB (unpacked)
28
- - **Files:** 105 total files
24
+ - **Changes:** Post-install message with version & path info
25
+ - **New Files:** lib/utils/postinstall.js
29
26
 
30
27
  ### Previous Published Version
31
- - **Package:** `@iservu-inc/adf-cli@0.5.0`
28
+ - **Package:** `@iservu-inc/adf-cli@0.5.1`
32
29
  - **Status:** ✅ Live on npm
33
30
  - **Published:** 2025-10-05
34
31
 
32
+ ### Recent Commits
33
+ - `b670fa4` - docs: Update SESSION-STATUS.md for v0.5.1 publication
34
+ - `ce13290` - feat: v0.5.1 - Improved Existing Project Detection UX
35
+ - `d9d2249` - docs: Add v0.5.0 session documentation
36
+ - `4f236fe` - feat: v0.5.0 - Intelligent Answer Analysis & Dynamic Question Pipeline
37
+
35
38
  ### Test Coverage
36
39
  - **Tests:** 200 passing (80 new analysis tests added)
37
40
  - **Test Suites:** 16 total
@@ -62,7 +65,16 @@
62
65
  - ✅ IDE deployment in `adf config` command
63
66
  - ✅ Answer extraction for Cursor and VSCode generators
64
67
 
65
- ### Latest Achievement (v0.5.1 - UX Improvement)
68
+ ### Latest Achievement (v0.5.2 - Post-Install Display)
69
+ - ✅ Post-install message showing version confirmation
70
+ - ✅ Display ADF CLI installation path
71
+ - ✅ Display current project path
72
+ - ✅ Quick start commands for new users
73
+ - ✅ Documentation link for reference
74
+ - ✅ Better onboarding experience
75
+ - ✅ Troubleshooting aid with path information
76
+
77
+ ### Previous Achievement (v0.5.1 - UX Improvement)
66
78
  - ✅ Improved existing project detection with better options
67
79
  - ✅ Added content summary (sessions, outputs, learning data)
68
80
  - ✅ Replaced binary prompt with intuitive menu
package/CHANGELOG.md CHANGED
@@ -5,6 +5,55 @@ All notable changes to `@iservu-inc/adf-cli` will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.5.2] - 2025-10-05
9
+
10
+ ### ✨ Post-Install Information Display
11
+
12
+ **ENHANCEMENT:** Added informative post-install message showing installation details.
13
+
14
+ #### What Changed
15
+
16
+ After running `npm install -g @iservu-inc/adf-cli`, users now see:
17
+
18
+ ```
19
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
20
+
21
+ ✅ ADF CLI installed successfully!
22
+
23
+ 📦 Installation Info:
24
+ Version: v0.5.2
25
+ ADF CLI Path: /usr/local/lib/node_modules/@iservu-inc/adf-cli
26
+ Project Path: /Users/username/current-directory
27
+
28
+ 🚀 Quick Start:
29
+ $ adf init # Start interactive interview
30
+ $ adf config # Configure AI & settings
31
+ $ adf deploy windsurf # Deploy to IDE
32
+
33
+ 📚 Documentation:
34
+ https://github.com/iServU/adf-cli#readme
35
+
36
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
37
+ ```
38
+
39
+ #### Benefits
40
+
41
+ - **Version confirmation**: See installed version immediately
42
+ - **Path visibility**: Know where ADF CLI is installed
43
+ - **Quick reference**: Quick start commands right after install
44
+ - **Better onboarding**: New users know exactly what to do next
45
+ - **Troubleshooting aid**: Installation paths help with debugging
46
+
47
+ #### Technical Changes
48
+
49
+ **New Files:**
50
+ - `lib/utils/postinstall.js` - Post-install script
51
+
52
+ **Modified Files:**
53
+ - `package.json` - Added `postinstall` script hook
54
+
55
+ ---
56
+
8
57
  ## [0.5.1] - 2025-10-05
9
58
 
10
59
  ### 🎯 Improved Existing Project Detection UX
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env node
2
+
3
+ const chalk = require('chalk');
4
+ const path = require('path');
5
+ const packageJson = require('../../package.json');
6
+
7
+ // Get installation paths
8
+ const adfInstallPath = path.resolve(__dirname, '../..');
9
+ const currentProjectPath = process.cwd();
10
+
11
+ console.log('');
12
+ console.log(chalk.cyan.bold('━'.repeat(60)));
13
+ console.log(chalk.green.bold(`\n✅ ADF CLI installed successfully!`));
14
+ console.log('');
15
+ console.log(chalk.cyan('📦 Installation Info:'));
16
+ console.log(chalk.gray(' Version: ') + chalk.white.bold(`v${packageJson.version}`));
17
+ console.log(chalk.gray(' ADF CLI Path: ') + chalk.white(adfInstallPath));
18
+ console.log(chalk.gray(' Project Path: ') + chalk.white(currentProjectPath));
19
+ console.log('');
20
+ console.log(chalk.cyan('🚀 Quick Start:'));
21
+ console.log(chalk.gray(' $ adf init ') + chalk.white('# Start interactive interview'));
22
+ console.log(chalk.gray(' $ adf config ') + chalk.white('# Configure AI & settings'));
23
+ console.log(chalk.gray(' $ adf deploy windsurf ') + chalk.white('# Deploy to IDE'));
24
+ console.log('');
25
+ console.log(chalk.cyan('📚 Documentation:'));
26
+ console.log(chalk.gray(' https://github.com/iServU/adf-cli#readme'));
27
+ console.log('');
28
+ console.log(chalk.gray('━'.repeat(60)));
29
+ console.log('');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iservu-inc/adf-cli",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "CLI tool for AgentDevFramework - AI-assisted development framework with multi-provider AI support",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -8,7 +8,8 @@
8
8
  },
9
9
  "scripts": {
10
10
  "test": "jest --coverage",
11
- "test:watch": "jest --watch"
11
+ "test:watch": "jest --watch",
12
+ "postinstall": "node lib/utils/postinstall.js"
12
13
  },
13
14
  "keywords": [
14
15
  "cli",