pnpm-catalog-updates 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +27 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -51,8 +51,35 @@ pcu -a
51
51
  pcu workspace
52
52
  # or
53
53
  pcu -s
54
+
55
+ # AI-powered analysis (NEW!)
56
+ pcu ai # Check available AI providers
57
+ pcu update --ai # Update with AI recommendations
58
+ pcu analyze react # Analyze package with AI
59
+ ```
60
+
61
+ ### AI Analysis
62
+
63
+ PCU integrates with AI CLI tools (Gemini, Claude, Codex, Cursor) to provide:
64
+
65
+ - **Impact Analysis**: Understand how updates affect your code
66
+ - **Security Assessment**: AI-powered vulnerability analysis
67
+ - **Breaking Change Detection**: Detect potential compatibility issues
68
+ - **Update Recommendations**: Get intelligent suggestions for safe updates
69
+
70
+ ```bash
71
+ # Check available AI providers
72
+ pcu ai
73
+
74
+ # Update with AI-powered analysis
75
+ pcu update --ai --interactive
76
+
77
+ # Analyze a specific package
78
+ pcu analyze react 19.0.0
54
79
  ```
55
80
 
81
+ **[Complete AI Analysis Documentation](https://pcu-cli.dev/en/ai-analysis)**
82
+
56
83
  ![PCU Showcase](https://github.com/user-attachments/assets/f05a970e-c58c-44f1-b3f1-351ae30b4a35)
57
84
 
58
85
  **[Complete Command Reference & Examples](https://pcu-cli.dev/en/command-reference)**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pnpm-catalog-updates",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "CLI application for pnpm-catalog-updates",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",