tmux-team 1.0.0 → 1.1.0

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/README.md CHANGED
@@ -21,7 +21,7 @@ eval "$(tmux-team completion bash)"
21
21
  ### Claude Code Plugin
22
22
 
23
23
  ```
24
- /plugin marketplace add anthropics/tmux-team
24
+ /plugin marketplace add wkh237/tmux-team
25
25
  /plugin install tmux-team@tmux-team
26
26
  ```
27
27
 
@@ -48,8 +48,8 @@ tmux-team remove gemini
48
48
  ## From Claude Code
49
49
 
50
50
  ```
51
- /team codex "Can you review my changes?"
52
- /team all "I'm refactoring the database schema"
51
+ /tmux-team:team codex "Can you review my changes?"
52
+ /tmux-team:team all "I'm refactoring the database schema"
53
53
  ```
54
54
 
55
55
  ## Commands
package/bin/tmux-team CHANGED
@@ -5,7 +5,7 @@ const path = require('path');
5
5
  const { execSync, spawn } = require('child_process');
6
6
 
7
7
  const CONFIG_FILE = './tmux-team.json';
8
- const VERSION = '1.0.0';
8
+ const VERSION = '1.1.0';
9
9
 
10
10
  // ─────────────────────────────────────────────────────────────
11
11
  // Colors (only when stdout is a TTY)
@@ -210,13 +210,13 @@ ${colors.cyan('To install the tmux-team plugin in Claude Code:')}
210
210
  ${colors.green('1.')} Open Claude Code
211
211
  ${colors.green('2.')} Run these commands:
212
212
 
213
- ${colors.yellow('/plugin marketplace add anthropics/tmux-team')}
213
+ ${colors.yellow('/plugin marketplace add wkh237/tmux-team')}
214
214
  ${colors.yellow('/plugin install tmux-team@tmux-team')}
215
215
 
216
216
  ${colors.green('3.')} Use the slash command:
217
217
 
218
- ${colors.yellow('/team codex "your message"')}
219
- ${colors.yellow('/team gemini "please review this PR"')}
218
+ ${colors.yellow('/tmux-team:team codex "your message"')}
219
+ ${colors.yellow('/tmux-team:team gemini "please review this PR"')}
220
220
  `);
221
221
  }
222
222
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tmux-team",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "CLI tool for AI agent collaboration in tmux - manage cross-pane communication",
5
5
  "bin": {
6
6
  "tmux-team": "./bin/tmux-team"
@@ -20,7 +20,7 @@
20
20
  "license": "MIT",
21
21
  "repository": {
22
22
  "type": "git",
23
- "url": "git+https://github.com/anthropics/tmux-team.git"
23
+ "url": "git+https://github.com/wkh237/tmux-team.git"
24
24
  },
25
25
  "engines": {
26
26
  "node": ">=16"