autoworkflow 3.1.2 → 3.1.3

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.
@@ -49,6 +49,38 @@ Deep code review of a specific feature. Check for:
49
49
  - [ ] No circular dependencies
50
50
  - [ ] Proper separation of concerns
51
51
 
52
+ **Feature Completeness (AI Analysis):**
53
+
54
+ Claude analyzes the code itself to determine what's missing. No BLUEPRINT needed.
55
+
56
+ | If You Find... | Check For... |
57
+ |----------------|--------------|
58
+ | API endpoint | Frontend component that calls it |
59
+ | Form component | Validation, error states, loading state, success feedback |
60
+ | CRUD operations | All 4 operations? Delete confirmation modal? |
61
+ | Auth-protected route | Auth check? Redirect on unauthorized? |
62
+ | Data fetching | Loading skeleton? Error state? Empty state? Retry? |
63
+ | User action | Optimistic UI? Rollback on failure? Toast feedback? |
64
+ | List/table | Pagination? Search/filter? Sort? Empty state? |
65
+ | File upload | Progress indicator? Size/type validation? Error handling? |
66
+ | Modal/dialog | Close on escape? Click outside to close? Focus trap? |
67
+ | Navigation | Active state? Mobile menu? Breadcrumbs where needed? |
68
+
69
+ **Completeness Score:**
70
+ ```
71
+ Feature: [Name]
72
+ ├── Backend: ✅ API exists
73
+ ├── Frontend: ✅ UI calls API
74
+ ├── States: ⚠️ Missing error handling
75
+ ├── UX: ⚠️ No loading indicator
76
+ └── Score: 75% complete
77
+
78
+ Missing for 100%:
79
+ 1. Add error boundary around component
80
+ 2. Add loading skeleton during fetch
81
+ 3. Add empty state for no results
82
+ ```
83
+
52
84
  ### Output Format (Feature Audit):
53
85
  ```
54
86
  ## Audit Report: [Feature Name]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autoworkflow",
3
- "version": "3.1.2",
3
+ "version": "3.1.3",
4
4
  "description": "Automated workflow enforcement for Claude Code via hooks and system prompts",
5
5
  "type": "module",
6
6
  "bin": {