ai-gate
Why juggle 6 AI tools? AI Gate does it. No API keys. A single gateway to ChatGPT, Gemini, Claude, Grok, Perplexity and more....
파일 탐색기
- settings.local.json
- boss.yml
- FUNDING.yml
- entitlements.mac.plist
- electronApp.ts
- panes.spec.ts
- prefix-recording.spec.ts
- presets.spec.ts
- app.ts
- shortcuts.ts
- default-tools.spec.ts
- popup-routing.spec.ts
- provider-icons.spec.ts
- tray-harness.cjs
- tray.spec.ts
- popup.spec.ts
- playwright.config.ts
- README.md
- main.ts
- popupRouting.ts
- preload.ts
- trayIcon.ts
- ai-gate-flatpak-demo.webm
- com.inulute.aigate.512.png
- com.inulute.aigate.desktop
- com.inulute.aigate.metainfo.xml
- com.inulute.aigate.png
- com.inulute.aigate.svg
- com.inulute.aigate.yml
- SUBMISSION.md
- favicon.icns
- favicon.png
- favicon.png
- favicon.ico
- ai-gate.svg
- aigate.svg
- notification-1.md
- notification-2.md
- notification-3.md
- notification-manifest.json
- favicon.ico
- Screenshot1.png
- Screenshot2.png
- Screenshot3.png
- AddToolForm.tsx
- EditToolForm.tsx
- Header.tsx
- LayoutSelector.tsx
- MainLayout.tsx
- Sidebar.tsx
- DefaultToolsSelector.tsx
- SettingsPanel.tsx
- ShortcutEditor.tsx
- alert-dialog.tsx
- badge.tsx
- button.tsx
- card.tsx
- dialog.tsx
- dropdown-menu.tsx
- input.tsx
- keyboard-shortcuts.tsx
- label.tsx
- radio-group.tsx
- scroll-area.tsx
- select.tsx
- separator.tsx
- sheet.tsx
- switch.tsx
- toast.tsx
- toaster.tsx
- tooltip.tsx
- AIToolView.tsx
- Panel.tsx
- Tab.tsx
- TabBar.tsx
- ToolPicker.tsx
- WorkspaceGrid.tsx
- ErrorBoundary.tsx
- NotificationPanel.tsx
- ProviderIcon.tsx
- ShortcutHandler.tsx
- ToolIcon.tsx
- UpdatePopup.tsx
- constants.ts
- AIToolsContext.tsx
- NotificationContext.tsx
- SettingsContext.tsx
- ShortcutsContext.tsx
- UpdateContext.tsx
- use-toast.ts
- useFavicon.ts
- useLocalStorage.ts
- useShortcutActions.ts
- favicon.ts
- providerIcons.ts
- shortcutUtils.ts
- utils.ts
- webviewZoom.ts
- notificationService.ts
- updateService.ts
- AITool.ts
- App.css
- App.tsx
- global.d.ts
- index.css
- main.tsx
- vite-env.d.ts
- .gitattributes
- .gitignore
- CHANGELOG.md
- components.json
- eslint.config.js
- index.html
- LICENSE
- package-lock.json
- package.json
- postcss.config.js
- README.md
- RELEASE_NOTES.md
- tailwind.config.js
- tsconfig.app.json
- tsconfig.electron.json
- tsconfig.json
- tsconfig.node.json
- tsconfig.preload.json
- vite.config.ts
- WAYLAND_SUPPORT.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git checkout
설명 보기 ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git commit
설명 보기 ▼
git commit
Commit files to the repository.
git commit
Open an editor to write a message and commit staged files to the repository:
git commit {{[-m|--message]}} "{{message}}"
Commit staged files to the repository with the specified message:
git commit {{[-F|--file]}} {{path/to/commit_message_file}}
Commit staged files with a message read from a file:
git push
설명 보기 ▼
git push
Push commits to a remote repository.
git push
Send local changes in the current branch to its default remote counterpart:
git push {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart:
git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:
npm install
설명 보기 ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
설명 보기 ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
