Repository: warpdotdev/Warp Branch: main Commit: 8bf3fd14b7a5 Files: 10 Total size: 22.4 KB Directory structure: gitextract_ke_4e8of/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 01_bug_report.yml │ │ ├── 02_feature_request.yml │ │ ├── 03_ssh_tmux.yml │ │ ├── 04_ssh_legacy.yml │ │ └── config.yml │ └── workflows/ │ └── dedupe-new-issues.yml ├── .gitignore ├── .gitmodules ├── LICENSE └── README.md ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/ISSUE_TEMPLATE/01_bug_report.yml ================================================ name: Bug Report description: "Found a bug? Let us know with this form. For billing issues, please email billing@warp.dev. If you have an SSH related issue, please use an SSH Template below." labels: ["BUG"] body: - type: checkboxes attributes: label: "Pre-submit Checks" options: - label: "I have [searched Warp bugs](https://github.com/warpdotdev/warp/issues?q=is%3Aissue+label%3ABUG) and there are no duplicates" required: true - label: "I have [searched Warp known issues page](https://docs.warp.dev/help/known-issues) and my issue is not there" required: true - label: "I have an issue with AI and have included the debugging ID (Optional, but helps expedite the AI quality fix). [Debugging ID instructions](https://docs.warp.dev/agent-platform/agent/ai-faqs#gathering-ai-debugging-id)" required: false - label: "I have technical issue and have included the logs (optional, but helps expedite the bug fix). [Log instructions](https://docs.warp.dev/support-and-community/troubleshooting-and-support/sending-us-feedback#gathering-warp-logs)" required: false - type: textarea id: "describe-the-bug" attributes: label: "Describe the bug" description: "A clear and concise description of what the bug is." placeholder: Tell us what you see. validations: required: true - type: textarea id: "to-reproduce" attributes: label: "To reproduce" description: "Bug reports with clear reproduction will get prioritized higher and addressed more quickly." placeholder: "Steps to reproduce: 1. Go to '...' 2. Click on '...' 3. Scroll down to '...' 4. See error '...'" validations: required: true - type: textarea id: "expected-behavior" attributes: label: "Expected behavior" description: "A clear and concise description of what you expected to happen." placeholder: Tell us what you expect to see. validations: required: false - type: textarea id: "screenshots-logs" attributes: label: "Screenshots, videos, and logs" description: "If applicable, add screenshots/videos/logs to help us understand your problem. While optional, these help expedite the time in which your bug is addressed." validations: required: false - type: dropdown id: "os" attributes: label: "Operating system (OS)" multiple: false options: - "Select an OS" - macOS - Linux - Windows validations: required: true - type: input id: "os-version" attributes: label: "Operating system and version" description: "For example: Debian 11.2" validations: required: true - type: input id: "local-shell-version" attributes: label: "Shell Version" description: "For example, `bash 4.0` e.g. Run `bash --version` or `zsh --version`" validations: required: false - type: input id: "warp-version" attributes: label: "Current Warp version" description: "Open the Settings Dialog (CMD-,) using the Command Palette or by clicking the three dots > Settings > Account. Once you're on the Account page click the copy icon that's to the right of the version number. `v0.2047.04.07.47.47.stable_47`" validations: required: false - type: dropdown id: "regression" attributes: label: "Regression" description: "Is this a regression (used to work in a previous Warp version)?" multiple: false options: - "No, this bug or issue has existed throughout my experience using Warp" - "Yes, this bug started recently or with an X Warp version" validations: required: true - type: input id: "warp-version-regression-date" attributes: label: "Recent working Warp date" description: "Most recent date that Warp worked as expected" validations: required: false - type: textarea id: "additional-context" attributes: label: "Additional context" description: "Add any other context about the problem here. If using Warp on Linux, tell us if you're using X11 or Wayland. If the issue is graphical, run Warp with the following command `RUST_LOG=wgpu_core=info,wgpu_hal=info MESA_DEBUG=1 EGL_LOG_LEVEL=debug warp-terminal` attach logs and tell us the result of `eglinfo`." validations: required: false - type: dropdown id: "blocker" attributes: label: "Does this block you from using Warp daily?" description: "All feedback will be reviewed, even if you select 'No'." multiple: false options: - "No" - "Yes, this issue prevents me from using Warp daily." validations: required: true - type: dropdown id: "terminals" attributes: label: "Is this an issue only in Warp?" description: "Verifying this issue doesn't happen in other terminals helps us to prioritize the fix" multiple: false options: - "Yes, I confirmed that this only happens in Warp, not other terminals." - "No, this issue happens in Warp and other terminals." validations: required: true - type: dropdown id: "linear-label-bug" attributes: label: "Warp Internal (ignore): linear-label:b9d78064-c89e-4973-b153-5178a31ee54e" multiple: false options: - Ignore validations: required: false ================================================ FILE: .github/ISSUE_TEMPLATE/02_feature_request.yml ================================================ name: Feature Request description: "Have a great new idea? Please let us know with as many details as possible." labels: ["FEATURE"] body: - type: checkboxes attributes: label: "Pre-submit Checks" options: - label: "I have [searched Warp feature requests](https://github.com/warpdotdev/warp/issues?q=is%3Aissue+label%3AFEATURE) and there are no duplicates" required: true - label: "I have [searched Warp docs](https://docs.warp.dev) and my feature is not there" required: true - type: textarea id: "describe-solution" attributes: label: "Describe the solution you'd like?" description: "A clear and concise description of what you want to happen." validations: required: true - type: textarea id: "related-to-problem" attributes: label: "Is your feature request related to a problem? Please describe." description: "A clear and concise description of what the problem is." placeholder: "I'm always frustrated when [...]" validations: required: false - type: textarea id: "additional-context" attributes: label: "Additional context" description: "Add any other context or screenshots about the feature request here. If you want to upload a picture you can drag one in from Finder." validations: required: false - type: dropdown id: "os" attributes: label: "Operating system (OS)" multiple: false options: - "Select an OS" - macOS - Linux - Windows validations: required: true - type: dropdown id: "importance" attributes: label: "How important is this feature to you?" multiple: false options: - "1 (Not too important)" - "2" - "3" - "4" - "5 (Can't work without it!)" validations: required: true - type: dropdown id: "linear-label-feature" attributes: label: "Warp Internal (ignore) - linear-label:39cc6478-1249-4ee7-950b-c428edfeecd1" multiple: false options: - Ignore validations: required: false ================================================ FILE: .github/ISSUE_TEMPLATE/03_ssh_tmux.yml ================================================ name: SSH Warpify Issues? Use this template description: "Issue template specialized for the circumstances where SSH Warpification with tmux fails" labels: ["BUG","SSH-TMUX"] body: - type: checkboxes attributes: label: "Pre-submit Checks" options: - label: "I have [searched Warp SSH issues](https://github.com/warpdotdev/Warp/issues?q=is%3Aissue+is%3Aopen+label%3ASSH-TMUX) and there are no duplicates" required: true - label: "I have [searched Warp known issues page](https://docs.warp.dev/help/known-issues) and my issue is not there" required: true - label: "I have technical issue and have included the logs (helps expedite the bug fix). [Log instructions](https://docs.warp.dev/support-and-community/troubleshooting-and-support/sending-us-feedback#gathering-warp-logs)" required: false - type: textarea id: "shell-output" attributes: label: "Include shell output" description: "Click on the top right icon of your terminal block, select `Copy`, and paste the contents here. Please redact any personal details." render: shell validations: required: true - type: textarea id: "screenshots-logs" attributes: label: "Screenshots, videos, and logs" description: "If applicable, add screenshots/videos/logs to help us understand your problem. While optional, these help expedite the time in which your bug is addressed." validations: required: false - type: dropdown id: "os" attributes: label: "Operating system (OS)" multiple: false options: - "Select an OS" - macOS - Linux - Windows validations: required: true - type: input id: "os-version" attributes: label: "Operating system and version" description: "For example: Debian 11.2" validations: required: true - type: input id: "warp-version" attributes: label: "Warp Version" description: "Warp Version" validations: required: false - type: dropdown id: "linear-label-ssh-tmux" attributes: label: "Warp Internal (ignore) - linear-label:7a739baa-09c3-499e-a0c9-a1a16c090597" multiple: false options: - Ignore validations: required: false - type: dropdown id: "linear-label-bug" attributes: label: "Warp Internal (ignore): linear-label:b8107fdf-ba31-488d-b103-d271c89cac3e" multiple: false options: - Ignore validations: required: false ================================================ FILE: .github/ISSUE_TEMPLATE/04_ssh_legacy.yml ================================================ name: Legacy SSH Issues? Use this template description: "(Legacy) Issue template specialized for the circumstances where the shell doesn't bootstrap as a subshell over SSH" labels: ["BUG","SSH"] body: - type: checkboxes attributes: label: "Pre-submit Checks" options: - label: "I have [searched Warp SSH issues](https://github.com/warpdotdev/Warp/issues?q=is%3Aissue+is%3Aopen+label%3ASSH) and there are no duplicates" required: true - label: "I have [searched Warp known issues page](https://docs.warp.dev/help/known-issues) and my issue is not there" required: true - label: "I have technical issue and have included the logs (helps expedite the bug fix). [Log instructions](https://docs.warp.dev/support-and-community/troubleshooting-and-support/sending-us-feedback#gathering-warp-logs)" required: false - type: dropdown id: "os" attributes: label: "Operating system (OS)" multiple: false options: - "Select an OS" - macOS - Linux - Windows validations: required: true - type: input id: "os-version" attributes: label: "Operating System and Version" description: "For example: Debian 11.2" validations: required: true - type: input id: "local-shell-version" attributes: label: "Local Shell Version" description: "Output of `echo $BASH_VERSION` or `echo $ZSH_VERSION`" validations: required: true - type: input id: "remote-shell-version" attributes: label: "Remote Shell Version" description: "Output of `echo $BASH_VERSION` or `echo $ZSH_VERSION`" validations: required: true - type: input id: "warp-version" attributes: label: "Warp Version" description: "Click the 3-dots menu docked to the right of the tabs in Warp and click the copy button, e.g. `v0.2022.05.30.09.10.stable_01`" validations: required: true - type: checkboxes id: "rcfiles" attributes: label: "Have you tried commenting out my system & user rc files?" description: "If the issue is with your system and user rc files, please isolate the issue by [debugging your rc files](https://docs.warp.dev/help/known-issues#configuring-and-debugging-your-rc-files)." options: - label: "Yes" - type: textarea id: "screenshots-logs" attributes: label: "Screenshots, videos, and logs" description: "If applicable, add screenshots/videos/logs to help us understand your problem. While optional, these help expedite the time in which your bug is addressed." validations: required: false - type: textarea id: "xtrace-output" attributes: label: "Include shell xtrace output" description: "1. Ensure you're on the 3.31 version of Warp or later. 2. Run WARP_DEBUG_MODE=1 ssh YOUR-HOSTNAME-HERE 3. Save the full output starting from the ssh command block. If you’re not comfortable posting the outputs to a public issue, you can email feedback@warp.dev. " validations: required: true - type: dropdown id: "blocker" attributes: label: "Does this block you from using Warp daily?" description: "All feedback will be reviewed, even if you select 'No'." multiple: false options: - "No" - "Yes, this issue prevents me from using Warp daily." validations: required: true - type: dropdown id: "terminals" attributes: label: "Is this an issue only in Warp?" description: "Verifying this issue doesn't happen in other terminals helps us to prioritize the fix" multiple: false options: - "Yes, I confirmed that this only happens in Warp, not other terminals." - "No, this issue happens in Warp and other terminals." validations: required: true - type: dropdown id: "linear-label-ssh" attributes: label: "Warp Internal (ignore) - linear-label:e7dfaa84-5fdb-4a00-b754-d8912da923fa" multiple: false options: - Ignore validations: required: false - type: dropdown id: "linear-label-bug" attributes: label: "Warp Internal (ignore): linear-label:b8107fdf-ba31-488d-b103-d271c89cac3e" multiple: false options: - Ignore validations: required: false ================================================ FILE: .github/ISSUE_TEMPLATE/config.yml ================================================ blank_issues_enabled: false contact_links: - name: Contact Us url: https://docs.warp.dev/support-and-billing/sending-us-feedback about: Submit feedback and contact the Warp support team for things like Billing, Enterprise, and other issues. - name: Warp GitHub Issue Search url: https://github.com/warpdotdev/warp/issues?q=is%3Aissue+is%3Aopen+a+sort%3Areactions-%2B1-desc about: Search Warp's open issues and feature requests. - name: Warp Documentation url: https://docs.warp.dev/support-and-billing/known-issues?q= about: Documentation for known issues, troubleshooting, keyboard shortcuts, features, telemetry table, and more! - name: Warp Discord Community url: https://discord.com/invite/warpdotdev about: Discuss what you want to see in a Modern ADE with a community of other Warp users. - name: Warp Preview Slack Community url: https://go.warp.dev/join-preview about: Discuss give feedback on the new features with other Warp Preview users. - name: Warp Changelog url: https://docs.warp.dev/help/changelog about: See our changelog to learn about new features, improvements, and bug fixes. - name: Warp Homepage url: https://www.warp.dev/ about: Homepage for all things Warp. - name: Warp Licenses url: https://docs.warp.dev/support-and-billing/licenses about: See the open source projects Warp depends on and their licenses. ================================================ FILE: .github/workflows/dedupe-new-issues.yml ================================================ name: Dedupe New Issues on: issues: types: [opened] # Manual trigger for local testing workflow_dispatch: inputs: server_url: description: 'PowerFixer server URL (e.g., https://your-domain.ngrok-free.dev for local testing)' required: true default: 'https://powerfixer.warp.dev' issue_number: description: 'Issue number to dedupe' required: true jobs: trigger-dedupe: name: Trigger Dedupe Analysis runs-on: ubuntu-latest steps: - name: Set variables id: vars run: | # Use workflow_dispatch inputs if available, otherwise use issue event if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then echo "server_url=${{ github.event.inputs.server_url }}" >> $GITHUB_OUTPUT echo "issue_number=${{ github.event.inputs.issue_number }}" >> $GITHUB_OUTPUT else echo "server_url=https://powerfixer.warp.dev" >> $GITHUB_OUTPUT echo "issue_number=${{ github.event.issue.number }}" >> $GITHUB_OUTPUT fi - name: Trigger PowerFixer Dedupe env: SERVER_URL: ${{ steps.vars.outputs.server_url }} ISSUE_NUMBER: ${{ steps.vars.outputs.issue_number }} run: | echo "Triggering dedupe for issue #${ISSUE_NUMBER} on ${SERVER_URL}" # Only send issue_number and repo - agent fetches issue content live for security curl -s -X POST \ -H "Content-Type: application/json" \ -H "X-Webhook-Api-Key: ${{ secrets.POWERFIXER_WEBHOOK_API_KEY }}" \ -d "{ \"issue_number\": ${ISSUE_NUMBER}, \"repo\": \"warpdotdev/warp\" }" \ "${SERVER_URL}/api/v1/webhook/dedupe" ================================================ FILE: .gitignore ================================================ .trunk/* ================================================ FILE: .gitmodules ================================================ [submodule "themes"] path = themes url = git@github.com:warpdotdev/themes.git [submodule "keysets"] path = keysets url = git@github.com:warpdotdev/keysets.git [submodule "workflows"] path = workflows url = git@github.com:warpdotdev/workflows.git ================================================ FILE: LICENSE ================================================ Warp (https://warp.dev) is currently closed-source. Whether Warp will be open sourced and the strategy around it if so, are both still a work in progress. We're having a discussion on open sourcing Warp, possible licenses, and also the business model in [GitHub discussion #400](https://github.com/warpdotdev/Warp/discussions/400) ================================================ FILE: README.md ================================================ Warp Agentic Development Environment product preview

