@miermontoto/vkm 1.1.1 → 1.3.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 +14 -10
- package/bin/download.js +1 -1
- package/package.json +16 -4
package/README.md
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
#
|
|
1
|
+
# vkm
|
|
2
2
|
|
|
3
3
|
> A visual project management tool for developers that integrates with git repositories and coding agents like Claude Code and Amp.
|
|
4
4
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
7
|
-
Run
|
|
7
|
+
Run vkm instantly without installation:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npx
|
|
10
|
+
npx @miermontoto/vkm
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
This will launch the application locally and open it in your browser automatically.
|
|
14
14
|
|
|
15
|
-
## What is
|
|
15
|
+
## What is vkm?
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
vkm 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.
|
|
18
18
|
|
|
19
19
|
### ✨ Key Features
|
|
20
20
|
|
|
@@ -62,11 +62,11 @@ Vibe Kanban is a modern project management tool designed specifically for develo
|
|
|
62
62
|
|
|
63
63
|
## Core Functionality
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
vkm provides a complete project management experience with these key capabilities:
|
|
66
66
|
|
|
67
67
|
**Project Repository Management**
|
|
68
68
|
- Full CRUD operations for managing coding projects
|
|
69
|
-
- Automatic git repository detection and validation
|
|
69
|
+
- Automatic git repository detection and validation
|
|
70
70
|
- Initialize new repositories or import existing ones
|
|
71
71
|
- Project-wide file search functionality
|
|
72
72
|
|
|
@@ -97,7 +97,7 @@ Vibe Kanban provides a complete project management experience with these key cap
|
|
|
97
97
|
|
|
98
98
|
## Configuration
|
|
99
99
|
|
|
100
|
-
|
|
100
|
+
vkm supports customization through its configuration system:
|
|
101
101
|
|
|
102
102
|
- **Editor Integration**: Choose your preferred code editor
|
|
103
103
|
- **Sound Notifications**: Customize completion sounds
|
|
@@ -119,7 +119,7 @@ Vibe Kanban supports customization through its configuration system:
|
|
|
119
119
|
|
|
120
120
|
## Supported Platforms
|
|
121
121
|
|
|
122
|
-
- Linux x64
|
|
122
|
+
- Linux x64/ARM64
|
|
123
123
|
- Windows x64
|
|
124
124
|
- macOS x64 (Intel)
|
|
125
125
|
- macOS ARM64 (Apple Silicon)
|
|
@@ -148,12 +148,16 @@ Vibe Kanban supports customization through its configuration system:
|
|
|
148
148
|
- Create README files and API documentation
|
|
149
149
|
- Maintain up-to-date project information
|
|
150
150
|
|
|
151
|
+
## Fork Information
|
|
152
|
+
|
|
153
|
+
This is an independent fork of [BloopAI/vibe-kanban](https://github.com/BloopAI/vibe-kanban) with additional features and customizations.
|
|
154
|
+
|
|
151
155
|
---
|
|
152
156
|
|
|
153
157
|
**Ready to supercharge your development workflow?**
|
|
154
158
|
|
|
155
159
|
```bash
|
|
156
|
-
npx
|
|
160
|
+
npx @miermontoto/vkm
|
|
157
161
|
```
|
|
158
162
|
|
|
159
163
|
*Start managing your projects with the power of AI coding agents today!*
|
package/bin/download.js
CHANGED
|
@@ -5,7 +5,7 @@ const crypto = require("crypto");
|
|
|
5
5
|
|
|
6
6
|
// Replaced during npm pack by workflow
|
|
7
7
|
const R2_BASE_URL = "https://github.com/miermontoto/vkm/releases/download";
|
|
8
|
-
const BINARY_TAG = "v1.
|
|
8
|
+
const BINARY_TAG = "v1.3.0"; // e.g., v0.0.135-20251215122030
|
|
9
9
|
const CACHE_DIR = path.join(require("os").homedir(), ".vkm", "bin");
|
|
10
10
|
|
|
11
11
|
// Local development mode: use binaries from npx-cli/dist/ instead of R2
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@miermontoto/vkm",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.3.0",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"vkm": "bin/cli.js"
|
|
@@ -10,11 +10,23 @@
|
|
|
10
10
|
"kanban",
|
|
11
11
|
"project-management",
|
|
12
12
|
"task-management",
|
|
13
|
-
"developer-tools"
|
|
13
|
+
"developer-tools",
|
|
14
|
+
"ai-agents",
|
|
15
|
+
"claude",
|
|
16
|
+
"git",
|
|
17
|
+
"worktree"
|
|
14
18
|
],
|
|
15
19
|
"author": "Juan Mier",
|
|
16
|
-
"license": "",
|
|
17
|
-
"
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/miermontoto/vkm.git"
|
|
24
|
+
},
|
|
25
|
+
"homepage": "https://github.com/miermontoto/vkm",
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/miermontoto/vkm/issues"
|
|
28
|
+
},
|
|
29
|
+
"description": "Visual kanban project management for developers with AI coding agent integration",
|
|
18
30
|
"dependencies": {
|
|
19
31
|
"adm-zip": "^0.5.16"
|
|
20
32
|
},
|