Detects when user changes same config setting 3+ times within 24 hours. Shows non-intrusive prompt offering help with guided calibration flow. Guided calibration features: - Test for false positives (walk around room) - Test for missed motion (sit still) - Suggest optimal value based on diurnal baseline SNR and link health - Apply suggested value button Files: - dashboard/js/proactive.js: Complete implementation with localStorage tracking Acceptance: - Help prompt fires after 3+ changes in 24h - Calibration flow tests both directions - Suggests value based on system data - Apply button works
34 lines
659 B
JSON
Executable file
34 lines
659 B
JSON
Executable file
{
|
|
"name": "sisteransi",
|
|
"version": "1.0.5",
|
|
"description": "ANSI escape codes for some terminal swag",
|
|
"main": "src/index.js",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Terkel Gjervig",
|
|
"email": "terkel@terkel.com",
|
|
"url": "https://terkel.com"
|
|
},
|
|
"scripts": {
|
|
"test": "tape test/*.js | tap-spec"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/terkelg/sisteransi"
|
|
},
|
|
"files": [
|
|
"src"
|
|
],
|
|
"types": "./src/sisteransi.d.ts",
|
|
"keywords": [
|
|
"ansi",
|
|
"escape codes",
|
|
"escape",
|
|
"terminal",
|
|
"style"
|
|
],
|
|
"devDependencies": {
|
|
"tap-spec": "^5.0.0",
|
|
"tape": "^4.13.2"
|
|
}
|
|
}
|