Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
2ea1920
refactor: remove unused test CLI tools
ikjeong Nov 24, 2025
7722419
refactor: remove unused examples directory
ikjeong Nov 24, 2025
7bfb5f0
refactor: remove unused scripts directory
ikjeong Nov 24, 2025
3e4ed8f
refactor: move testdata to tests/testdata
ikjeong Nov 24, 2025
92400d9
fix: skip prettier integration test when not installed
ikjeong Nov 24, 2025
e1d6e8e
refactor: remove test_validator.go and cleanup .gitignore
ikjeong Nov 24, 2025
9c14134
docs: merge SETUP.md into README.md
ikjeong Nov 24, 2025
2128ec5
refactor: remove unused legacy code
ikjeong Nov 24, 2025
d0b596b
refactor: remove unused Validate method and Result struct
ikjeong Nov 24, 2025
6da13e0
refactor: remove deprecated IsAdmin function
ikjeong Nov 24, 2025
6fbeb18
refactor: remove unused code from policy package
ikjeong Nov 24, 2025
854b801
refactor: remove HTTP mode and incomplete tests
ikjeong Nov 24, 2025
3225073
refactor: remove unused client options and method
ikjeong Nov 25, 2025
9e90cd1
refactor: remove unused OAuthTokenResponse fields
ikjeong Nov 25, 2025
cea642f
refactor: unexport internal-only symbols
ikjeong Nov 25, 2025
7ecf487
refactor: unexport EnsureConfigDir function
ikjeong Nov 25, 2025
1c19542
refactor: remove unused export.go and port parameter
ikjeong Nov 25, 2025
fbaa8b0
refactor: unexport internal-only response types
ikjeong Nov 25, 2025
b0a8fee
refactor: remove unused registry methods and unexport errors
ikjeong Nov 25, 2025
7e4be3c
refactor: remove dead TestMatchPattern test
ikjeong Nov 25, 2025
4f4dcc8
refactor: remove unused helper.go.disabled file
ikjeong Nov 25, 2025
b55306b
refactor: remove unused testdata directory
ikjeong Nov 25, 2025
36ff9d1
docs: remove emojis, translate to Korean, fix outdated references
ikjeong Nov 25, 2025
640d6c1
docs: simplify README with quick start guide at top
ikjeong Nov 25, 2025
3daee3c
docs: add quick start with sym login/init
ikjeong Nov 25, 2025
ad951d3
chore: bump version to 0.1.5 in package.json
ikjeong Nov 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 23 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,20 +1,31 @@
.claude/
# Build outputs
bin/
!npm/bin/
!npm/bin/*.js
npm/bin/sym-*
dist/
*.exe

# Dependencies
node_modules/

# Test coverage
coverage.out
coverage.html
node_modules/
.sym/
*.coverprofile
coverage.txt
*.coverprofile

# IDE
.vscode/
.cursor/
.idea/

# OS
.DS_Store

# Symphony API key configuration
.sym/.env
.vscode
.cursor
sym-cli.exe
# Project specific
.claude/
.sym/
.mcp.json

# npm package binaries (keep JS wrapper)
!npm/bin/
!npm/bin/*.js
npm/bin/sym-*
12 changes: 6 additions & 6 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
- 파일은 멀티 모듈 형태로 각 기능별로 구성되어 있어야 해

## 빌드, 테스트, 개발 명령어
- 재현성을 위해 Make 타깃 또는 스크립트를 선호하세요:
- `make dev` 또는 `./scripts/dev` — 자동 리로드로 로컬에서 앱 실행
- `make test` 또는 `./scripts/test` — 전체 테스트 스위트 실행
- `make lint` 또는 `./scripts/lint` — 린터/포매터 실행
- `make build` 또는 `./scripts/build` — 릴리스 아티팩트 생성
- 재현성을 위해 Make 타깃을 선호하세요:
- `make build` — 현재 플랫폼용 빌드
- `make build-all` — 모든 플랫폼용 빌드
- `make test` — 전체 테스트 스위트 실행
- `make lint` — 린터/포매터 실행
- 서비스 사전 요구사항(DB, 큐, 환경 변수)은 `docs/`에 문서화하세요.

- Go 전용 권장 명령(가능하면 Make 타깃으로 래핑):
Expand Down Expand Up @@ -119,4 +119,4 @@
- 새로 생성하는 파일에도 이 문서의 지침을 따르세요.

## 테스트
테스트는 반드시 작성해야 하고
테스트는 반드시 작성해야 하고, 변경된 코드의 라인 커버리지 80% 이상을 목표로 해야 합니다.
Loading