2525</p >
2626
2727<div align =" center " >
28- <h2 >🎉 What's New in v3.2.0 </h2 >
28+ <h2 >🎉 What's New in v3.2.8 </h2 >
2929
3030 <table >
3131 <tr>
3232 <td align="center" width="50%">
33- <h3>🤖 Autonomous AI Orchestration </h3>
34- <p><strong>NEW: <code>context-forge orchestrate </code></strong></p>
35- <p>Deploy teams of AI agents working 24/7 !</p>
33+ <h3>🤖 AI-Powered PRP Generation </h3>
34+ <p><strong>NEW: <code>context-forge init --ai-prp </code></strong></p>
35+ <p>Generate intelligent, feature-specific PRPs with AI !</p>
3636 <ul align="left">
37- <li>🚀 Autonomous AI team management </li>
38- <li>💻 Tmux session orchestration </li>
39- <li>💬 Inter-agent communication </li>
40- <li>⏰ Self-scheduling & planning </li>
41- <li>📊 Progress tracking & monitoring </li>
37+ <li>🧠 OpenAI & Anthropic Claude integration </li>
38+ <li>🔐 Secure API key management with encryption </li>
39+ <li>🎯 Feature-specific implementation strategies </li>
40+ <li>⚡ Real-time progress feedback </li>
41+ <li>🛡️ Timeout handling & fallback systems </li>
4242 </ul>
43- <code>context-forge orchestrate --team-size medium </code>
43+ <code>context-forge ai-keys --provider openai </code>
4444 </td>
4545 <td align="center" width="50%">
46- <h3>🎯 Enhancement Planning System </h3>
47- <p><strong>NEW: <code>context-forge enhance</code> </strong></p>
48- <p>Plan and implement features systematically !</p>
46+ <h3>🔧 Enhanced Core Features </h3>
47+ <p><strong>Bug Fixes & Improvements </strong></p>
48+ <p>Major improvements to PRP generation and project initialization !</p>
4949 <ul align="left">
50- <li>🎯 Feature definition & analysis </li>
51- <li>📊 Dependency mapping </li>
52- <li>🛡️ Phased implementation plans </li>
53- <li>✅ Progress tracking commands </li>
54- <li>🔍 Validation checkpoints </li>
50+ <li>✅ Fixed identical PRP content bug </li>
51+ <li>📝 Added config.json file generation </li>
52+ <li>🎯 Feature-specific PRP content </li>
53+ <li>🔒 Encrypted key storage </li>
54+ <li>📊 Progress tracking during generation </li>
5555 </ul>
56- <code>context-forge enhance --features auth,api </code>
56+ <code>context-forge init --ai-prp </code>
5757 </td>
5858 </tr>
5959 </table >
@@ -195,6 +195,88 @@ Need help understanding how each IDE uses its configuration? Check out our detai
195195- ** [ 📝 Enhanced PRP Templates] ( ./docs/claude-features/enhanced-prp-templates.md ) ** - Four specialized templates for different scenarios
196196- ** [ 🎯 Orchestration Workflow] ( ./docs/claude-features/orchestration-workflow.md ) ** - How all components work together
197197
198+ ## 🤖 AI-Powered PRP Generation (NEW in v3.2.8)
199+
200+ Transform your project development with intelligent, feature-specific ** Product Requirement Prompts (PRPs)** powered by OpenAI and Anthropic Claude.
201+
202+ ### 🧠 What are AI-Powered PRPs?
203+
204+ Unlike template-based PRPs, AI-powered PRPs are dynamically generated for each specific feature in your project, containing:
205+
206+ - ** Feature-specific implementation strategies** tailored to your tech stack
207+ - ** Intelligent gotchas and best practices** based on your architecture
208+ - ** Custom validation approaches** optimized for the feature type
209+ - ** Relevant documentation links** curated by AI
210+ - ** Complexity assessments** and dependency analysis
211+
212+ ### 🚀 Quick Setup
213+
214+ ``` bash
215+ # 1. Set up your AI provider (one-time setup)
216+ context-forge ai-keys --provider openai
217+ # OR
218+ context-forge ai-keys --provider anthropic
219+
220+ # 2. Initialize project with AI-powered PRPs
221+ context-forge init --ai-prp
222+
223+ # Your API keys are securely encrypted and stored in ~/.context-forge-keys
224+ ```
225+
226+ ### 🔐 Secure Key Management
227+
228+ - ** AES-256-CBC encryption** for API key storage
229+ - ** User-specific salt generation** for enhanced security
230+ - ** Cross-project key sharing** - set up once, use everywhere
231+ - ** Multi-provider support** - OpenAI, Anthropic Claude, and more coming soon
232+
233+ ### ⚡ Real-time Generation Process
234+
235+ Watch as Context Forge generates intelligent PRPs for each feature:
236+
237+ ```
238+ 🤖 Generating AI PRP for: User Authentication & Authorization...
239+ ✅ AI content generated for: User Authentication & Authorization
240+ 📝 Generated: PRPs/feature-auth-prp.md
241+
242+ 🤖 Generating AI PRP for: Google Drive Cloud Streaming...
243+ ✅ AI content generated for: Google Drive Cloud Streaming
244+ 📝 Generated: PRPs/feature-google-drive-cloud-streaming-prp.md
245+ ```
246+
247+ ### 🎯 Example: Feature-Specific Content
248+
249+ ** Traditional Template PRP:**
250+ ``` markdown
251+ # TODO: Add implementation details
252+ # TODO: Add data models based on requirements
253+ ```
254+
255+ ** AI-Powered PRP for Google Drive Integration:**
256+ ``` markdown
257+ ### AI-Generated Implementation Strategy
258+ Leverage Google Drive API for file organization, streaming, and redundancy.
259+ Use Google's Picker API for intelligent folder structure management.
260+ Implement JWT for access control.
261+
262+ ### ⚠️ AI-Identified Gotchas
263+ - Make sure to have proper error handling for API failures
264+ - Ensure you're not exceeding Google Drive API's rate limits
265+ - Be careful with user's OAuth tokens
266+
267+ ### ✅ AI-Recommended Best Practices
268+ - Encrypt OAuth tokens
269+ - Use Google's recommended best practices for Drive API
270+ - Always validate files before streaming
271+ ```
272+
273+ ### 🛡️ Fallback & Reliability
274+
275+ - ** 30-second timeout** with automatic fallback to template content
276+ - ** Progress feedback** so you always know what's happening
277+ - ** Graceful error handling** ensures project generation never fails
278+ - ** Offline mode** - AI enhancement is always optional
279+
198280## ✨ Features
199281
200282### Core Features
@@ -213,7 +295,9 @@ Need help understanding how each IDE uses its configuration? Check out our detai
213295
214296### Advanced Features
215297
298+ - 🤖 ** AI-Powered PRP Generation** - Intelligent, feature-specific PRPs with OpenAI & Anthropic (NEW in v3.2.8!)
216299- 🔍 ** PRP Integration** - Product Requirement Prompts with validation loops (Claude, Cursor, Windsurf, Cline, Copilot & Gemini)
300+ - 🔐 ** Secure API Key Management** - AES-256-CBC encrypted storage for AI provider keys
217301- ✅ ** Validation System** - Built-in code quality checks and gates
218302- 🛑 ** Human-in-the-Loop Checkpoints** - Pause for verification at critical milestones
219303- 🪝 ** Claude Code Hooks** - PreCompact, ContextRotation, PreSubmit, and PRPTracking hooks
@@ -400,6 +484,12 @@ npm install -g context-forge
400484# Initialize a new project
401485context-forge init
402486
487+ # Initialize with AI-powered PRPs (optional)
488+ context-forge init --ai-prp
489+
490+ # Set up AI provider keys (optional)
491+ context-forge ai-keys
492+
403493# Or use npx without installation
404494npx context-forge init
405495```
@@ -433,6 +523,10 @@ context-forge migrate --target "Next.js"
433523
434524# NEW: Copy Claude Code hooks from another project
435525context-forge copy-hooks --source ../claude-hooks-repo/hooks
526+
527+ # NEW: Set up AI provider keys for enhanced PRP generation
528+ context-forge ai-keys --provider openai
529+ context-forge ai-keys --provider anthropic
436530```
437531
438532## 💡 Usage Examples
@@ -453,6 +547,7 @@ $ context-forge init
453547? Project timeline: standard
454548? Team size: small
455549? Enable PRP generation? Yes
550+ ? Enable AI-powered PRP generation? Yes
456551? Enable validation system? Yes
457552? Enable Human-in-the-Loop checkpoints? Yes
458553? Enable Claude Code hooks? Yes
@@ -470,9 +565,10 @@ Generated files:
470565
471566Next steps:
4725671. cd analytics-dashboard
473- 2. Review CLAUDE.md for project rules
474- 3. Use /prime-context to load project knowledge and activate architect mode
475- 4. Start with Stage 1 in Docs/Implementation.md
568+ 2. Set up AI keys (optional): context-forge ai-keys
569+ 3. Review CLAUDE.md for project rules
570+ 4. Use /prime-context to load project knowledge and activate architect mode
571+ 5. Start with Stage 1 in Docs/Implementation.md
476572```
477573
478574### Example 2: API-Only Microservice
0 commit comments