Website · Code · Agents · Terminal · Drive · Docs · How Warp Works

## About This is an issues-only repo for [Warp](https://www.warp.dev) where you can submit issues, bugs and feature requests. We built Warp to solve two problems we kept hitting as a team writing software: terminals haven't kept up with how developers work today, and agentic development tools don't scale beyond your laptop. **Warp is a modern terminal built for coding with agents.** Warp brings the terminal into the 21st century with modern UI and code editing features. Use Warp’s SOTA built-in agent Oz, or run CLI coding agents like Claude Code, Codex, or Gemini CLI. **Oz is an orchestration platform for cloud agents.** Spin up unlimited parallel coding agents that are programmable, auditable, and fully steerable. Automate repetitive tasks, build on agents, and run them in parallel in the cloud. [Create an agent →](http://warp.dev/oz) ## Installation You can [download Warp](https://www.warp.dev/download) and [read our docs](https://docs.warp.dev/) for platform-specific instructions. ## Changelog and Releases We try to release an update weekly, typically on Thursdays. Read our [changelog (release notes).](https://docs.warp.dev/getting-started/changelog) ## Issues, Bugs, and Feature Requests Please [search](https://github.com/warpdotdev/warp/issues?q=is%3Aissue+is%3Aopen+a+sort%3Areactions-%2B1-desc) through our existing issues for your bug (including workarounds) or feature request. If you can't find a solution above, please file issue requests [in this repo!](https://github.com/warpdotdev/warp/issues/new/choose) We kindly ask that you please use our issue templates to make the issues easier to track for our team. ## Open Source & Contributing We are planning to first open-source our Rust UI framework, and then parts and potentially all of our client codebase. The server portion of Warp will remain closed-source for now. You can see how we’re thinking about open source here: [https://github.com/warpdotdev/Warp/discussions/400](https://github.com/warpdotdev/Warp/discussions/400) As a side note, we are open-sourcing our extension points as we go. The community has already been [contributing new themes](https://github.com/warpdotdev/themes), and our [Workflows repository](https://github.com/warpdotdev/workflows) is open for sharing and collaborating on useful command patterns. Interested in joining the team? See our [open roles](https://www.warp.dev/careers) and feel free to email us: hello at warpdotdev ## Support and Questions 1. See our [docs](https://docs.warp.dev/) for a comprehensive guide to Warp's features. 2. Join our [Slack Community](https://go.warp.dev/join-preview) or [Discord](https://discord.com/invite/warpdotdev) to connect with other users and get help from the Warp team. 3. Try our [Preview build](https://www.warp.dev/download-preview) to test Warp's newest and latest experimental features. For anything else, please don't hesitate to reach out via email at hello at warpdotdev ## Community Guidelines At a high level, we ask everyone to be respectful and empathetic. We follow the [GitHub Community Guidelines](https://docs.github.com/en/github/site-policy/github-community-guidelines): * Be welcoming and open-minded * Respect each other * Communicate with empathy * Be clear and stay on topic ## Open Source Dependencies We'd like to call out a few of the [open source dependencies](https://docs.warp.dev/help/licenses) that have helped Warp to get off the ground: * [Tokio](https://github.com/tokio-rs/tokio) * [NuShell](https://github.com/nushell/nushell) * [Fig Completion Specs](https://github.com/withfig/autocomplete) * [Warp Server Framework](https://github.com/seanmonstar/warp) * [Alacritty](https://github.com/alacritty/alacritty) * [Hyper HTTP library](https://github.com/hyperium/hyper) * [FontKit](https://github.com/servo/font-kit) * [Core-foundation](https://github.com/servo/core-foundation-rs) * [Smol](https://github.com/smol-rs/smol)