bobs-workshop 0.1.4 → 0.1.5
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 +9 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
*From "hey bob, build this" to production-ready code — all in one seamless flow.*
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
<img src="assets/web-banner.jpg" alt="Banner" width="60%" />
|
|
8
8
|
|
|
9
9
|
**Finally, AI development that feels like teamwork.**
|
|
10
10
|
Bob's Workshop MCP turns complex coding workflows into clear, auditable phases — from **architecture planning**, to **implementation**, **debugging**, and **review** — all captured inside a living manual that evolves as you build.
|
|
@@ -119,19 +119,24 @@ And watch the magic unfold:
|
|
|
119
119
|
### Manual installation
|
|
120
120
|
|
|
121
121
|
```bash
|
|
122
|
-
# Install globally
|
|
122
|
+
# Install globally from npm
|
|
123
123
|
npm install -g bobs-workshop
|
|
124
124
|
|
|
125
125
|
# Register with Claude Code (project scope)
|
|
126
|
-
claude mcp add bobs-workshop
|
|
126
|
+
claude mcp add bobs-workshop bobs --scope project
|
|
127
127
|
|
|
128
128
|
# Or register globally
|
|
129
|
-
claude mcp add bobs-workshop
|
|
129
|
+
claude mcp add bobs-workshop bobs --scope global
|
|
130
130
|
|
|
131
131
|
# Launch dashboard
|
|
132
132
|
bobs workshop
|
|
133
133
|
```
|
|
134
134
|
|
|
135
|
+
After installation, the `bobs` command will be available globally. The package will automatically:
|
|
136
|
+
- Build the TypeScript source
|
|
137
|
+
- Install search tools (ripgrep)
|
|
138
|
+
- Initialize the workspace structure
|
|
139
|
+
|
|
135
140
|
See the documentation for advanced setup and configuration options.
|
|
136
141
|
|
|
137
142
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bobs-workshop",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Bob's Workshop — agentic development helper with observability, guard rails, research, and review capabilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"fs-extra": "^11.x",
|
|
26
26
|
"multer": "^2.0.2",
|
|
27
27
|
"simple-git": "^3.x",
|
|
28
|
+
"typescript": "^5.x",
|
|
28
29
|
"uuid": "^9.x",
|
|
29
30
|
"zod": "^3.x"
|
|
30
31
|
},
|
|
@@ -41,8 +42,7 @@
|
|
|
41
42
|
"eslint": "^8.x",
|
|
42
43
|
"jest": "^29.x",
|
|
43
44
|
"ts-jest": "^29.x",
|
|
44
|
-
"tsx": "^4.x"
|
|
45
|
-
"typescript": "^5.x"
|
|
45
|
+
"tsx": "^4.x"
|
|
46
46
|
},
|
|
47
47
|
"keywords": [
|
|
48
48
|
"mcp",
|