-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@codexstar/bug-hunter",
"version": "3.1.0",
"description": "Adversarial AI bug hunter — verifies security, logic, and runtime bugs, with explicit reviewed or autonomous fixing modes.",
"license": "MIT",
"main": "bin/bug-hunter",
"type": "commonjs",
"bin": {
"bug-hunter": "bin/bug-hunter"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"ai",
"agent",
"skill",
"bug-hunter",
"security",
"vulnerability",
"code-review",
"auto-fix",
"claude-code",
"cursor",
"codex",
"copilot",
"windsurf",
"opencode",
"kiro",
"multi-agent",
"adversarial",
"static-analysis"
],
"files": [
"bin/",
"scripts/bug-hunter-state.cjs",
"scripts/code-index.cjs",
"scripts/context7-api.cjs",
"scripts/delta-mode.cjs",
"scripts/dep-scan.cjs",
"scripts/doc-lookup.cjs",
"scripts/experiment-loop.cjs",
"scripts/fix-lock.cjs",
"scripts/generated-schema-validators.cjs",
"scripts/payload-guard.cjs",
"scripts/process-runner.cjs",
"scripts/pr-scope.cjs",
"scripts/render-report.cjs",
"scripts/run-bug-hunter.cjs",
"scripts/schema-catalog.cjs",
"scripts/schema-runtime.cjs",
"scripts/schema-validate.cjs",
"scripts/state-store.cjs",
"scripts/artifact-planner.cjs",
"scripts/chunk-scheduler.cjs",
"scripts/triage.cjs",
"scripts/worktree-harvest.cjs",
"schemas/coverage.schema.json",
"schemas/experiment.schema.json",
"schemas/findings.schema.json",
"schemas/fix-plan.schema.json",
"schemas/fix-report.schema.json",
"schemas/fix-strategy.schema.json",
"schemas/fixer-scope.schema.json",
"schemas/recon.schema.json",
"schemas/referee.schema.json",
"schemas/scan-report.schema.json",
"schemas/shared.schema.json",
"schemas/skeptic.schema.json",
"prompts/",
"templates/",
"modes/",
"agents/",
"skills/",
"SKILL.md",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md",
"CODE_OF_CONDUCT.md",
"llms.txt",
"llms-full.txt",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codexstar69/bug-hunter.git"
},
"bugs": {
"url": "https://github.com/codexstar69/bug-hunter/issues"
},
"homepage": "https://github.com/codexstar69/bug-hunter#readme",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.28.1",
"scripts": {
"prepublishOnly": "node scripts/prepublish-guard.cjs",
"prepack": "pnpm check:generated && node --test scripts/tests/*.test.cjs",
"test": "node --test scripts/tests/*.test.cjs",
"generate:schema-validators": "node scripts/generate-schema-validators.cjs",
"check:schema-validators": "node scripts/generate-schema-validators.cjs --check",
"generate:compat-prompts": "node scripts/generate-compat-prompts.cjs",
"check:compat-prompts": "node scripts/generate-compat-prompts.cjs --check",
"check:generated": "pnpm check:schema-validators && pnpm check:compat-prompts",
"verify:package": "node scripts/verify-package-inventory.cjs",
"doctor": "node bin/bug-hunter doctor",
"postinstall": "node -e \"console.log('\\n Run: bug-hunter install to set up the skill\\n Run: bug-hunter doctor to check your environment\\n')\""
},
"devDependencies": {
"ajv": "^8.20.0",
"esbuild": "^0.28.1"
}
}