-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.36 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
{
"name": "codebase-dna-guardian",
"version": "1.0.0",
"description": "A Claude Code skill that extracts and enforces a codebase's tribal knowledge — naming conventions, architectural patterns, error handling strategies, and dependency choices.",
"keywords": [
"claude-code",
"claude-code-skill",
"codebase",
"architecture",
"conventions",
"tribal-knowledge",
"code-review",
"ai-assistant"
],
"homepage": "https://github.com/mturac/codebase-dna-guardian",
"bugs": {
"url": "https://github.com/mturac/codebase-dna-guardian/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mturac/codebase-dna-guardian.git"
},
"license": "MIT",
"author": "Mehmet Turac <mehmet.turac@havas.com>",
"files": [
"SKILL.md",
"references/",
"templates/",
"scripts/"
],
"scripts": {
"dashboard": "cd scripts && npm install && npm run dev",
"dashboard:build": "cd scripts && npm install && npm run build"
},
"skillssh": "npx skills add mturac/codebase-dna-guardian",
"claude-code": {
"skill": "SKILL.md",
"type": "skill",
"commands": [
"/dna-scan",
"/dna-check",
"/dna-refactor",
"/dna-report",
"/dna-preview",
"/dna-onboard",
"/dna-diff",
"/dna-guard"
]
},
"dependencies": {
"codebase-dna-guardian": "^1.0.0"
}
}