knit-mcp 0.6.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/package.json ADDED
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "knit-mcp",
3
+ "version": "0.6.0",
4
+ "description": "Knit — second brain for Claude Code. MCP server giving any AI agent project-scoped memory, tiered workflow protocol, and parallel team worktrees.",
5
+ "type": "module",
6
+ "bin": {
7
+ "knit": "dist/cli.js"
8
+ },
9
+ "scripts": {
10
+ "dev": "tsx src/cli.ts",
11
+ "build": "tsup src/cli.ts --format esm --dts --clean && npm run vendor-agents",
12
+ "vendor-agents": "node scripts/vendor-agents.mjs",
13
+ "typecheck": "tsc --noEmit",
14
+ "lint": "eslint src/ tests/ --ext .ts",
15
+ "test": "vitest run",
16
+ "test:watch": "vitest",
17
+ "prepublishOnly": "npm run typecheck && npm run lint && npm run test && npm run build"
18
+ },
19
+ "keywords": [
20
+ "ai",
21
+ "agent",
22
+ "memory",
23
+ "workflow",
24
+ "claude-code",
25
+ "mcp",
26
+ "mcp-server",
27
+ "second-brain",
28
+ "developer-tools",
29
+ "knit"
30
+ ],
31
+ "author": "Piyush Dua",
32
+ "license": "MIT",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "git+https://github.com/PDgit12/knit.git"
36
+ },
37
+ "homepage": "https://github.com/PDgit12/knit",
38
+ "bugs": {
39
+ "url": "https://github.com/PDgit12/knit/issues"
40
+ },
41
+ "devDependencies": {
42
+ "@eslint/js": "^9.39.4",
43
+ "@types/gradient-string": "^1.1.6",
44
+ "@types/node": "^22.0.0",
45
+ "eslint": "^9.0.0",
46
+ "tsup": "^8.0.0",
47
+ "tsx": "^4.0.0",
48
+ "typescript": "^5.7.0",
49
+ "typescript-eslint": "^8.59.3",
50
+ "vitest": "^3.0.0"
51
+ },
52
+ "dependencies": {
53
+ "@modelcontextprotocol/sdk": "^1.29.0",
54
+ "chalk": "^5.4.0",
55
+ "commander": "^13.0.0",
56
+ "gradient-string": "^3.0.0",
57
+ "ora": "^8.0.0"
58
+ },
59
+ "engines": {
60
+ "node": ">=18"
61
+ },
62
+ "exports": {
63
+ ".": {
64
+ "import": "./dist/cli.js",
65
+ "types": "./dist/cli.d.ts"
66
+ }
67
+ },
68
+ "files": [
69
+ "dist",
70
+ "THIRD-PARTY-NOTICES.md"
71
+ ]
72
+ }