├── .gitignore ├── .gitmodules ├── Discord-with-flowise ├── README.md ├── main.py └── pdf-search-bot Chatflow.json ├── README.md ├── app ├── .env ├── Dockerfile ├── README.md ├── agents │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── chat_interface_agent.cpython-310.pyc │ │ └── time_agent.cpython-310.pyc │ ├── chat_interface_agent.py │ ├── survey_analysis_agent.py │ └── time_agent.py ├── api_routes │ ├── __init__.py │ ├── chat_interface_endpoint.py │ ├── survey_endpoint.py │ └── task_tracking_endpoint.py ├── config │ ├── __init__.py │ └── config.py ├── docker-compose.yml ├── main.py ├── requirements.txt ├── templates │ ├── sensei_prompt.txt │ └── survey_analysis.txt └── tests │ ├── __pycache__ │ ├── test_chat_interface_agent.cpython-310-pytest-7.4.0.pyc │ ├── test_survey_analysis_agent.cpython-310-pytest-7.4.0.pyc │ └── test_time_agent.cpython-310-pytest-7.4.0.pyc │ ├── test_chat_interface_agent.py │ ├── test_survey_analysis_agent.py │ └── test_time_agent.py ├── expo-react-native-app ├── .gitignore ├── App.js ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── bg.svg │ ├── exchange.svg │ ├── favicon.png │ ├── icon.png │ ├── logo.svg │ └── splash.png ├── babel.config.js ├── components │ └── Input │ │ └── index.js ├── eas.json ├── hooks │ └── keyboard.js ├── package-lock.json ├── package.json ├── patches │ └── react-native+0.72.3.patch └── screens │ ├── Achieve │ ├── bg.js │ ├── card │ │ └── index.js │ ├── index.js │ ├── inspirational-quotes-master │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ └── config.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── data │ │ │ ├── data.json │ │ │ └── quotes.json │ │ ├── examples │ │ │ └── index.js │ │ ├── lib │ │ │ └── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── test │ │ │ └── test.js │ ├── logo.js │ └── styles.js │ ├── Chat │ ├── bg.js │ ├── box │ │ └── index.js │ ├── index.js │ ├── logo.js │ └── styles.js │ ├── Dashboard │ ├── bg.js │ ├── card │ │ └── index.js │ ├── index.js │ ├── logo.js │ ├── mission │ │ └── index.js │ └── styles.js │ ├── LoginRegister │ ├── PasswordField │ │ └── index.js │ ├── bg.js │ ├── index.js │ ├── logo.js │ └── styles.js │ ├── Main │ ├── exchange.js │ ├── index.js │ ├── styles.js │ └── test.js │ ├── Survey │ ├── bg.js │ ├── carousel │ │ └── index.js │ ├── index.js │ ├── logo.js │ ├── longRoad.js │ ├── shortRoad.js │ └── styles.js │ ├── context │ ├── Provider.js │ └── ThemeContext.js │ └── metro.config.js ├── final product └── ikigAI.apk ├── ikigai-backend ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Helpers │ │ ├── logs.php │ │ ├── requests.php │ │ └── resources.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Api │ │ │ │ ├── AuthController.php │ │ │ │ ├── ChatController.php │ │ │ │ ├── GoalsController.php │ │ │ │ ├── SurveyController.php │ │ │ │ ├── TasksController.php │ │ │ │ └── UserProfileController.php │ │ │ └── Controller.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── EncryptCookies.php │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── RequestInterface.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustHosts.php │ │ │ ├── TrustProxies.php │ │ │ ├── ValidateSignature.php │ │ │ └── VerifyCsrfToken.php │ ├── Models │ │ ├── BaseModel.php │ │ ├── ChatMessage.php │ │ ├── Goal.php │ │ ├── Survey.php │ │ ├── Task.php │ │ └── User.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ ├── LoadHelpersProvider.php │ │ └── RouteServiceProvider.php │ ├── Services │ │ ├── AgentServiceRequest.php │ │ ├── ApiResponse.php │ │ ├── TasksService.php │ │ ├── TasksStatistics.php │ │ └── ValidationService.php │ └── Trait │ │ └── Singleton.php ├── artisan ├── bootstrap │ ├── app.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── ai_agent.php │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── cors.php │ ├── database.php │ ├── filesystems.php │ ├── hashing.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── sanctum.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ │ ├── 2023_08_19_002239_create_tasks_table.php │ │ ├── 2023_08_19_112705_create_surveys_table.php │ │ ├── 2023_08_19_183939_create_goals_table.php │ │ └── 2023_08_20_145924_create_chat_messages_table.php │ └── seeders │ │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── images │ │ ├── logo.png │ │ └── text_logo.png │ ├── index.php │ └── robots.txt ├── resources │ ├── css │ │ └── app.css │ ├── js │ │ ├── app.js │ │ └── bootstrap.js │ └── views │ │ └── welcome.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ ├── .gitignore │ │ │ └── data │ │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php └── vite.config.js ├── landingpage ├── v1css └── v1html ├── prompts ├── agent_techspec_v3 ├── agents.md ├── agents_techspec_v2 ├── agents_techspec_v3 ├── auto-ikigAI ├── backend.md ├── backend_techspec_v2 ├── landingpage.md ├── landingpage_v2 └── tech_spec_prompt └── techspec_prompts ├── ChatAgent (Sensei) ├── TaskAgent ├── Zack_Survey_Prompt ├── agent_techspec_v4 └── survey_analize.md /.gitignore: -------------------------------------------------------------------------------- 1 | .aider* 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Discord-with-flowise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/Discord-with-flowise/README.md -------------------------------------------------------------------------------- /Discord-with-flowise/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/Discord-with-flowise/main.py -------------------------------------------------------------------------------- /Discord-with-flowise/pdf-search-bot Chatflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/Discord-with-flowise/pdf-search-bot Chatflow.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/README.md -------------------------------------------------------------------------------- /app/.env: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=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 2 | CHROMADB_URI=http://db:8000 3 | FLASK_APP=main.py 4 | -------------------------------------------------------------------------------- /app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/Dockerfile -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/README.md -------------------------------------------------------------------------------- /app/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/agents/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/agents/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /app/agents/__pycache__/chat_interface_agent.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/agents/__pycache__/chat_interface_agent.cpython-310.pyc -------------------------------------------------------------------------------- /app/agents/__pycache__/time_agent.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/agents/__pycache__/time_agent.cpython-310.pyc -------------------------------------------------------------------------------- /app/agents/chat_interface_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/agents/chat_interface_agent.py -------------------------------------------------------------------------------- /app/agents/survey_analysis_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/agents/survey_analysis_agent.py -------------------------------------------------------------------------------- /app/agents/time_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/agents/time_agent.py -------------------------------------------------------------------------------- /app/api_routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/api_routes/chat_interface_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/api_routes/chat_interface_endpoint.py -------------------------------------------------------------------------------- /app/api_routes/survey_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/api_routes/survey_endpoint.py -------------------------------------------------------------------------------- /app/api_routes/task_tracking_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/api_routes/task_tracking_endpoint.py -------------------------------------------------------------------------------- /app/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/config/config.py -------------------------------------------------------------------------------- /app/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/docker-compose.yml -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/main.py -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/requirements.txt -------------------------------------------------------------------------------- /app/templates/sensei_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/templates/sensei_prompt.txt -------------------------------------------------------------------------------- /app/templates/survey_analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/templates/survey_analysis.txt -------------------------------------------------------------------------------- /app/tests/__pycache__/test_chat_interface_agent.cpython-310-pytest-7.4.0.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/tests/__pycache__/test_chat_interface_agent.cpython-310-pytest-7.4.0.pyc -------------------------------------------------------------------------------- /app/tests/__pycache__/test_survey_analysis_agent.cpython-310-pytest-7.4.0.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/tests/__pycache__/test_survey_analysis_agent.cpython-310-pytest-7.4.0.pyc -------------------------------------------------------------------------------- /app/tests/__pycache__/test_time_agent.cpython-310-pytest-7.4.0.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/tests/__pycache__/test_time_agent.cpython-310-pytest-7.4.0.pyc -------------------------------------------------------------------------------- /app/tests/test_chat_interface_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/tests/test_chat_interface_agent.py -------------------------------------------------------------------------------- /app/tests/test_survey_analysis_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/tests/test_survey_analysis_agent.py -------------------------------------------------------------------------------- /app/tests/test_time_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/app/tests/test_time_agent.py -------------------------------------------------------------------------------- /expo-react-native-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/.gitignore -------------------------------------------------------------------------------- /expo-react-native-app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/App.js -------------------------------------------------------------------------------- /expo-react-native-app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/app.json -------------------------------------------------------------------------------- /expo-react-native-app/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/assets/adaptive-icon.png -------------------------------------------------------------------------------- /expo-react-native-app/assets/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/assets/bg.svg -------------------------------------------------------------------------------- /expo-react-native-app/assets/exchange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/assets/exchange.svg -------------------------------------------------------------------------------- /expo-react-native-app/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/assets/favicon.png -------------------------------------------------------------------------------- /expo-react-native-app/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/assets/icon.png -------------------------------------------------------------------------------- /expo-react-native-app/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/assets/logo.svg -------------------------------------------------------------------------------- /expo-react-native-app/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/assets/splash.png -------------------------------------------------------------------------------- /expo-react-native-app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/babel.config.js -------------------------------------------------------------------------------- /expo-react-native-app/components/Input/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /expo-react-native-app/eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/eas.json -------------------------------------------------------------------------------- /expo-react-native-app/hooks/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/hooks/keyboard.js -------------------------------------------------------------------------------- /expo-react-native-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/package-lock.json -------------------------------------------------------------------------------- /expo-react-native-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/package.json -------------------------------------------------------------------------------- /expo-react-native-app/patches/react-native+0.72.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/patches/react-native+0.72.3.patch -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/bg.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/card/index.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/index.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/inspirational-quotes-master/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/inspirational-quotes-master/.eslintignore -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/inspirational-quotes-master/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/inspirational-quotes-master/.eslintrc.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/inspirational-quotes-master/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/inspirational-quotes-master/.github/FUNDING.yml -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/inspirational-quotes-master/.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/inspirational-quotes-master/.github/config.yml -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/inspirational-quotes-master/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/inspirational-quotes-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/inspirational-quotes-master/LICENSE -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/inspirational-quotes-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/inspirational-quotes-master/README.md -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/inspirational-quotes-master/data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/inspirational-quotes-master/data/data.json -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/inspirational-quotes-master/data/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/inspirational-quotes-master/data/quotes.json -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/inspirational-quotes-master/examples/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/inspirational-quotes-master/examples/index.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/inspirational-quotes-master/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/inspirational-quotes-master/lib/index.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/inspirational-quotes-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/inspirational-quotes-master/package-lock.json -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/inspirational-quotes-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/inspirational-quotes-master/package.json -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/inspirational-quotes-master/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/inspirational-quotes-master/test/test.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/logo.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Achieve/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Achieve/styles.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Chat/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Chat/bg.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Chat/box/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Chat/box/index.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Chat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Chat/index.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Chat/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Chat/logo.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Chat/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Chat/styles.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Dashboard/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Dashboard/bg.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Dashboard/card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Dashboard/card/index.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Dashboard/index.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Dashboard/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Dashboard/logo.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Dashboard/mission/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Dashboard/mission/index.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Dashboard/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Dashboard/styles.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/LoginRegister/PasswordField/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/LoginRegister/PasswordField/index.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/LoginRegister/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/LoginRegister/bg.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/LoginRegister/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/LoginRegister/index.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/LoginRegister/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/LoginRegister/logo.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/LoginRegister/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/LoginRegister/styles.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Main/exchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Main/exchange.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Main/index.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Main/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Main/styles.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Main/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Main/test.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Survey/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Survey/bg.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Survey/carousel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Survey/carousel/index.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Survey/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Survey/index.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Survey/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Survey/logo.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Survey/longRoad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Survey/longRoad.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Survey/shortRoad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Survey/shortRoad.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/Survey/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/Survey/styles.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/context/Provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/context/Provider.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/context/ThemeContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/context/ThemeContext.js -------------------------------------------------------------------------------- /expo-react-native-app/screens/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/expo-react-native-app/screens/metro.config.js -------------------------------------------------------------------------------- /final product/ikigAI.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/final product/ikigAI.apk -------------------------------------------------------------------------------- /ikigai-backend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/.editorconfig -------------------------------------------------------------------------------- /ikigai-backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/.env.example -------------------------------------------------------------------------------- /ikigai-backend/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/.gitattributes -------------------------------------------------------------------------------- /ikigai-backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/.gitignore -------------------------------------------------------------------------------- /ikigai-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/README.md -------------------------------------------------------------------------------- /ikigai-backend/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Console/Kernel.php -------------------------------------------------------------------------------- /ikigai-backend/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /ikigai-backend/app/Helpers/logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Helpers/logs.php -------------------------------------------------------------------------------- /ikigai-backend/app/Helpers/requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Helpers/requests.php -------------------------------------------------------------------------------- /ikigai-backend/app/Helpers/resources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Helpers/resources.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Controllers/Api/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Controllers/Api/AuthController.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Controllers/Api/ChatController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Controllers/Api/ChatController.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Controllers/Api/GoalsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Controllers/Api/GoalsController.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Controllers/Api/SurveyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Controllers/Api/SurveyController.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Controllers/Api/TasksController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Controllers/Api/TasksController.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Controllers/Api/UserProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Controllers/Api/UserProfileController.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Kernel.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Middleware/RequestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Middleware/RequestInterface.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /ikigai-backend/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /ikigai-backend/app/Models/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Models/BaseModel.php -------------------------------------------------------------------------------- /ikigai-backend/app/Models/ChatMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Models/ChatMessage.php -------------------------------------------------------------------------------- /ikigai-backend/app/Models/Goal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Models/Goal.php -------------------------------------------------------------------------------- /ikigai-backend/app/Models/Survey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Models/Survey.php -------------------------------------------------------------------------------- /ikigai-backend/app/Models/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Models/Task.php -------------------------------------------------------------------------------- /ikigai-backend/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Models/User.php -------------------------------------------------------------------------------- /ikigai-backend/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /ikigai-backend/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /ikigai-backend/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /ikigai-backend/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /ikigai-backend/app/Providers/LoadHelpersProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Providers/LoadHelpersProvider.php -------------------------------------------------------------------------------- /ikigai-backend/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /ikigai-backend/app/Services/AgentServiceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Services/AgentServiceRequest.php -------------------------------------------------------------------------------- /ikigai-backend/app/Services/ApiResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Services/ApiResponse.php -------------------------------------------------------------------------------- /ikigai-backend/app/Services/TasksService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Services/TasksService.php -------------------------------------------------------------------------------- /ikigai-backend/app/Services/TasksStatistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Services/TasksStatistics.php -------------------------------------------------------------------------------- /ikigai-backend/app/Services/ValidationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Services/ValidationService.php -------------------------------------------------------------------------------- /ikigai-backend/app/Trait/Singleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/app/Trait/Singleton.php -------------------------------------------------------------------------------- /ikigai-backend/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/artisan -------------------------------------------------------------------------------- /ikigai-backend/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/bootstrap/app.php -------------------------------------------------------------------------------- /ikigai-backend/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ikigai-backend/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/composer.json -------------------------------------------------------------------------------- /ikigai-backend/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/composer.lock -------------------------------------------------------------------------------- /ikigai-backend/config/ai_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/ai_agent.php -------------------------------------------------------------------------------- /ikigai-backend/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/app.php -------------------------------------------------------------------------------- /ikigai-backend/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/auth.php -------------------------------------------------------------------------------- /ikigai-backend/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/broadcasting.php -------------------------------------------------------------------------------- /ikigai-backend/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/cache.php -------------------------------------------------------------------------------- /ikigai-backend/config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/cors.php -------------------------------------------------------------------------------- /ikigai-backend/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/database.php -------------------------------------------------------------------------------- /ikigai-backend/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/filesystems.php -------------------------------------------------------------------------------- /ikigai-backend/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/hashing.php -------------------------------------------------------------------------------- /ikigai-backend/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/logging.php -------------------------------------------------------------------------------- /ikigai-backend/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/mail.php -------------------------------------------------------------------------------- /ikigai-backend/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/queue.php -------------------------------------------------------------------------------- /ikigai-backend/config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/sanctum.php -------------------------------------------------------------------------------- /ikigai-backend/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/services.php -------------------------------------------------------------------------------- /ikigai-backend/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/session.php -------------------------------------------------------------------------------- /ikigai-backend/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/config/view.php -------------------------------------------------------------------------------- /ikigai-backend/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /ikigai-backend/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/database/factories/UserFactory.php -------------------------------------------------------------------------------- /ikigai-backend/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /ikigai-backend/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php -------------------------------------------------------------------------------- /ikigai-backend/database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /ikigai-backend/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /ikigai-backend/database/migrations/2023_08_19_002239_create_tasks_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/database/migrations/2023_08_19_002239_create_tasks_table.php -------------------------------------------------------------------------------- /ikigai-backend/database/migrations/2023_08_19_112705_create_surveys_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/database/migrations/2023_08_19_112705_create_surveys_table.php -------------------------------------------------------------------------------- /ikigai-backend/database/migrations/2023_08_19_183939_create_goals_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/database/migrations/2023_08_19_183939_create_goals_table.php -------------------------------------------------------------------------------- /ikigai-backend/database/migrations/2023_08_20_145924_create_chat_messages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/database/migrations/2023_08_20_145924_create_chat_messages_table.php -------------------------------------------------------------------------------- /ikigai-backend/database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /ikigai-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/package.json -------------------------------------------------------------------------------- /ikigai-backend/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/phpunit.xml -------------------------------------------------------------------------------- /ikigai-backend/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/public/.htaccess -------------------------------------------------------------------------------- /ikigai-backend/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ikigai-backend/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/public/images/logo.png -------------------------------------------------------------------------------- /ikigai-backend/public/images/text_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/public/images/text_logo.png -------------------------------------------------------------------------------- /ikigai-backend/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/public/index.php -------------------------------------------------------------------------------- /ikigai-backend/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /ikigai-backend/resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ikigai-backend/resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /ikigai-backend/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/resources/js/bootstrap.js -------------------------------------------------------------------------------- /ikigai-backend/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /ikigai-backend/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/routes/api.php -------------------------------------------------------------------------------- /ikigai-backend/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/routes/channels.php -------------------------------------------------------------------------------- /ikigai-backend/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/routes/console.php -------------------------------------------------------------------------------- /ikigai-backend/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/routes/web.php -------------------------------------------------------------------------------- /ikigai-backend/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /ikigai-backend/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ikigai-backend/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/storage/framework/.gitignore -------------------------------------------------------------------------------- /ikigai-backend/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /ikigai-backend/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ikigai-backend/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ikigai-backend/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ikigai-backend/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ikigai-backend/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ikigai-backend/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/tests/CreatesApplication.php -------------------------------------------------------------------------------- /ikigai-backend/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /ikigai-backend/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/tests/TestCase.php -------------------------------------------------------------------------------- /ikigai-backend/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /ikigai-backend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/ikigai-backend/vite.config.js -------------------------------------------------------------------------------- /landingpage/v1css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/landingpage/v1css -------------------------------------------------------------------------------- /landingpage/v1html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/landingpage/v1html -------------------------------------------------------------------------------- /prompts/agent_techspec_v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/prompts/agent_techspec_v3 -------------------------------------------------------------------------------- /prompts/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/prompts/agents.md -------------------------------------------------------------------------------- /prompts/agents_techspec_v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/prompts/agents_techspec_v2 -------------------------------------------------------------------------------- /prompts/agents_techspec_v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/prompts/agents_techspec_v3 -------------------------------------------------------------------------------- /prompts/auto-ikigAI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/prompts/auto-ikigAI -------------------------------------------------------------------------------- /prompts/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/prompts/backend.md -------------------------------------------------------------------------------- /prompts/backend_techspec_v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/prompts/backend_techspec_v2 -------------------------------------------------------------------------------- /prompts/landingpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/prompts/landingpage.md -------------------------------------------------------------------------------- /prompts/landingpage_v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/prompts/landingpage_v2 -------------------------------------------------------------------------------- /prompts/tech_spec_prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/prompts/tech_spec_prompt -------------------------------------------------------------------------------- /techspec_prompts/ChatAgent (Sensei): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/techspec_prompts/ChatAgent (Sensei) -------------------------------------------------------------------------------- /techspec_prompts/TaskAgent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/techspec_prompts/TaskAgent -------------------------------------------------------------------------------- /techspec_prompts/Zack_Survey_Prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/techspec_prompts/Zack_Survey_Prompt -------------------------------------------------------------------------------- /techspec_prompts/agent_techspec_v4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/techspec_prompts/agent_techspec_v4 -------------------------------------------------------------------------------- /techspec_prompts/survey_analize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZackBradshaw/ikigAI/HEAD/techspec_prompts/survey_analize.md --------------------------------------------------------------------------------