# Detailed Project Directory Structure (tree -a -L 3 --dirsfirst output) . ├── .git │   ├── branches │   ├── hooks │   │   ├── applypatch-msg.sample │   │   ├── commit-msg.sample │   │   ├── fsmonitor-watchman.sample │   │   ├── post-update.sample │   │   ├── pre-applypatch.sample │   │   ├── pre-commit.sample │   │   ├── pre-merge-commit.sample │   │   ├── pre-push.sample │   │   ├── pre-rebase.sample │   │   ├── pre-receive.sample │   │   ├── prepare-commit-msg.sample │   │   ├── push-to-checkout.sample │   │   ├── sendemail-validate.sample │   │   └── update.sample │   ├── info │   │   └── exclude │   ├── logs │   │   ├── refs │   │   └── HEAD │   ├── objects │   │   ├── 04 │   │   ├── 05 │   │   ├── 09 │   │   ├── 12 │   │   ├── 14 │   │   ├── 1d │   │   ├── 1f │   │   ├── 22 │   │   ├── 24 │   │   ├── 28 │   │   ├── 2d │   │   ├── 2e │   │   ├── 30 │   │   ├── 39 │   │   ├── 3a │   │   ├── 3e │   │   ├── 42 │   │   ├── 43 │   │   ├── 44 │   │   ├── 47 │   │   ├── 4b │   │   ├── 4c │   │   ├── 4e │   │   ├── 50 │   │   ├── 51 │   │   ├── 5a │   │   ├── 5b │   │   ├── 5d │   │   ├── 5e │   │   ├── 61 │   │   ├── 62 │   │   ├── 64 │   │   ├── 65 │   │   ├── 66 │   │   ├── 67 │   │   ├── 69 │   │   ├── 6e │   │   ├── 6f │   │   ├── 70 │   │   ├── 71 │   │   ├── 74 │   │   ├── 77 │   │   ├── 78 │   │   ├── 7b │   │   ├── 7d │   │   ├── 81 │   │   ├── 83 │   │   ├── 86 │   │   ├── 87 │   │   ├── 8e │   │   ├── 91 │   │   ├── 93 │   │   ├── 96 │   │   ├── 9a │   │   ├── 9f │   │   ├── a0 │   │   ├── a5 │   │   ├── a7 │   │   ├── a9 │   │   ├── aa │   │   ├── ad │   │   ├── ae │   │   ├── b0 │   │   ├── b1 │   │   ├── b2 │   │   ├── b7 │   │   ├── b9 │   │   ├── ba │   │   ├── bb │   │   ├── bc │   │   ├── c0 │   │   ├── ca │   │   ├── cd │   │   ├── cf │   │   ├── d1 │   │   ├── d2 │   │   ├── d4 │   │   ├── d5 │   │   ├── d6 │   │   ├── d7 │   │   ├── d9 │   │   ├── e2 │   │   ├── e5 │   │   ├── f1 │   │   ├── f2 │   │   ├── f3 │   │   ├── f4 │   │   ├── f5 │   │   ├── f7 │   │   ├── f8 │   │   ├── fd │   │   ├── info │   │   └── pack │   ├── refs │   │   ├── heads │   │   ├── remotes │   │   └── tags │   ├── COMMIT_EDITMSG │   ├── FETCH_HEAD │   ├── HEAD │   ├── ORIG_HEAD │   ├── config │   ├── description │   └── index ├── .io8project │   ├── .state.json │   └── project_metadata.json ├── .sureai │   ├── io8_mcp │   │   └── responses │   ├── uploads │   ├── .code_tree.txt │   ├── .developer_agent_notes_app_notes_app_20251002_055810.md │   ├── .directory_structure.txt │   ├── .directory_structure_notes_app_notes_app_20251002_055810.md │   ├── .io8analyst_agent_notes_app_notes_app_20251002_055810.md │   ├── .io8architect_agent_notes_app_notes_app_20251002_055810.md │   ├── .io8codermaster_agent_notes_app_notes_app_20251002_055810.md │   ├── .io8pm_agent_notes_app_notes_app_20251002_055810.md │   ├── .io8project_builder_notes_app_20251002_055810.md │   ├── .sm_agent_notes_app_notes_app_20251002_055810.md │   ├── dev_test_log.md │   ├── sprint_plan.md │   └── tasks_list.md ├── backend │   └── .gitkeep ├── frontend │   └── .gitkeep ├── notes_app_20251002_055810-notes_app_20251002_055810-b-b │   └── authsec_springboot │   ├── backend │   └── .gitignore ├── notes_app_20251002_055810-notes_app_20251002_055810-f-f │   └── authsec_angular │   └── frontend ├── sureops │   ├── notes_app_20251002_055810-notes_app_20251002_055810-b-b │   │   └── deployment │   ├── notes_app_20251002_055810-notes_app_20251002_055810-d-d │   │   └── deployment │   └── notes_app_20251002_055810-notes_app_20251002_055810-f-f │   └── deployment ├── Dockerfile.backend ├── Dockerfile.frontend ├── deployment_config.yml ├── docker-compose.yml └── nginx.conf 125 directories, 46 files