sync: claim removal fix, auto-crawl email, progress bar, search optimization

- Fix claim removal request flow
- Add email notification on auto-crawl skill discovery
- Add progress bar component
- Optimize Meilisearch sync and search indexing
- Improve skill parser and queries

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
airano
2026-02-22 04:58:01 +03:30
parent b05cb21a65
commit 0713607693
15 changed files with 352 additions and 14 deletions

View File

@@ -0,0 +1,14 @@
'use client';
import { AppProgressBar } from 'next-nprogress-bar';
export function ProgressBar() {
return (
<AppProgressBar
height="3px"
color="#0284c7"
options={{ showSpinner: false }}
shallowRouting
/>
);
}