tribunal-kit 2.4.2 → 2.4.3

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 CHANGED
@@ -1,38 +1,53 @@
1
- {
2
- "name": "tribunal-kit",
3
- "version": "2.4.2",
4
- "description": "Anti-Hallucination AI Agent Kit — 33 specialist agents, 25 slash commands, Swarm/Supervisor engine, and Tribunal review pipeline for Cursor, Windsurf, and Antigravity.",
5
- "keywords": [
6
- "ai",
7
- "agent",
8
- "hallucination",
9
- "cursor",
10
- "windsurf",
11
- "antigravity",
12
- "tribunal",
13
- "code-review",
14
- "llm"
15
- ],
16
- "homepage": "https://github.com/Harmitx7/tribunal-kit",
17
- "repository": {
18
- "type": "git",
19
- "url": "git+https://github.com/Harmitx7/tribunal-kit.git"
20
- },
21
- "license": "MIT",
22
- "bin": {
23
- "tribunal-kit": "bin/tribunal-kit.js",
24
- "tk": "bin/tribunal-kit.js"
25
- },
26
- "files": [
27
- "bin/",
28
- ".agent/",
29
- "README.md",
30
- "LICENSE"
31
- ],
32
- "engines": {
33
- "node": ">=18.0.0"
34
- },
35
- "scripts": {
36
- "test": "echo \"No tests for CLI\" && exit 0"
37
- }
38
- }
1
+ {
2
+ "name": "tribunal-kit",
3
+ "version": "2.4.3",
4
+ "description": "Anti-Hallucination AI Agent Kit — 33 specialist agents, 25 slash commands, Swarm/Supervisor engine, and Tribunal review pipeline for Cursor, Windsurf, and Antigravity.",
5
+ "keywords": [
6
+ "ai",
7
+ "agent",
8
+ "hallucination",
9
+ "cursor",
10
+ "windsurf",
11
+ "antigravity",
12
+ "tribunal",
13
+ "code-review",
14
+ "llm"
15
+ ],
16
+ "homepage": "https://github.com/Harmitx7/tribunal-kit",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/Harmitx7/tribunal-kit.git"
20
+ },
21
+ "license": "MIT",
22
+ "bin": {
23
+ "tribunal-kit": "bin/tribunal-kit.js",
24
+ "tk": "bin/tribunal-kit.js"
25
+ },
26
+ "files": [
27
+ "bin/",
28
+ ".agent/",
29
+ "README.md",
30
+ "LICENSE"
31
+ ],
32
+ "engines": {
33
+ "node": ">=18.0.0"
34
+ },
35
+ "scripts": {
36
+ "test": "jest --coverage",
37
+ "test:unit": "jest test/unit --coverage",
38
+ "test:integration": "jest test/integration --coverage"
39
+ },
40
+ "devDependencies": {
41
+ "jest": "^29.7.0"
42
+ },
43
+ "jest": {
44
+ "testMatch": [
45
+ "**/test/**/*.test.js"
46
+ ],
47
+ "testEnvironment": "node",
48
+ "coverageDirectory": "coverage",
49
+ "collectCoverageFrom": [
50
+ "bin/**/*.js"
51
+ ]
52
+ }
53
+ }