@amrhas82/agentic-kit 1.9.1 → 1.11.0

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.
@@ -0,0 +1,323 @@
1
+ # Agentic Kit v1.2.0 Release Notes
2
+
3
+ **Release Date**: November 5, 2025
4
+ **Type**: Major Feature Release
5
+ **Status**: Production Ready
6
+
7
+ ---
8
+
9
+ ## 🎉 What's New
10
+
11
+ ### Interactive Multi-Tool Installer System
12
+
13
+ The headline feature of v1.2.0 is a complete installation system supporting four AI development tools with three variant levels and comprehensive features:
14
+
15
+ #### 🚀 Core Features
16
+
17
+ - **4-Step Interactive Installation**: Guided process from variant selection to completion
18
+ - **Multi-Tool Support**: Install Claude, Opencode, Ampcode, and Droid simultaneously
19
+ - **Variant Selection**: Choose Lite (510 KB), Standard (8.4 MB), or Pro (9 MB)
20
+ - **Real-Time Progress**: Beautiful ANSI progress bars with ETA and transfer speed
21
+ - **Automatic Rollback**: Failed installations automatically restore previous state
22
+ - **Resume Capability**: Interrupted installations can be resumed from where they stopped
23
+ - **Silent Mode**: Perfect for CI/CD pipelines (`--silent --variant=standard --tools=claude`)
24
+
25
+ #### 📊 Installation Reporting (New in Phase 9)
26
+
27
+ - **Comprehensive Reports**: Detailed installation reports saved to `~/.agentic-kit-install.log`
28
+ - Success/failure status
29
+ - Per-tool component counts and verification
30
+ - System information and timing data
31
+ - Errors and warnings with context
32
+
33
+ #### 📈 Anonymous Telemetry (New in Phase 9)
34
+
35
+ - **Opt-In Only**: Clear consent prompt with transparent data policy
36
+ - **Privacy-First**: Only anonymous usage data (variant, tool count, timing, OS)
37
+ - **No Personal Data**: Never collects paths, user info, or identifying data
38
+ - **Easy Opt-Out**: Use `--no-telemetry` flag or modify config file
39
+ - **Local Storage**: Data stored locally, not sent to external servers
40
+ - **Full Documentation**: See `docs/PRIVACY.md` for complete details
41
+
42
+ #### 🔒 Security Hardening (New in Phase 9)
43
+
44
+ - **Path Traversal Prevention**: Validates all paths to prevent `../../etc/passwd` attacks
45
+ - **Symlink Protection**: Resolves and validates symlinks before operations
46
+ - **Input Validation**: Whitelisted tool names, variants, and sanitized paths
47
+ - **DoS Prevention**: File size limits (1MB) for JSON parsing
48
+ - **Null Byte Detection**: Prevents null byte injection in paths and files
49
+ - **Secure Permissions**: Sensitive files created with 0600 permissions
50
+ - **No Command Injection**: All file operations use Node.js APIs, no shell execution
51
+ - **Full Documentation**: See `docs/SECURITY.md` for security measures
52
+
53
+ #### 🔄 Legacy Migration (New in Phase 9)
54
+
55
+ - **Automatic Detection**: Finds pre-1.2.0 installations without manifests
56
+ - **Smart Classification**: Classifies legacy installations as Lite/Standard/Pro
57
+ - **Preserves Customizations**: User-created agents and skills are retained
58
+ - **Migration Prompt**: Clear prompts with migration details
59
+ - **Rollback Support**: Easy rollback if migration is unwanted
60
+ - **Full Documentation**: See `docs/MIGRATION.md` for migration guide
61
+
62
+ ---
63
+
64
+ ## 📦 What's Included
65
+
66
+ ### Tools & Variants
67
+
68
+ | Tool | Description | Optimization |
69
+ |------|-------------|--------------|
70
+ | **Claude** | Conversational AI assistant | Markdown-first, conversational patterns |
71
+ | **Opencode** | CLI-optimized codegen | Terminal workflows, command-line first |
72
+ | **Ampcode** | Amplified development | Maximum velocity, automation |
73
+ | **Droid** | Android development | Mobile-first, Android Studio integration |
74
+
75
+ | Variant | Agents | Skills | Size | Best For |
76
+ |---------|--------|--------|------|----------|
77
+ | **Lite** | 3 | 0 | 510 KB | CI/CD, minimal setups, testing |
78
+ | **Standard** ⭐ | 13 | 8 | 8.4 MB | Most users, document processing |
79
+ | **Pro** | 13 | 22 | 9 MB | Advanced users, full feature set |
80
+
81
+ ### Components
82
+
83
+ - **13 Specialized Agents**: master, orchestrator, story-writer, feature-planner, and more
84
+ - **22 Skills**: pdf, docx, xlsx, pptx, canvas-design, theme-factory, and 16 others
85
+ - **8 Core Skills** (Standard): Essential document and design tools
86
+ - **14 Advanced Skills** (Pro only): Specialized tools for power users
87
+
88
+ ---
89
+
90
+ ## 🚀 Installation
91
+
92
+ ### Quick Start
93
+
94
+ ```bash
95
+ # Install globally
96
+ npm install -g @amrhas82/agentic-kit
97
+
98
+ # Run interactive installer
99
+ agentic-kit install
100
+ ```
101
+
102
+ ### Silent Mode (CI/CD)
103
+
104
+ ```bash
105
+ # Install Claude with Standard variant
106
+ agentic-kit install --silent --variant=standard --tools=claude
107
+
108
+ # Install all tools with Pro variant
109
+ agentic-kit install --silent --variant=pro --tools=claude,opencode,ampcode,droid
110
+ ```
111
+
112
+ ### Advanced Usage
113
+
114
+ ```bash
115
+ # Custom path
116
+ agentic-kit install --variant=standard --tools=claude --path claude=~/my-custom-path
117
+
118
+ # Multiple tools with different paths
119
+ agentic-kit install --variant=pro --tools=claude,opencode \
120
+ --path claude=~/.claude-custom \
121
+ --path opencode=~/.opencode-custom
122
+
123
+ # Disable telemetry
124
+ agentic-kit install --no-telemetry
125
+
126
+ # Uninstall
127
+ agentic-kit install --uninstall claude
128
+
129
+ # Upgrade variant
130
+ agentic-kit install --upgrade claude pro
131
+ ```
132
+
133
+ ---
134
+
135
+ ## 📚 Documentation
136
+
137
+ ### New Documentation (Phase 9)
138
+
139
+ - **[PRIVACY.md](docs/PRIVACY.md)** - Transparent data collection policy
140
+ - **[SECURITY.md](docs/SECURITY.md)** - Security measures and best practices
141
+ - **[MIGRATION.md](docs/MIGRATION.md)** - Guide for migrating from < 1.2.0
142
+
143
+ ### Existing Documentation
144
+
145
+ - **[INSTALLER_GUIDE.md](docs/INSTALLER_GUIDE.md)** - Complete installation guide (850+ lines)
146
+ - **[VARIANT_CONFIGURATION.md](docs/VARIANT_CONFIGURATION.md)** - Variant system details
147
+ - **[PACKAGE_BASELINE.md](docs/PACKAGE_BASELINE.md)** - Package structure reference
148
+ - **[TESTING.md](docs/TESTING.md)** - Testing strategy and execution
149
+ - **[INSTALLATION_DEMO.md](docs/INSTALLATION_DEMO.md)** - Visual demo of installer
150
+
151
+ ---
152
+
153
+ ## ✅ Testing & Quality Assurance
154
+
155
+ ### Test Coverage
156
+
157
+ - **263 Total Tests**: All passing with zero failures
158
+ - **9 Validation Tests**: Core module validation (new in Phase 9.6)
159
+ - **88 Variant Tests**: Comprehensive variant parsing validation
160
+ - **44 Package Tests**: Package manager functionality
161
+ - **35 Installation Tests**: Installation engine testing
162
+ - **40 Integration Tests**: End-to-end scenarios
163
+ - **34 Path Tests**: Path validation and confirmation
164
+ - **13 Display Tests**: Summary display verification
165
+
166
+ ### Validation Results
167
+
168
+ - ✅ All 12 tool/variant combinations validated
169
+ - ✅ Zero errors, zero warnings
170
+ - ✅ 100% installation success rate
171
+ - ✅ Production-ready status confirmed
172
+
173
+ ---
174
+
175
+ ## 🔧 Technical Details
176
+
177
+ ### Architecture
178
+
179
+ ```
180
+ agentic-kit/
181
+ ├── installer/
182
+ │ ├── cli.js # Interactive CLI
183
+ │ ├── package-manager.js # Variant management
184
+ │ ├── installation-engine.js # File operations
185
+ │ ├── verification-system.js # Post-install validation
186
+ │ ├── path-manager.js # Path validation (enhanced security)
187
+ │ ├── state-manager.js # Resume capability
188
+ │ ├── report-template.js # Report generation (new Phase 9.2)
189
+ │ └── telemetry.js # Anonymous stats (new Phase 9.3)
190
+ ├── packages/
191
+ │ ├── claude/ # Claude-optimized package
192
+ │ ├── opencode/ # Opencode-optimized package
193
+ │ ├── ampcode/ # Ampcode-optimized package
194
+ │ └── droid/ # Droid-optimized package
195
+ └── tests/
196
+ ├── installer/ # 254 installer tests
197
+ └── validation-test.js # 9 core validation tests (new Phase 9.6)
198
+ ```
199
+
200
+ ### Requirements
201
+
202
+ - **Node.js**: 14.0.0 or higher
203
+ - **npm**: 6.0.0 or higher
204
+ - **Disk Space**:
205
+ - Lite: ~1 MB
206
+ - Standard: ~10 MB
207
+ - Pro: ~12 MB
208
+ - **Permissions**: Write access to installation directories
209
+
210
+ ---
211
+
212
+ ## 🐛 Bug Fixes
213
+
214
+ - Fixed file count mismatches in progress tracking
215
+ - Improved error messages for permission issues
216
+ - Enhanced path validation for edge cases
217
+ - Better handling of interrupted installations
218
+ - Resolved symlink-related installation issues
219
+
220
+ ---
221
+
222
+ ## 🔄 Migration from v1.1.x
223
+
224
+ ### Automatic Migration
225
+
226
+ When you run the installer, it will automatically detect v1.1.x installations and offer to migrate:
227
+
228
+ ```bash
229
+ $ agentic-kit install
230
+
231
+ ⚠ Legacy installation detected at ~/.claude
232
+ Found: 13 agents, 5 skills, 1 resource, 2 hooks
233
+
234
+ Migrate to new installer? (Y/n): y
235
+
236
+ ✓ Migration complete!
237
+ ```
238
+
239
+ ### What's Preserved
240
+
241
+ - ✅ All existing agents and skills
242
+ - ✅ Custom user-created files
243
+ - ✅ Directory structure
244
+ - ✅ File permissions
245
+
246
+ ### What's Added
247
+
248
+ - ➕ `manifest.json` with installation metadata
249
+ - ➕ Upgrade/downgrade capability
250
+ - ➕ Better uninstall support
251
+
252
+ See **[MIGRATION.md](docs/MIGRATION.md)** for detailed migration guide.
253
+
254
+ ---
255
+
256
+ ## 🎯 Highlights
257
+
258
+ ### For Developers
259
+
260
+ - **Faster Installation**: Optimized file operations with progress tracking
261
+ - **Better Debugging**: Comprehensive reports and error messages
262
+ - **CI/CD Ready**: Silent mode with exit codes and automation support
263
+ - **Security First**: Path traversal prevention and input validation
264
+ - **Resume Support**: Never lose progress on interrupted installations
265
+
266
+ ### For Teams
267
+
268
+ - **Multi-Tool Management**: Install and manage 4 tools from one installer
269
+ - **Variant Flexibility**: Easy upgrades between Lite/Standard/Pro
270
+ - **Consistent Structure**: All tools follow same structure (13 agents, 22 skills)
271
+ - **Tool-Specific Optimization**: Each tool optimized for its platform
272
+ - **Quality Assurance**: 263 tests ensure reliability
273
+
274
+ ### For Organizations
275
+
276
+ - **Privacy-Focused**: Transparent telemetry with easy opt-out
277
+ - **Security-Hardened**: Comprehensive security measures documented
278
+ - **Migration Path**: Clear upgrade path from older versions
279
+ - **Documentation**: Extensive guides for all features
280
+ - **Production-Ready**: 100% validation, zero errors
281
+
282
+ ---
283
+
284
+ ## 📊 Statistics
285
+
286
+ - **Lines of Code**: ~8,500 (installer system)
287
+ - **Documentation**: ~5,000 lines across 8 documents
288
+ - **Tests**: 263 passing tests
289
+ - **Success Rate**: 100% installation success
290
+ - **Validation**: 12/12 tool/variant combinations validated
291
+ - **Security Checks**: 7 layers of security validation
292
+
293
+ ---
294
+
295
+ ## 🙏 Acknowledgments
296
+
297
+ This release represents a significant milestone in making Agentic Kit more accessible, secure, and user-friendly. Special thanks to all contributors and users who provided feedback during development.
298
+
299
+ ---
300
+
301
+ ## 📞 Support
302
+
303
+ - **Documentation**: https://github.com/amrhas82/agentic-kit/docs
304
+ - **Issues**: https://github.com/amrhas82/agentic-kit/issues
305
+ - **Security**: See [SECURITY.md](docs/SECURITY.md) for vulnerability reporting
306
+
307
+ ---
308
+
309
+ ## 🔮 What's Next (v1.3.0)
310
+
311
+ Planned features for the next release:
312
+
313
+ - GUI installer for desktop environments
314
+ - Package management (add/remove individual agents and skills)
315
+ - Automatic update notifications
316
+ - Team/enterprise deployment support
317
+ - Additional tool integrations
318
+ - Enhanced telemetry dashboard (local-only)
319
+ - Performance optimizations
320
+
321
+ ---
322
+
323
+ **Enjoy Agentic Kit v1.2.0!** 🎉