recruiter: add boss auto browse/chat flows, webhook, and candidate tables

- Add recruiter-side automation core and run-core entry
- Extend sqlite-plugin with candidate info + contact logs
- Add UI routes/pages, IPC handlers, progress + log panel
- Document current status and plans under plan/

Made-with: Cursor
This commit is contained in:
rqi14
2026-03-18 17:37:24 +08:00
parent 4048e3b323
commit 95c1e54c66
73 changed files with 15053 additions and 89 deletions
+4 -2
View File
@@ -4,6 +4,8 @@ export function sleep (t) {
})
}
export function sleepWithRandomDelay (base) {
return sleep(base + Math.random()*1000)
export function sleepWithRandomDelay (min, max) {
const lo = min ?? 0
const hi = max ?? (lo + 1000)
return sleep(lo + Math.random() * (hi - lo))
}