{"id":47307431,"url":"https://github.com/hummbl-dev/hummbl-mobile","last_synced_at":"2026-03-17T08:50:02.459Z","repository":{"id":318993786,"uuid":"1077201472","full_name":"hummbl-dev/hummbl-mobile","owner":"hummbl-dev","description":"HUMMBL Mobile - Mental Models for Better Thinking (Expo/React Native)","archived":false,"fork":false,"pushed_at":"2026-02-13T17:24:52.000Z","size":2285,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-14T01:20:20.449Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://hummbl.io","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hummbl-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":"governance/CAES_CANONICAL.sha256","roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-15T23:34:02.000Z","updated_at":"2026-02-13T17:24:55.000Z","dependencies_parsed_at":"2025-10-17T16:37:47.101Z","dependency_job_id":"6291a40b-ec08-4db2-ac5d-326f27cd5196","html_url":"https://github.com/hummbl-dev/hummbl-mobile","commit_stats":null,"previous_names":["hummbl-dev/hummbl-io","hummbl-dev/hummbl-mobile"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/hummbl-dev/hummbl-mobile","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummbl-dev%2Fhummbl-mobile","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummbl-dev%2Fhummbl-mobile/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummbl-dev%2Fhummbl-mobile/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummbl-dev%2Fhummbl-mobile/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hummbl-dev","download_url":"https://codeload.github.com/hummbl-dev/hummbl-mobile/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummbl-dev%2Fhummbl-mobile/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30619228,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T08:10:05.930Z","status":"ssl_error","status_checked_at":"2026-03-17T08:10:04.972Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-03-17T08:50:01.776Z","updated_at":"2026-03-17T08:50:02.437Z","avatar_url":"https://github.com/hummbl-dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HUMMBL Mobile\n\nMobile application for HUMMBL - Mental Models for Better Thinking.\n\nBuilt with Expo SDK 50 and React Native, leveraging Base120 mental model transformations for structured thinking frameworks.\n\n## Structure\n\n```\nhummbl-mobile/\n├── mobile/          # Expo mobile app\n│   ├── app/         # Expo Router screens\n│   │   ├── (tabs)/  # Tab navigation\n│   │   ├── mental-models/  # Model detail screens\n│   │   └── narratives/     # Narrative detail screens\n│   └── theme/       # Design system\n├── shared/          # Platform-agnostic code\n│   ├── src/types/   # TypeScript interfaces\n│   ├── src/stores/  # Zustand state management\n│   ├── src/hooks/   # React hooks\n│   └── src/utils/   # Utilities (fuzzy search, etc.)\n└── package.json     # Monorepo root\n```\n\n## Quick Start\n\n```bash\n# Install dependencies\npnpm install\n\n# Start development\npnpm dev\n\n# Build shared types\npnpm build:shared\n\n# Run linting\npnpm lint\n\n# Type checking\npnpm typecheck\n```\n\n## Features\n\n- **Mental Models** - Browse 120 mental models organized by transformation type\n- **Narratives** - Evidence-based thinking frameworks with citations\n- **Search** - Fuzzy search across all content\n- **Bookmarks** - Save and organize favorites\n- **Offline Support** - Zustand persistence with AsyncStorage\n\n## Base120 Transformations\n\nSix transformation domains, 20 models each:\n\n| Code | Domain | Focus |\n|------|--------|-------|\n| P | Perspective | Reframing viewpoints |\n| IN | Inversion | Thinking backwards |\n| CO | Composition | Building up from parts |\n| DE | Decomposition | Breaking down complexity |\n| RE | Recursion | Patterns at multiple levels |\n| SY | Systems | Interconnections and feedback |\n\n## Tech Stack\n\n- **Expo SDK 50** - Cross-platform mobile development\n- **React Native 0.73** - Native mobile UI\n- **Expo Router** - File-based navigation\n- **Zustand** - Lightweight state management\n- **TypeScript** - Type safety throughout\n\n## Development\n\n### Prerequisites\n\n- Node.js 20+\n- pnpm 9+\n- Expo Go app (for device testing)\n\n### Workspace Commands\n\n```bash\n# Mobile app\npnpm --filter @hummbl/mobile \u003ccommand\u003e\n\n# Shared package\npnpm --filter @hummbl/shared \u003ccommand\u003e\n\n# All packages\npnpm -r \u003ccommand\u003e\n```\n\n## License\n\nProprietary - HUMMBL\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhummbl-dev%2Fhummbl-mobile","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhummbl-dev%2Fhummbl-mobile","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhummbl-dev%2Fhummbl-mobile/lists"}