{"id":51427945,"url":"https://github.com/hexdrinker/cursor-changelog","last_synced_at":"2026-07-05T02:10:31.945Z","repository":{"id":297400697,"uuid":"996598789","full_name":"hexdrinker/cursor-changelog","owner":"hexdrinker","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-05T09:33:27.000Z","size":100,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-05T09:36:34.012Z","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/hexdrinker.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}},"created_at":"2025-06-05T07:18:36.000Z","updated_at":"2025-06-05T09:33:28.000Z","dependencies_parsed_at":"2025-06-05T09:36:46.816Z","dependency_job_id":"c866cfee-0985-46ed-a935-260401f5c9a2","html_url":"https://github.com/hexdrinker/cursor-changelog","commit_stats":null,"previous_names":["hexdrinker/cursor-changelog"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hexdrinker/cursor-changelog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexdrinker%2Fcursor-changelog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexdrinker%2Fcursor-changelog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexdrinker%2Fcursor-changelog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexdrinker%2Fcursor-changelog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hexdrinker","download_url":"https://codeload.github.com/hexdrinker/cursor-changelog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexdrinker%2Fcursor-changelog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35141390,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-05T02:00:06.290Z","response_time":100,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-07-05T02:10:31.260Z","updated_at":"2026-07-05T02:10:31.938Z","avatar_url":"https://github.com/hexdrinker.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cursor Changelog API\n\nCursor 공식 changelog를 파싱하고 다국어 번역을 제공하는 Next.js API 프로젝트입니다.\n\n## 🌟 주요 기능\n\n- **📝 Changelog 파싱**: Cursor 공식 사이트에서 changelog 데이터 자동 추출\n- **🌐 다국어 번역**: OpenAI를 활용한 한국어, 일본어, 중국어, 스페인어 번역 지원\n- **⚡ 스마트 캐싱**: 메모리 캐시 + 번역 캐시로 성능 최적화\n- **🚀 REST API**: 간단한 쿼리 파라미터로 데이터 조회\n- **🔄 자동 동기화**: 1시간마다 changelog 크롤링 및 번역 자동 업데이트\n\n## 📡 API 사용법\n\n### 기본 사용\n\n```bash\n# 원본 영어 데이터\nGET /api/changelog\n\n# 한국어 번역\nGET /api/changelog?lang=ko\n\n# 일본어 번역 (최신 5개만)\nGET /api/changelog?lang=ja\u0026limit=5\n\n# 특정 버전 조회\nGET /api/changelog?version=1.0\u0026lang=ko\n```\n\n### 지원하는 언어\n\n- `ko`: 한국어\n- `ja`: 일본어\n- `zh`: 중국어\n- `es`: 스페인어\n\n### 쿼리 파라미터\n\n| 파라미터  | 설명                 | 예시                   |\n| --------- | -------------------- | ---------------------- |\n| `lang`    | 번역 언어 코드       | `ko`, `ja`, `zh`, `es` |\n| `limit`   | 최대 항목 수 (1-100) | `10`                   |\n| `version` | 특정 버전 필터링     | `1.0`                  |\n\n### 응답 형식\n\n```json\n{\n  \"success\": true,\n  \"data\": {\n    \"entries\": [\n      {\n        \"id\": \"abc123def456\",\n        \"version\": \"1.0\",\n        \"date\": \"2024-01-15\",\n        \"title\": \"BugBot, Background Agent access to everyone\",\n        \"content\": \"번역된 내용...\",\n        \"images\": [...],\n        \"videos\": [...],\n        \"sections\": [...]\n      }\n    ],\n    \"metadata\": {\n      \"language\": \"ko\",\n      \"total\": 10,\n      \"originalTotal\": 50,\n      \"generatedAt\": \"2024-01-15T10:30:00.000Z\",\n      \"cacheAge\": 1234567\n    }\n  }\n}\n```\n\n## ⚙️ 환경 설정\n\n번역 기능을 사용하려면 OpenAI API 키가 필요합니다.\n\n```bash\n# .env.local 파일 생성\necho \"OPENAI_API_KEY=your-openai-api-key-here\" \u003e .env.local\n\n# 동기화 API 보안을 위한 토큰 (선택사항)\necho \"SYNC_TOKEN=your-secure-token-here\" \u003e\u003e .env.local\n```\n\n## 🔄 자동 동기화\n\n프로젝트에는 changelog를 자동으로 동기화하는 시스템이 포함되어 있습니다.\n\n- **API 엔드포인트**: `/api/sync`\n- **주기**: 1시간마다 자동 실행\n- **기능**: 새로운 changelog 감지, 자동 번역, 캐시 업데이트\n\n자세한 사용법은 [`SYNC_API_USAGE.md`](./SYNC_API_USAGE.md)를 참조하세요.\n\n### 테스트 명령어\n\n```bash\n# 동기화 상태 확인\npnpm run sync:status\n\n# 수동 동기화 실행\npnpm run sync:run\n\n# 테스트 도구 도움말\npnpm run test:sync\n```\n\n## Getting Started\n\nFirst, run the development server:\n\n```bash\nnpm run dev\n# or\nyarn dev\n# or\npnpm dev\n# or\nbun dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\nYou can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.\n\nThis project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.\n\n## Learn More\n\nTo learn more about Next.js, take a look at the following resources:\n\n- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.\n- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.\n\nYou can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!\n\n## Deploy on Vercel\n\nThe easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template\u0026filter=next.js\u0026utm_source=create-next-app\u0026utm_campaign=create-next-app-readme) from the creators of Next.js.\n\nCheck out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhexdrinker%2Fcursor-changelog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhexdrinker%2Fcursor-changelog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhexdrinker%2Fcursor-changelog/lists"}