@a4hgehad/weave-mcp 0.7.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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +380 -0
  3. package/dist/index.js +6023 -0
  4. package/package.json +55 -0
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@a4hgehad/weave-mcp",
3
+ "version": "0.7.1",
4
+ "description": "Weave — lean OpenCode plugin with multi-agent orchestration",
5
+ "author": "Weave",
6
+ "license": "MIT",
7
+ "homepage": "https://github.com/pgermishuys/weave#readme",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/pgermishuys/weave.git"
11
+ },
12
+ "main": "dist/index.js",
13
+ "types": "dist/index.d.ts",
14
+ "type": "module",
15
+ "exports": {
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "import": "./dist/index.js"
19
+ }
20
+ },
21
+ "files": [
22
+ "dist/"
23
+ ],
24
+ "scripts": {
25
+ "build": "bun run script/build.ts && tsc --emitDeclarationOnly",
26
+ "clean": "rm -rf dist",
27
+ "typecheck": "tsc --noEmit",
28
+ "test": "bun test",
29
+ "eval": "bun run script/eval.ts",
30
+ "eval:smoke": "bun run script/eval.ts --suite pr-smoke",
31
+ "eval:coverage": "bun run script/verify-eval-coverage.ts"
32
+ },
33
+ "keywords": [
34
+ "opencode",
35
+ "plugin",
36
+ "agents",
37
+ "weave"
38
+ ],
39
+ "publishConfig": {
40
+ "registry": "https://registry.npmjs.org",
41
+ "access": "public"
42
+ },
43
+ "dependencies": {
44
+ "@opencode-ai/plugin": "^1.1.19",
45
+ "@opencode-ai/sdk": "^1.1.19",
46
+ "jsonc-parser": "^3.3.1",
47
+ "picocolors": "^1.1.1",
48
+ "zod": "^4.0.0"
49
+ },
50
+ "devDependencies": {
51
+ "bun": "^1.3.9",
52
+ "bun-types": "^1.3.6",
53
+ "typescript": "^5.7.3"
54
+ }
55
+ }