diff --git a/.gitignore b/.gitignore index ecceaa8..414ee55 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,12 @@ build/ .gradle/ **/.gradle/ +# Serena +serena/ +.serena/ +**/serena/ +**/.serena/ + # IDE .idea/ **/.idea/ diff --git a/.serena/.gitignore b/.serena/.gitignore deleted file mode 100644 index 14d86ad..0000000 --- a/.serena/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/cache diff --git a/.serena/project.yml b/.serena/project.yml deleted file mode 100644 index c04d56a..0000000 --- a/.serena/project.yml +++ /dev/null @@ -1,71 +0,0 @@ -# language of the project (csharp, python, rust, java, typescript, go, cpp, or ruby) -# * For C, use cpp -# * For JavaScript, use typescript -# Special requirements: -# * csharp: Requires the presence of a .sln file in the project folder. -language: java - -# the encoding used by text files in the project -# For a list of possible encodings, see https://docs.python.org/3.11/library/codecs.html#standard-encodings -encoding: "utf-8" - -# whether to use the project's gitignore file to ignore files -# Added on 2025-04-07 -ignore_all_files_in_gitignore: true -# list of additional paths to ignore -# same syntax as gitignore, so you can use * and ** -# Was previously called `ignored_dirs`, please update your config if you are using that. -# Added (renamed) on 2025-04-07 -ignored_paths: [] - -# whether the project is in read-only mode -# If set to true, all editing tools will be disabled and attempts to use them will result in an error -# Added on 2025-04-18 -read_only: false - -# list of tool names to exclude. We recommend not excluding any tools, see the readme for more details. -# Below is the complete list of tools for convenience. -# To make sure you have the latest list of tools, and to view their descriptions, -# execute `uv run scripts/print_tool_overview.py`. -# -# * `activate_project`: Activates a project by name. -# * `check_onboarding_performed`: Checks whether project onboarding was already performed. -# * `create_text_file`: Creates/overwrites a file in the project directory. -# * `delete_lines`: Deletes a range of lines within a file. -# * `delete_memory`: Deletes a memory from Serena's project-specific memory store. -# * `execute_shell_command`: Executes a shell command. -# * `find_referencing_code_snippets`: Finds code snippets in which the symbol at the given location is referenced. -# * `find_referencing_symbols`: Finds symbols that reference the symbol at the given location (optionally filtered by type). -# * `find_symbol`: Performs a global (or local) search for symbols with/containing a given name/substring (optionally filtered by type). -# * `get_current_config`: Prints the current configuration of the agent, including the active and available projects, tools, contexts, and modes. -# * `get_symbols_overview`: Gets an overview of the top-level symbols defined in a given file. -# * `initial_instructions`: Gets the initial instructions for the current project. -# Should only be used in settings where the system prompt cannot be set, -# e.g. in clients you have no control over, like Claude Desktop. -# * `insert_after_symbol`: Inserts content after the end of the definition of a given symbol. -# * `insert_at_line`: Inserts content at a given line in a file. -# * `insert_before_symbol`: Inserts content before the beginning of the definition of a given symbol. -# * `list_dir`: Lists files and directories in the given directory (optionally with recursion). -# * `list_memories`: Lists memories in Serena's project-specific memory store. -# * `onboarding`: Performs onboarding (identifying the project structure and essential tasks, e.g. for testing or building). -# * `prepare_for_new_conversation`: Provides instructions for preparing for a new conversation (in order to continue with the necessary context). -# * `read_file`: Reads a file within the project directory. -# * `read_memory`: Reads the memory with the given name from Serena's project-specific memory store. -# * `remove_project`: Removes a project from the Serena configuration. -# * `replace_lines`: Replaces a range of lines within a file with new content. -# * `replace_symbol_body`: Replaces the full definition of a symbol. -# * `restart_language_server`: Restarts the language server, may be necessary when edits not through Serena happen. -# * `search_for_pattern`: Performs a search for a pattern in the project. -# * `summarize_changes`: Provides instructions for summarizing the changes made to the codebase. -# * `switch_modes`: Activates modes by providing a list of their names -# * `think_about_collected_information`: Thinking tool for pondering the completeness of collected information. -# * `think_about_task_adherence`: Thinking tool for determining whether the agent is still on track with the current task. -# * `think_about_whether_you_are_done`: Thinking tool for determining whether the task is truly completed. -# * `write_memory`: Writes a named memory (for future reference) to Serena's project-specific memory store. -excluded_tools: [] - -# initial prompt for the project. It will always be given to the LLM upon activating the project -# (contrary to the memories, which are loaded on demand). -initial_prompt: "" - -project_name: "HGZero" diff --git a/build.gradle b/build.gradle index ae4fffa..26e3bcb 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.3.0' apply false + id 'org.springframework.boot' version '3.3.5' apply false id 'io.spring.dependency-management' version '1.1.6' apply false id 'io.freefair.lombok' version '8.10' apply false } diff --git a/design/uiux/prototype/01-로그인.html b/design/uiux/prototype/01-로그인.html index 3609dc1..1a6162c 100644 --- a/design/uiux/prototype/01-로그인.html +++ b/design/uiux/prototype/01-로그인.html @@ -235,20 +235,20 @@ // 실제 환경에서는 API 호출 setTimeout(() => { - // 데모용 로그인 검증 - if (formData.employeeId === 'user-001' || formData.employeeId === 'demo') { + // 데모용 로그인 검증 - SAMPLE_USERS에서 사용자 찾기 + const user = SAMPLE_USERS.find(u => u.id === formData.employeeId); + + if (user) { // 로그인 성공 - 사용자 정보 저장 - const user = { - id: 'user-001', - name: '김민준', - email: 'minjun.kim@example.com', + const userToSave = { + ...user, employeeId: formData.employeeId }; - saveToStorage('currentUser', user); + saveToStorage('currentUser', userToSave); saveToStorage('isLoggedIn', true); // 대시보드로 이동 - showToast('로그인 성공!', 'success'); + showToast(`${user.name}님 로그인 성공!`, 'success'); setTimeout(() => { navigateTo('02-대시보드.html'); }, 500); @@ -308,7 +308,10 @@ } console.log('01-로그인 화면 초기화 완료'); - console.log('데모 계정: user-001 또는 demo (비밀번호: 아무거나 8자 이상)'); + console.log('데모 계정 목록 (비밀번호: 아무거나 8자 이상):'); + SAMPLE_USERS.forEach(user => { + console.log(`- ${user.id}: ${user.name} (${user.email})`); + }); diff --git a/design/uiux/prototype/02-대시보드.html b/design/uiux/prototype/02-대시보드.html index 991a7c7..87e029b 100644 --- a/design/uiux/prototype/02-대시보드.html +++ b/design/uiux/prototype/02-대시보드.html @@ -307,16 +307,19 @@ font-weight: var(--font-weight-medium); } - /* 회의록 리스트 - Todo 카드와 동일한 스타일 */ + /* 회의록 리스트 - 그리드 형태 */ .minutes-list { - background: var(--white); - border-radius: var(--radius-lg); - padding: var(--space-md); - box-shadow: var(--shadow-sm); + display: grid; + grid-template-columns: 1fr; + gap: var(--space-md); margin-bottom: var(--space-xl); - display: flex; - flex-direction: column; - gap: var(--space-sm); + } + + /* 데스크톱에서 2x2 그리드 */ + @media (min-width: 768px) { + .minutes-list { + grid-template-columns: repeat(2, 1fr); + } } /* 회의록 카드 스타일 */ @@ -347,7 +350,11 @@ font-weight: var(--font-weight-medium); color: var(--gray-900); font-size: var(--font-base); - flex-shrink: 0; + flex: 1; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + min-width: 0; } .minutes-card-meta { @@ -518,12 +525,8 @@ - +
+ +
+
+
+ 회의 목적 + 2025년 1분기 신제품 개발 방향 수립
-

- 2025년 1분기 신제품 개발을 위한 기획 회의입니다. AI 기반 회의록 자동화 서비스의 핵심 기능과 차별화 전략에 대해 논의하였으며, 예상 개발 일정은 3개월입니다. -

-
- -
-
-

내용

- +
+ 일시 + 2025년 10월 25일 14:00 - 15:30
-
-

회의 목적: 2025년 1분기 신제품 개발 방향 수립

-

참석자: 김민준(PM), 박서연(AI), 이준호(Backend), 최유진(Frontend)

-

일시: 2025년 10월 25일 14:00 - 15:30

-

장소: 본사 2층 대회의실

-
-
- -
- - +
+ 장소 + 본사 2층 대회의실 +
+ +
+ 회의 안건 + 1. 제품 핵심 기능 정의
2. 타겟 고객층 설정
3. 개발 일정 수립
+
- - - - -
- - - - - -
- - -
-
-
-
-
-

참고자료

- -
-
- - - - -