@quantiya/codevibe-claude-plugin 1.0.18 → 1.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +1 -1
- package/bin/codevibe-claude +14 -3
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codevibe-claude",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"description": "Sync Claude Code sessions with iOS mobile app via AWS backend. Control Claude Code from your phone with real-time bidirectional synchronization.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodeVibe Team"
|
package/bin/codevibe-claude
CHANGED
|
@@ -130,11 +130,22 @@ tmux new-session -d -s "$SESSION_NAME" -x "$(tput cols)" -y "$(tput lines)" \
|
|
|
130
130
|
# Enable mouse support for scrolling
|
|
131
131
|
tmux set-option -t "$SESSION_NAME" -g mouse on
|
|
132
132
|
|
|
133
|
-
# Enable copy/paste with system clipboard (macOS)
|
|
133
|
+
# Enable copy/paste with system clipboard (macOS: pbcopy, WSL: clip.exe, Linux: xclip)
|
|
134
134
|
tmux set-option -t "$SESSION_NAME" set-clipboard on
|
|
135
135
|
tmux set-window-option -t "$SESSION_NAME" mode-keys vi
|
|
136
|
-
|
|
137
|
-
|
|
136
|
+
if command -v pbcopy >/dev/null 2>&1; then
|
|
137
|
+
CLIP_CMD="pbcopy"
|
|
138
|
+
elif grep -qi microsoft /proc/sys/kernel/osrelease 2>/dev/null && command -v clip.exe >/dev/null 2>&1; then
|
|
139
|
+
CLIP_CMD="clip.exe"
|
|
140
|
+
elif command -v wl-copy >/dev/null 2>&1; then
|
|
141
|
+
CLIP_CMD="wl-copy"
|
|
142
|
+
elif command -v xclip >/dev/null 2>&1; then
|
|
143
|
+
CLIP_CMD="xclip -selection clipboard"
|
|
144
|
+
fi
|
|
145
|
+
if [ -n "${CLIP_CMD:-}" ]; then
|
|
146
|
+
tmux bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "$CLIP_CMD"
|
|
147
|
+
tmux bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "$CLIP_CMD"
|
|
148
|
+
fi
|
|
138
149
|
|
|
139
150
|
# Store session mapping for the MCP server to find
|
|
140
151
|
# The session-start hook will update this with the actual Claude session ID
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quantiya/codevibe-claude-plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"description": "Control Claude Code from your iPhone and Android — real-time sync, approve file edits, send prompts by voice. Part of CodeVibe.",
|
|
5
5
|
"main": "dist/server.js",
|
|
6
6
|
"bin": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"node": ">=18.0.0"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@quantiya/codevibe-core": "^1.0.
|
|
50
|
+
"@quantiya/codevibe-core": "^1.0.11",
|
|
51
51
|
"dotenv": "^16.6.1",
|
|
52
52
|
"express": "^5.1.0",
|
|
53
53
|
"graphql": "^16.12.0",
|