@dmsdc-ai/aigentry-devkit 0.1.9 → 0.1.10

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.
Files changed (2) hide show
  1. package/install.ps1 +2 -24
  2. package/package.json +1 -1
package/install.ps1 CHANGED
@@ -46,30 +46,8 @@ if (-not $npmCmd) {
46
46
  if (Get-Command tmux -ErrorAction SilentlyContinue) {
47
47
  Write-Info "tmux found (deliberation monitor can run in tmux)"
48
48
  } else {
49
- Write-Info "tmux not found. Attempting to install..."
50
- $tmuxInstalled = $false
51
- if (Get-Command choco -ErrorAction SilentlyContinue) {
52
- try {
53
- choco install tmux -y | Out-Null
54
- $tmuxInstalled = $true
55
- } catch {}
56
- } elseif (Get-Command scoop -ErrorAction SilentlyContinue) {
57
- try {
58
- scoop install tmux | Out-Null
59
- $tmuxInstalled = $true
60
- } catch {}
61
- } elseif (Get-Command winget -ErrorAction SilentlyContinue) {
62
- try {
63
- winget install tmux --accept-source-agreements --accept-package-agreements | Out-Null
64
- $tmuxInstalled = $true
65
- } catch {}
66
- }
67
- if ($tmuxInstalled) {
68
- Write-Info "tmux installed successfully"
69
- } else {
70
- Write-Warn "tmux not installed. Install manually via choco/scoop/winget, or use WSL."
71
- Write-Warn "Deliberation monitor auto-window is disabled."
72
- }
49
+ Write-Warn "tmux is not natively available on Windows. Deliberation monitor auto-window is disabled."
50
+ Write-Warn "This does not affect deliberation functionality. tmux is optional (macOS/Linux only)."
73
51
  }
74
52
 
75
53
  if (Get-Command claude -ErrorAction SilentlyContinue) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dmsdc-ai/aigentry-devkit",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Cross-platform installer and tooling bundle for aigentry-devkit",
5
5
  "license": "MIT",
6
6
  "repository": {