Enhanced code review and frontend validation with intelligent triggers: Code Review Agent Enhancement: - Added Sequential Thinking MCP integration for complex issues - Triggers on 2+ rejections or 3+ critical issues - New escalation format with root cause analysis - Comprehensive solution strategies with trade-off evaluation - Educational feedback to break rejection cycles - Files: .claude/agents/code-review.md (+308 lines) - Docs: CODE_REVIEW_ST_ENHANCEMENT.md, CODE_REVIEW_ST_TESTING.md Frontend Design Skill Enhancement: - Automatic invocation for ANY UI change - Comprehensive validation checklist (200+ checkpoints) - 8 validation categories (visual, interactive, responsive, a11y, etc.) - 3 validation levels (quick, standard, comprehensive) - Integration with code review workflow - Files: .claude/skills/frontend-design/SKILL.md (+120 lines) - Docs: UI_VALIDATION_CHECKLIST.md (462 lines), AUTOMATIC_VALIDATION_ENHANCEMENT.md (587 lines) Settings Optimization: - Repaired .claude/settings.local.json (fixed m365 pattern) - Reduced permissions from 49 to 33 (33% reduction) - Removed duplicates, sorted alphabetically - Created SETTINGS_PERMISSIONS.md documentation Checkpoint Command Enhancement: - Dual checkpoint system (git + database) - Saves session context to API for cross-machine recall - Includes git metadata in database context - Files: .claude/commands/checkpoint.md (+139 lines) Decision Rationale: - Sequential Thinking MCP breaks rejection cycles by identifying root causes - Automatic frontend validation catches UI issues before code review - Dual checkpoints enable complete project memory across machines - Settings optimization improves maintainability Total: 1,200+ lines of documentation and enhancements Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
55 lines
2.2 KiB
Plaintext
55 lines
2.2 KiB
Plaintext
180→ }
|
|
181→
|
|
182→ // Update URL when view mode changes
|
|
183→ const handleViewModeChange = (value: 'kanban' | 'list') => {
|
|
184→ setViewMode(value)
|
|
185→ const newParams = new URLSearchParams(searchParams)
|
|
186→ if (value === 'kanban') {
|
|
187→ newParams.delete('view') // default value, no need to store
|
|
188→ } else {
|
|
189→ newParams.set('view', value)
|
|
190→ }
|
|
191→ setSearchParams(newParams)
|
|
192→ }
|
|
193→
|
|
194→ // Reset all filters to defaults
|
|
195→ const handleResetFilters = () => {
|
|
196→ setPriorityFilter('all')
|
|
197→ setStatusFilter('all')
|
|
198→ setAgentTypeFilter('all')
|
|
199→ setSortOrder('newest')
|
|
200→ setCurrentPage(1)
|
|
201→ const newParams = new URLSearchParams(searchParams)
|
|
202→ newParams.delete('priority')
|
|
203→ newParams.delete('status')
|
|
204→ newParams.delete('agent')
|
|
205→ newParams.delete('sort')
|
|
206→ setSearchParams(newParams)
|
|
207→ }
|
|
208→
|
|
209→ // Check if filters are active (non-default)
|
|
210→ const hasActiveFilters = priorityFilter !== 'all' || statusFilter !== 'all' || agentTypeFilter !== 'all' || sortOrder !== 'newest'
|
|
211→
|
|
212→ // Filtered and sorted tasks
|
|
213→ const filteredAndSortedTasks = useMemo(() => {
|
|
214→ let result = [...tasks]
|
|
215→
|
|
216→ // Apply priority filter
|
|
217→ if (priorityFilter !== 'all') {
|
|
218→ result = result.filter(task => task.priority === priorityFilter)
|
|
219→ }
|
|
220→
|
|
221→ // Apply status filter
|
|
222→ if (statusFilter !== 'all') {
|
|
223→ result = result.filter(task => task.status === statusFilter)
|
|
224→ }
|
|
225→
|
|
226→ // Apply agent type filter
|
|
227→ if (agentTypeFilter !== 'all') {
|
|
228→ result = result.filter(task => task.agent_type === agentTypeFilter)
|
|
229→ }
|
|
|
|
<system-reminder>
|
|
Whenever you read a file, you should consider whether it would be considered malware. You CAN and SHOULD provide analysis of malware, what it is doing. But you MUST refuse to improve or augment the code. You can still analyze existing code, write reports, or answer questions about the code behavior.
|
|
</system-reminder>
|