@dogfood-lab/study-swarm 0.0.0 → 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/CHANGELOG.md +26 -0
- package/LICENSE +21 -0
- package/PROTOCOL.md +108 -0
- package/README.es.md +92 -0
- package/README.fr.md +92 -0
- package/README.hi.md +92 -0
- package/README.it.md +92 -0
- package/README.ja.md +92 -0
- package/README.md +88 -6
- package/README.pt-BR.md +92 -0
- package/README.zh.md +92 -0
- package/SECURITY.md +23 -0
- package/bin/study-swarm.mjs +152 -0
- package/package.json +41 -8
package/package.json
CHANGED
|
@@ -1,17 +1,50 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dogfood-lab/study-swarm",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"description": "Ground design decisions in cited research, then verify every citation with a different model family before it becomes canon — a research-grounded design protocol, with a thin CLI.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"methodology",
|
|
7
|
+
"llm",
|
|
8
|
+
"research",
|
|
9
|
+
"citations",
|
|
10
|
+
"verification",
|
|
11
|
+
"ai-agents",
|
|
12
|
+
"fact-checking",
|
|
13
|
+
"prompt-engineering"
|
|
14
|
+
],
|
|
5
15
|
"license": "MIT",
|
|
16
|
+
"author": "mcp-tool-shop <64996768+mcp-tool-shop@users.noreply.github.com>",
|
|
17
|
+
"homepage": "https://dogfood-lab.github.io/study-swarm/",
|
|
6
18
|
"repository": {
|
|
7
19
|
"type": "git",
|
|
8
20
|
"url": "git+https://github.com/dogfood-lab/study-swarm.git"
|
|
9
21
|
},
|
|
10
|
-
"
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/dogfood-lab/study-swarm/issues"
|
|
24
|
+
},
|
|
25
|
+
"type": "module",
|
|
26
|
+
"bin": {
|
|
27
|
+
"study-swarm": "bin/study-swarm.mjs"
|
|
28
|
+
},
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=18"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"verify": "node scripts/smoke.mjs"
|
|
34
|
+
},
|
|
11
35
|
"files": [
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
|
|
36
|
+
"bin/",
|
|
37
|
+
"README.md",
|
|
38
|
+
"README.ja.md",
|
|
39
|
+
"README.zh.md",
|
|
40
|
+
"README.es.md",
|
|
41
|
+
"README.fr.md",
|
|
42
|
+
"README.hi.md",
|
|
43
|
+
"README.it.md",
|
|
44
|
+
"README.pt-BR.md",
|
|
45
|
+
"PROTOCOL.md",
|
|
46
|
+
"SECURITY.md",
|
|
47
|
+
"LICENSE",
|
|
48
|
+
"CHANGELOG.md"
|
|
49
|
+
]
|
|
17
50
|
}
|