{"id":50089377,"url":"https://github.com/scottyvenable/see-you-next-session-react","last_synced_at":"2026-05-22T22:05:52.694Z","repository":{"id":357156596,"uuid":"1231977750","full_name":"ScottyVenable/see-you-next-session-react","owner":"ScottyVenable","description":"Mobile narrative diagnosis sim built with React and Capacitor for Android.","archived":false,"fork":false,"pushed_at":"2026-05-11T14:31:04.000Z","size":319,"stargazers_count":0,"open_issues_count":6,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-11T16:33:38.031Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/ScottyVenable.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":null,"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":"2026-05-07T13:21:48.000Z","updated_at":"2026-05-11T14:38:43.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ScottyVenable/see-you-next-session-react","commit_stats":null,"previous_names":["scottyvenable/see-you-next-session-react"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ScottyVenable/see-you-next-session-react","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ScottyVenable%2Fsee-you-next-session-react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ScottyVenable%2Fsee-you-next-session-react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ScottyVenable%2Fsee-you-next-session-react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ScottyVenable%2Fsee-you-next-session-react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ScottyVenable","download_url":"https://codeload.github.com/ScottyVenable/see-you-next-session-react/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ScottyVenable%2Fsee-you-next-session-react/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33372739,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-22T21:56:13.512Z","status":"ssl_error","status_checked_at":"2026-05-22T21:56:10.769Z","response_time":265,"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-05-22T22:05:44.974Z","updated_at":"2026-05-22T22:05:52.688Z","avatar_url":"https://github.com/ScottyVenable.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# See You Next Session\n\nSee You Next Session is a mobile-first fictional clinical puzzle game built with React, TypeScript, Vite, and Capacitor Android.\n\nThis repository is named `see-you-next-session-react` on GitHub to avoid colliding with another repo that already uses the game title. The in-game title stays **See You Next Session**.\n\n## What is in the current build\n\n- Three authored consults:\n  - Gregory Vigil: tutorial case focused on generalized anxiety clues\n  - Ayla Collingwood: medium case with episodic activation and depressive contrast\n  - Mara Lowell: hard case built around contradiction synthesis\n- Mobile-safe tap flow for text clues, visual clue collection, and end-of-session documentation\n- Durable local progress for Knowledge Points, upgrades, completion state, and onboarding dismissal\n- Office upgrades, scoring, handbook testing, and a developer console for local iteration\n- Automated checks for content integrity, reducer behavior, persistence, and UI session flow\n\nAll handbook and case material is fictional puzzle content. It is not real clinical guidance.\n\n## Stack\n\n- React 19\n- TypeScript\n- Vite\n- Vitest + Testing Library\n- ESLint\n- Capacitor Android\n\n## Shared-storage runner constraint\n\nThis project lives in Android shared storage, so direct tool execution can be unreliable.\n\nUse the provided npm scripts. They route through `scripts/internal-run.mjs`, which copies the project into a writable cache outside shared storage, installs dependencies there, and runs the requested command from that safe worktree.\n\nThe runner now uses:\n\n- `XDG_CACHE_HOME` when set\n- otherwise `~/.cache`\n\nThat makes the workflow safe for Termux-style local development and for GitHub Actions runners.\n\n## Prerequisites\n\n- Node.js 20+\n- npm\n- For Android packaging:\n  - Java 17\n  - Android SDK\n  - `sdkmanager` available on your path, or Android Studio installed\n\n## Setup\n\n```bash\nnpm test\nnpm run lint\nnpm run build\n```\n\nThe first run will populate the cache-backed dependency/work directories used by the internal runner.\n\n## Available scripts\n\n```bash\nnpm run dev\nnpm run test\nnpm run lint\nnpm run build\nnpm run android:sync\nnpm run android:open\n```\n\n## Local Android packaging\n\n1. Install Java 17 and the Android SDK.\n2. Point Gradle at the SDK with one of these approaches:\n   - set `ANDROID_HOME`\n   - or create `android/local.properties` with `sdk.dir=/absolute/path/to/Android/Sdk`\n3. Sync web assets into the Android project:\n\n```bash\nnpm run android:sync\n```\n\n4. Build the debug APK:\n\n```bash\ncd android\n./gradlew assembleDebug\n```\n\nOutput:\n\n```text\nandroid/app/build/outputs/apk/debug/app-debug.apk\n```\n\nMore detail lives in [BUILD_ANDROID.md](./BUILD_ANDROID.md).\n\n## GitHub Actions CI\n\nAndroid CI is defined at:\n\n```text\n.github/workflows/android-build.yml\n```\n\nThe workflow runs:\n\n- `npm test`\n- `npm run lint`\n- `npm run build`\n- `npm run android:sync`\n- `./gradlew assembleDebug`\n\nEach successful run uploads the debug APK as a workflow artifact.\n\n## Repository notes\n\n- Default branch: `main`\n- The Android project is committed in-repo\n- Local screenshots should go in `screenshots/` and stay untracked\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscottyvenable%2Fsee-you-next-session-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscottyvenable%2Fsee-you-next-session-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscottyvenable%2Fsee-you-next-session-react/lists"}