Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
7704aed
docs: add wildlife re-ID feasibility analysis, embedding pack spec, a…
JasonWildMe Feb 28, 2026
2123e3f
docs: add wildlife re-ID implementation plan
JasonWildMe Feb 28, 2026
5decabb
feat: add wildlife re-ID type definitions
JasonWildMe Feb 28, 2026
5218351
chore: install onnxruntime-react-native
JasonWildMe Feb 28, 2026
97450e8
feat: add wildlife re-ID core services (ONNX inference, embedding mat…
JasonWildMe Feb 28, 2026
5127caa
fix: pre-commit hook should only run Jest for JS/TS staged files
JasonWildMe Feb 28, 2026
79a14bf
feat: add detection preprocessing and YOLO postprocessing
JasonWildMe Feb 28, 2026
5a9d0d3
feat: add wildlife Zustand store for packs, observations, and local i…
JasonWildMe Feb 28, 2026
68f5729
feat: add wildlife pipeline service orchestrating detect → embed → match
JasonWildMe Feb 28, 2026
5156f15
fix: align GPS accuracy type and increase test timeout to prevent fla…
JasonWildMe Mar 1, 2026
4ba27aa
feat: add wildlife navigation structure with placeholder screens
JasonWildMe Mar 1, 2026
461aa37
feat: implement packs screen with pack listing and navigation
JasonWildMe Mar 1, 2026
a40f57b
feat: implement capture screen with camera/gallery photo selection
JasonWildMe Mar 1, 2026
ba1a463
feat: implement detection results screen with bounding box overlays
JasonWildMe Mar 1, 2026
0fdc73c
feat: implement match review screen with candidate comparison
JasonWildMe Mar 1, 2026
f8eda78
feat: implement observations screen with filtering and observation list
JasonWildMe Mar 1, 2026
270b297
feat: implement wildlife home dashboard with packs summary and recent…
JasonWildMe Mar 1, 2026
86d43ab
feat: implement sync screen stub with queue display and retry
JasonWildMe Mar 1, 2026
aaa5ba5
feat: wire capture flow with device info and GPS stub
JasonWildMe Mar 1, 2026
a5833b2
feat: wire match review to create local individuals on no-match
JasonWildMe Mar 1, 2026
a79706b
feat: accumulate embeddings on local individual re-sighting approval
JasonWildMe Mar 1, 2026
9ec47c5
feat: build merged embedding database from packs and local individuals
JasonWildMe Mar 1, 2026
442e1d2
feat: initialize pack manager and wildlife store on app startup
JasonWildMe Mar 1, 2026
28f0b57
test: add integration test for full wildlife pipeline flow
JasonWildMe Mar 1, 2026
c6a5a02
test: add integration test for pack manifest, index, and embedding lo…
JasonWildMe Mar 1, 2026
a63d662
chore: strip unused Off Grid modules (LLM, image gen, voice, tools, c…
JasonWildMe Mar 1, 2026
6796019
fix: address code review findings (theme colors, detector config, gps…
JasonWildMe Mar 1, 2026
642bbe8
fix: register missing routes and add PackDetailScreen
JasonWildMe Mar 1, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [ -n "$STAGED_JS" ]; then
npx tsc --noEmit

echo "▶ JS/TS tests..."
npm test
npx jest --coverage --forceExit --maxWorkers=50%
fi

# ── Swift / iOS ────────────────────────────────────────────────────────────────
Expand Down
Loading