dmux 0.0.1

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 (3) hide show
  1. package/README.md +29 -0
  2. package/index.js +3 -0
  3. package/package.json +18 -0
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # dmux
2
+
3
+ ⚠️ **This is a placeholder package** ⚠️
4
+
5
+ The actual dmux package is currently in development.
6
+
7
+ ## What is dmux?
8
+
9
+ dmux (developer mux) will be a sophisticated tmux pane manager that creates AI-powered development sessions. It provides seamless integration between tmux, git worktrees, and AI agents to enable parallel development workflows with automatic branch management and AI assistance.
10
+
11
+ ## Key Features (Coming Soon)
12
+
13
+ - **Project-specific tmux sessions**: Each project gets its own isolated tmux session
14
+ - **Git worktree integration**: Each pane operates in its own git worktree with a dedicated branch
15
+ - **AI agent automation**: Automatically launches AI agents with prompts
16
+ - **Intelligent merge workflows**: Auto-commits, generates commit messages, and merges worktrees
17
+ - **React-based TUI**: Interactive terminal UI for managing panes
18
+
19
+ ## Installation
20
+
21
+ This placeholder package cannot be installed yet. The full version will be available soon.
22
+
23
+ ## Status
24
+
25
+ Currently in active development. Please check back later for the full release.
26
+
27
+ ## License
28
+
29
+ MIT
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ console.log('dmux - Package coming soon! This is a placeholder to reserve the npm package name.');
2
+ console.log('dmux will be a tmux pane manager with AI agent integration.');
3
+ console.log('For more information, please check back later.');
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "dmux",
3
+ "version": "0.0.1",
4
+ "description": "dmux - tmux pane manager with AI agent integration (placeholder package)",
5
+ "main": "index.js",
6
+ "scripts": {},
7
+ "keywords": ["tmux", "pane", "manager", "ai", "development"],
8
+ "author": "",
9
+ "license": "MIT",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/yourusername/dmux"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/yourusername/dmux/issues"
16
+ },
17
+ "homepage": "https://github.com/yourusername/dmux#readme"
18
+ }