# Warp ## Products ### Warp - [Terminal](https://www.warp.dev/terminal): The modern terminal for agentic coding - [Agents](https://www.warp.dev/agents): Run any coding agent, your way - [Code](https://www.warp.dev/code): Native editor built for agent-assisted edits - [Drive](https://www.warp.dev/drive): Team knowledge where your commands live ### Oz - [Orchestration](https://www.warp.dev/oz): Launch and steer cloud agents at scale ## Resources ### Developers - [Docs](https://docs.warp.dev/): API docs and guides - [Blog](https://www.warp.dev/blog): News and product updates - [Events](https://luma.com/warpdotdev): Webinars and sessions - [Roadmap](https://github.com/warpdotdev/warp/issues?q=state:open%20label:%22roadmap%22): See what we're building next ### Company - [About](https://www.warp.dev/about): Our mission and team - [How We Work](https://notion.warp.dev/): Our culture and values - [Careers](https://www.warp.dev/careers): Join the team at Warp - [Press](https://www.warp.dev/press): Media coverage and press kit - [Newsroom](https://www.warp.dev/newsroom): Announcements and press releases ## Enterprise - [Overview](https://www.warp.dev/enterprise): Secure, compliant agentic development for your org - [Customers](https://www.warp.dev/customers): Teams shipping faster with Warp ## Solutions - [Financial Services](https://www.warp.dev/enterprise/financial-services): Secure, compliant AI development - [Insurance](https://www.warp.dev/enterprise/insurance): Modernize policy & claims systems - [Telecommunications](https://www.warp.dev/enterprise/telecommunications): Scale with your network ## Pricing - [Pricing](https://www.warp.dev/pricing) ## Documentation > Documentation for Warp, the agentic development environment, and Oz, Warp's programmable agent for running and coordinating agents at scale. ### Documentation Sets - [Abridged documentation](https://docs.warp.dev/llms-small.txt): a compact version of the documentation for Warp, with non-essential content removed - [Complete documentation](https://docs.warp.dev/llms-full.txt): the full documentation for Warp - [Terminal](https://docs.warp.dev/_llms-txt/terminal.txt): Warp Terminal features and configuration. - [Agent Platform](https://docs.warp.dev/_llms-txt/agent-platform.txt): Warp's Agent Platform: capabilities, local agents, CLI agents, cloud agents. - [Code](https://docs.warp.dev/_llms-txt/code.txt): Code editor, code review, and Git worktrees. - [Enterprise](https://docs.warp.dev/_llms-txt/enterprise.txt): Enterprise features, SSO, team management, and security. - [Getting Started](https://docs.warp.dev/_llms-txt/getting-started.txt): Installation, quickstart, and migration guides. - [Knowledge and Collaboration](https://docs.warp.dev/_llms-txt/knowledge-and-collaboration.txt): Warp Drive, teams, and the Admin Panel. - [Reference](https://docs.warp.dev/_llms-txt/reference.txt): CLI and API reference. - [Support](https://docs.warp.dev/_llms-txt/support.txt): Troubleshooting, billing, and privacy. - [Guides (Warp University)](https://docs.warp.dev/_llms-txt/guides-warp-university.txt): Task-oriented walkthroughs. ### Notes - The complete documentation includes all content from the official documentation - The content is automatically generated from the same source as the official documentation ## Reference - Terminus topics - [Bash](https://www.warp.dev/topic/bash): Scripting the shell: aliases, loops, conditionals, and everyday one-liners. - [Docker](https://www.warp.dev/topic/docker): Container images, compose files, networking, and day-to-day Docker CLI. - [Git](https://www.warp.dev/topic/git): Branching, rebasing, stashing, and recovering from the worst. - [Grep](https://www.warp.dev/topic/grep): Find anything in anything with regular expressions and grep flags. - [Homebrew](https://www.warp.dev/topic/homebrew): Installing, upgrading, and managing packages on macOS with brew. - [Kubernetes](https://www.warp.dev/topic/kubernetes): kubectl, deployments, pods, and the YAML that holds it together. - [Linux](https://www.warp.dev/topic/linux): Core Linux commands, permissions, processes, and system administration. - [Npm](https://www.warp.dev/topic/npm): Packages, scripts, caches, and keeping your node_modules honest. - [Psql](https://www.warp.dev/topic/psql): Interactive PostgreSQL: meta-commands, queries, and tuning the prompt. - [Python](https://www.warp.dev/topic/python): Python tips, virtual environments, and everyday scripting patterns. - [SQL](https://www.warp.dev/topic/sql): Queries, joins, indexes, and patterns that work across databases. - [Unix](https://www.warp.dev/topic/unix): Timeless Unix tools and the philosophy that keeps them useful. - [Vi](https://www.warp.dev/topic/vi): Modal editing essentials for when vi is the only editor you have. - [Vim](https://www.warp.dev/topic/vim): Motions, macros, and config tweaks for the terminal's favorite editor. - [Yarn](https://www.warp.dev/topic/yarn): Installs, workspaces, and resolving dependency drift with Yarn. ## Reference - Recent Terminus articles - [Learning Docker (The Easy Way) Using LazyDocker & Warp](https://www.warp.dev/terminus/learning-docker-using-lazydocker-warp): A concise guide to learning Docker using Lazydocker. Highlights Docker’s benefits and takes advantage of Warp's AI features for a quick setup. - [Bash Comments](https://www.warp.dev/terminus/bash-comments): Comments will help make your scripts more readable - [Reading User Input](https://www.warp.dev/terminus/bash-reading-user-input): Via command line arguments and prompting users for input - [Curl Post Request](https://www.warp.dev/terminus/curl-post-request): Use cURL to send data to a server - [Git Clone, Push, And Pull Over SSH](https://www.warp.dev/terminus/git-clone-ssh): Learn how to set up an SSH key to clone, push, and pull a Git repository over the SSH protocol. - [Go To End of File in Vim / Vi](https://www.warp.dev/terminus/go-to-end-of-file-in-vim): Select and delete to the end of a file in Vim - [Execute Commands in Pods With kubectl](https://www.warp.dev/terminus/kubectl-exec-pod): Learn how to execute standalone commands and start interactive shell sessions in Pods using the `kubectl exec` command. - [Delete a File in Python](https://www.warp.dev/terminus/python-delete-file): There are two approaches to deleting a file in Python - [Select all in Vim / Vi](https://www.warp.dev/terminus/select-all-in-vim-vi): Select all and copy, paste, or delete the contents - [Undo a Git Rebase](https://www.warp.dev/terminus/undo-a-git-rebase): This post will show you how to undo a rebase using git reset, git rebase and git revert - [Get Kubernetes Secrets With kubectl](https://www.warp.dev/terminus/kubectl-get-secrets): Learn how to list, describe, customize, sort and filter secrets in a Kubernetes cluster by name, type, namespace, label and more using the kubectl command. - [Bash If Statement](https://www.warp.dev/terminus/bash-if-statement): Learn how to use the if statement in Bash to compare multiple values and expressions. - [Bash While Loop](https://www.warp.dev/terminus/bash-while-loop): Learn how to use and control the while loop in Bash to repeat instructions, and read from the standard input, files, arrays, and more. - [Run SSH In Docker](https://www.warp.dev/terminus/ssh-docker-container): Learn how to launch and connect to a containerized SSH server in Docker using password-based authentication and SSH keys. - [Upload Files With curl](https://www.warp.dev/terminus/curl-file-upload): Learn how to upload a file to FTP, SFTP servers, Artifactory, and AWS S3 using the curl command.