kanban-crew 0.1.36

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 +182 -0
  2. package/bin/cli.js +1357 -0
  3. package/package.json +35 -0
package/README.md ADDED
@@ -0,0 +1,182 @@
1
+ # Kanban Crew
2
+
3
+ > A visual project management tool for developers that integrates with git repositories and coding agents like Claude Code and Amp.
4
+
5
+ ## Quick Start
6
+
7
+ Run kanban crew instantly without installation:
8
+
9
+ ```bash
10
+ npx kanban-crew
11
+ ```
12
+
13
+ This will launch the application locally and open it in your browser automatically.
14
+
15
+ Helpful entrypoints:
16
+
17
+ ```bash
18
+ npx kanban-crew --help
19
+ npx kanban-crew --version
20
+ npx kanban-crew review --help
21
+ npx kanban-crew mcp --help
22
+ ```
23
+
24
+ ## What is Kanban Crew?
25
+
26
+ Kanban Crew is a modern project management tool designed specifically for developers. It helps you organize your coding projects with kanban-style task management while providing powerful integrations with git repositories and AI coding agents.
27
+
28
+ ### ✨ Key Features
29
+
30
+ **🗂️ Project Management**
31
+
32
+ - Add git repositories as projects (existing or create new ones)
33
+ - Automatic git integration and repository validation
34
+ - Project search functionality across all files
35
+ - Custom setup and development scripts per project
36
+
37
+ **📋 Task Management**
38
+
39
+ - Create and manage tasks with kanban-style boards
40
+ - Task status tracking (Todo, In Progress, Done)
41
+ - Rich task descriptions and notes
42
+ - Task execution with multiple AI agents
43
+
44
+ **🤖 AI Agent Integration**
45
+
46
+ - **Claude**: Advanced AI coding assistant
47
+ - **Amp**: Powerful development agent
48
+ - **Echo**: Simple testing/debugging agent
49
+ - Create tasks and immediately start agent execution
50
+ - Follow-up task execution for iterative development
51
+
52
+ **⚡ Development Workflow**
53
+
54
+ - Create isolated git worktrees for each task attempt
55
+ - View diffs of changes made by agents
56
+ - Merge successful changes back to main branch
57
+ - Rebase task branches to stay up-to-date
58
+ - Manual file editing and deletion
59
+ - Integrated development server support
60
+
61
+ **🎛️ Developer Tools**
62
+
63
+ - Browse and validate git repositories from filesystem
64
+ - Open task worktrees in your preferred editor (VS Code, Cursor, Windsurf, IntelliJ, Zed)
65
+ - Real-time execution monitoring and process control
66
+ - Stop running processes individually or all at once
67
+ - Sound notifications for task completion
68
+
69
+ ## How It Works
70
+
71
+ 1. **Add Projects**: Import existing git repositories or create new ones
72
+ 2. **Create Tasks**: Define what needs to be built or fixed
73
+ 3. **Execute with AI**: Let coding agents work on your tasks in isolated environments
74
+ 4. **Review Changes**: See exactly what was modified using git diffs
75
+ 5. **Merge Results**: Incorporate successful changes into your main codebase
76
+
77
+ ## Core Functionality
78
+
79
+ Kanban Crew provides a complete project management experience with these key capabilities:
80
+
81
+ **Project Repository Management**
82
+
83
+ - Full CRUD operations for managing coding projects
84
+ - Automatic git repository detection and validation
85
+ - Initialize new repositories or import existing ones
86
+ - Project-wide file search functionality
87
+
88
+ **Task Lifecycle Management**
89
+
90
+ - Create, update, and delete tasks with rich descriptions
91
+ - Track task progress through customizable status workflows
92
+ - One-click task creation with immediate AI agent execution
93
+ - Task attempt tracking with detailed execution history
94
+
95
+ **AI Agent Execution Environment**
96
+
97
+ - Isolated git worktrees for safe code experimentation
98
+ - Real-time execution monitoring and activity logging
99
+ - Process management with ability to stop individual or all processes
100
+ - Support for follow-up executions to iterate on solutions
101
+
102
+ **Code Change Management**
103
+
104
+ - View detailed diffs of all changes made during task execution
105
+ - Branch status monitoring to track divergence from main
106
+ - One-click merging of successful changes back to main branch
107
+ - Automatic rebasing to keep task branches up-to-date
108
+ - Manual file deletion and cleanup capabilities
109
+
110
+ **Development Integration**
111
+
112
+ - Open task worktrees directly in your preferred code editor
113
+ - Start and manage development servers for testing changes
114
+ - Browse local filesystem to add new projects
115
+ - Health monitoring for service availability
116
+
117
+ ## Configuration
118
+
119
+ Kanban Crew supports customization through its configuration system:
120
+
121
+ - **Editor Integration**: Choose your preferred code editor
122
+ - **Sound Notifications**: Customize completion sounds
123
+ - **Project Defaults**: Set default setup and development scripts
124
+
125
+ ## Technical Architecture
126
+
127
+ - **Backend**: Rust with Axum web framework
128
+ - **Frontend**: React with TypeScript
129
+ - **Database**: SQLite for local data storage
130
+ - **Git Integration**: Native git operations for repository management
131
+ - **Process Management**: Tokio-based async execution monitoring
132
+
133
+ ## Requirements
134
+
135
+ - Node.js (for npx execution)
136
+ - Git (for repository operations)
137
+ - Your preferred code editor (optional, for opening task worktrees)
138
+
139
+ ## Supported Platforms
140
+
141
+ - Linux x64
142
+ - Windows x64
143
+ - macOS x64 (Intel)
144
+ - macOS ARM64 (Apple Silicon)
145
+
146
+ ## Use Cases
147
+
148
+ **🔧 Bug Fixes**
149
+
150
+ - Create a task describing the bug
151
+ - Let an AI agent analyze and fix the issue
152
+ - Review the proposed changes
153
+ - Merge if satisfied, or provide follow-up instructions
154
+
155
+ **✨ Feature Development**
156
+
157
+ - Break down features into manageable tasks
158
+ - Use agents for initial implementation
159
+ - Iterate with follow-up executions
160
+ - Test using integrated development servers
161
+
162
+ **🚀 Project Setup**
163
+
164
+ - Bootstrap new projects with AI assistance
165
+ - Set up development environments
166
+ - Configure build and deployment scripts
167
+
168
+ **📚 Code Documentation**
169
+
170
+ - Generate documentation for existing code
171
+ - Create README files and API documentation
172
+ - Maintain up-to-date project information
173
+
174
+ ---
175
+
176
+ **Ready to supercharge your development workflow?**
177
+
178
+ ```bash
179
+ npx kanban-crew
180
+ ```
181
+
182
+ _Start managing your projects with the power of AI coding agents today!_