-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.16 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
{
"name": "@saitarrunpitta/devforge-ai",
"version": "2.0.5",
"description": "Optimised SDLC AI workflow — 10 agents × 5 phases (Plan → Build → Verify → Ship → Operate) with tracer bullet delivery, self-correction loops, and Linear integration for Claude Code.",
"keywords": [
"flowforge",
"claude-code",
"claude-code-plugin",
"sdlc",
"sdlc-workflow",
"sdlc-orchestration",
"workflow-automation",
"ai-agents",
"multi-agent-system",
"agent-orchestration",
"software-development",
"software-engineering",
"development",
"testing",
"security",
"devops",
"code-generation",
"architecture-design",
"architecture-decision-records",
"adr",
"threat-modeling",
"security-audit",
"code-quality",
"code-review",
"testing-framework",
"test-automation",
"deployment-automation",
"ci-cd",
"automation-framework",
"ai-powered",
"developer-tools",
"productivity",
"plugin",
"orchestration",
"automation",
"agents"
],
"homepage": "https://github.com/saitarrun/devforge-ai",
"repository": {
"type": "git",
"url": "git+https://github.com/saitarrun/devforge-ai.git"
},
"bugs": {
"url": "https://github.com/saitarrun/devforge-ai/issues"
},
"author": {
"name": "saitarrun",
"email": "saitarrunpitta@gmail.com"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"files": [
"README.md",
"CLAUDE.md",
"INSTALLATION.md",
"agents/",
"skills/",
"commands/",
"scripts/",
".claude-plugin/",
"integrations/",
"docs/"
],
"scripts": {
"validate": "node scripts/validate-plugin.js",
"install-local": "node scripts/install-local.js",
"uninstall": "node scripts/uninstall.js",
"test": "echo 'Plugin tests would run here' && exit 0"
},
"bin": {
"devforge-ai": "scripts/cli.js"
},
"claude": {
"type": "plugin",
"agents": "agents/",
"skills": "skills/",
"commands": "commands/",
"integrations": {
"code-review-graph": {
"path": "integrations/code-review-graph",
"bundled": true,
"autoLoad": true
}
}
}
}