Initial public release of Warp.

Repo-Sync-Origin: warpdotdev/warp-internal@12af1d983b
This commit is contained in:
David Stern
2026-04-28 08:43:33 -05:00
commit 0dbd3d567a
4982 changed files with 1431549 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
{}
+1
View File
@@ -0,0 +1 @@
../.agents/skills
+23
View File
@@ -0,0 +1,23 @@
#!/bin/bash
# Read JSON input from stdin
input=$(cat)
# Extract model display name
MODEL=$(echo "$input" | jq -r '.model.display_name // "Claude"')
# Extract current working directory (just the folder name)
CURRENT_DIR=$(echo "$input" | jq -r '.workspace.current_dir // "~"')
DIR_NAME="${CURRENT_DIR##*/}"
# Get git branch if in a git repository
GIT_BRANCH=""
if git rev-parse --git-dir > /dev/null 2>&1; then
BRANCH=$(git branch --show-current 2>/dev/null)
if [ -n "$BRANCH" ]; then
GIT_BRANCH=" | Branch: $BRANCH"
fi
fi
# Output formatted status line
echo "[$MODEL] 📁 $DIR_NAME$GIT_BRANCH"