agent-girl
No description available.
File Explorer
- 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
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
bun install
View Details ▼
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
View Details ▼
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
View Details ▼
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
View Details ▼
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
View Details ▼
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
View Details ▼
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
View Details ▼
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
View Details ▼
lsof
List open files and the corresponding processes.
Note: Root privileges are required to list files opened by others.
lsof {{path/to/file}}
Find the processes that have a given file open:
lsof -i :{{port}}
Find the process that opened a local internet port:
lsof -t {{path/to/file}}
Only output the process ID (PID):
nano
View Details ▼
nano
Text editor. An enhanced `pico` clone.
See also: `pico`, `rnano`.
nano {{path/to/file1 path/to/file2 ...}}
Open specific files, moving to the next file after closing the previous one:
nano {{[-I|--ignorercfiles]}}
Start the editor without using configuration files:
nano +{{line}},{{column}} {{path/to/file}}
Open a file and position the cursor at a specific line and column:
netstat
View Details ▼
netstat
Display network-related information such as open connections, open socket ports, etc.
See also: `ss`.
netstat {{[-a|--all]}}
List all ports:
netstat -p {{protocol}}
Display the PID and program name listening on a specific protocol:
netstat
Display active TCP connections:
iwr
View Details ▼
iwr
In PowerShell, this command is an alias of `Invoke-WebRequest`.
tldr invoke-webrequest
View documentation for the original command:
taskkill
View Details ▼
taskkill
Terminate a process by its process ID or name.
taskkill /pid {{process_id}}
Terminate a process by its ID:
taskkill /im {{process_name}}
Terminate a process by its name:
taskkill /pid {{process_id}} /f
Forcefully terminate a specified process:
