agent-girl
No description available.
파일 탐색기
- release.yml
- dependabot.yml
- buildConfig.ts
- BuildWizard.tsx
- ConfigurationStep.tsx
- FeatureSelector.tsx
- ProjectTypeSelector.tsx
- ReviewStep.tsx
- ChatContainer.tsx
- ChatInput.tsx
- FeaturesModal.tsx
- MessageList.tsx
- ModeIndicator.tsx
- ModeSelector.tsx
- NewChatWelcome.tsx
- ScrollButton.tsx
- SessionIsolation.test.tsx
- StyleConfigModal.tsx
- ThinkingTokensControl.tsx
- AboutButton.tsx
- AboutModal.tsx
- ModelSelector.tsx
- PermissionModeToggle.tsx
- RadioPlayer.tsx
- WorkingDirectoryDisplay.tsx
- AssistantMessage.tsx
- CodeBlockWithCopy.tsx
- CommandPill.tsx
- CommandTextRenderer.tsx
- MermaidDiagram.tsx
- MessageRenderer.tsx
- SystemMessage.tsx
- ThinkingBlock.tsx
- types.ts
- URLBadge.tsx
- UserMessage.tsx
- PlanApprovalModal.tsx
- PreLoader.tsx
- BackgroundProcessMonitor.tsx
- QuestionModal.tsx
- Sidebar.tsx
- button.tsx
- input.tsx
- scroll-area.tsx
- textarea.tsx
- agent-boy.svg
- ErrorBoundary.tsx
- models.ts
- useSessionAPI.ts
- useWebSocket.ts
- utils.ts
- errorMessages.ts
- syntaxHighlighter.ts
- toast.ts
- urlFormatter.ts
- agent-boy.svg
- App.tsx
- globals.css
- index.html
- index.tsx
- audit.md
- check.md
- commit.md
- dev-server.md
- .gitkeep
- .gitkeep
- .gitkeep
- .gitkeep
- askUserQuestion.ts
- coder.txt
- general.txt
- intense-research-glm.txt
- intense-research.txt
- spark.txt
- commands.ts
- directory.ts
- sessions.ts
- userConfig.ts
- CLAUDE.md
- CLAUDE.md
- CLAUDE.md
- CLAUDE.md
- apiErrors.ts
- AsyncQueue.ts
- retry.ts
- timeout.test.ts
- timeout.ts
- messageHandlers.ts
- agents.ts
- backgroundProcessManager.ts
- commandSetup.ts
- database.ts
- directoryPicker.ts
- directoryUtils.ts
- imageUtils.ts
- mcpServers.ts
- modes.ts
- oauth.ts
- providers.ts
- server.ts
- sessionStreamManager.ts
- slashCommandExpander.ts
- startup.ts
- staticFileServer.ts
- systemPrompt.ts
- tokenStorage.ts
- userConfig.ts
- .env.example
- .gitignore
- agentgirl.png
- build-css.ts
- build-source-release.sh
- CLAUDE.md
- cli.ts
- coin.mp3
- components.json
- credits.mp3
- eslint.config.js
- install.ps1
- install.sh
- LICENSE
- package.json
- README.md
- setup.ts
- tailwind.config.js
- tsconfig.json
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
bun install
설명 보기 ▼
bun install
Install JavaScript dependencies for a project from `package.json`.
bun {{[i|install]}}
Install all dependencies listed in `package.json`:
bun {{[i|install]}} {{package_name}}@{{version}}
Install a single package (this is an alias for `bun add`):
bun {{[i|install]}} {{[-g|--global]}} {{package_name}}
Install a package globally:
bun run
설명 보기 ▼
bun run
Execute a JavaScript/TypeScript file, or a script from `package.json`.
bun run {{script_name}}
Run a script defined in `package.json`:
bun run {{path/to/file.ts}}
Run a JavaScript or TypeScript file directly:
bun run --watch {{path/to/file.ts}}
Run a file in "watch" mode (restarts automatically when the file changes):
bun test
설명 보기 ▼
bun test
Run tests using Bun's built-in test runner.
It is a fast, Jest-compatible test runner that looks for `*.test.ts` (and similar) files.
bun test
Run all test files found in the project:
bun test {{path/to/file.test.ts}}
Run a specific test file or directory:
bun test --watch
Run tests in "watch" mode (re-runs automatically on file changes):
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:
lsof
설명 보기 ▼
lsof
열린 파일과 상응하는 프로세스들을 나열합니다.
참고: 다른 사람으로부터 열린 파일 리스트는 루트 권한 ( 혹은 sudo ) 이 요구됩니다.
더 많은 정보: <https://manned.org/lsof>.
lsof {{path/to/file}}
주어진 파일을 열고있는 프로세스 찾기:
lsof -i :{{port}}
로컬 인터넷 포트를 열고있는 프로세스 찾기:
lsof -t {{path/to/file}}
프로세스 아이디 (PID)만 출력:
nano
설명 보기 ▼
nano
명령줄 텍스트 편집기. 향상된 `Pico` 클론.
관련 항목: `pico`, `rnano`.
더 많은 정보: <https://nano-editor.org/dist/latest/nano.html>.
nano {{path/to/file1 path/to/file2 ...}}
편집기 시작:
nano {{[-I|--ignorercfiles]}}
설정 파일을 사용하지 않고 편집기 시작:
nano +{{line}},{{column}} {{path/to/file}}
특정 파일 열기, 이전 파일을 닫으면 다음 파일로 이동:
netstat
설명 보기 ▼
netstat
네트워크 관련 정보(열려 있는 연결, 소켓 포트 등) 표시.
관련 항목: `ss`.
더 많은 정보: <https://manned.org/netstat>.
netstat {{[-a|--all]}}
모든 포트 나열:
netstat -p {{protocol}}
특정 프로토콜을 수신 중인 PID와 프로그램 이름 표시:
netstat
활성 TCP 연결 표시:
iwr
설명 보기 ▼
iwr
이 명령은 `invoke-webrequest`의 별칭입니다.
tldr invoke-webrequest
자세한 내용은 원본 명령을 참고하세요:
taskkill
설명 보기 ▼
taskkill
프로세스 아이디 또는 이름으로 프로세스를 종료합니다.
더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/taskkill>.
taskkill /pid {{process_id}}
프로세스 아이디로 프로세스 종료:
taskkill /im {{process_name}}
프로세스 이름으로 프로세스 종료:
taskkill /pid {{process_id}} /f
강제로 지정된 프로세스 종료:
