You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add repository analysis and one-click PR creation flow
- Add repository URL input section with GitHub URL validation
- Implement full analysis flow calling /v1/rules/recommend API
- Display personalized rule recommendations with confidence scores
- Show PR plan details (branch, base, commit message)
- Add 'Proceed with PR' button for automated PR creation
- Include download and copy functionality for rules.yaml
- Add comprehensive error handling and loading states
- Implement responsive design for mobile compatibility
- Use mock data for testing until backend is ready
Copy file name to clipboardExpand all lines: index.html
+116-2Lines changed: 116 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -80,10 +80,124 @@ <h1 class="title">
80
80
<mainclass="main">
81
81
<!-- Floating Decorative Elements (generated by script) -->
82
82
<divclass="floating-decorations"></div>
83
-
83
+
84
+
<!-- Repository Analysis Section -->
85
+
<divclass="card main-card">
86
+
<divclass="card-content">
87
+
<h2class="section-title">Analyze your repository</h2>
88
+
<pclass="section-description">
89
+
Paste your GitHub repository URL and get personalized Watchflow rule recommendations based on your repository's patterns, contributing guidelines, and history.
0 commit comments