opencode-sdlc-plugin 1.0.0-alpha.0 → 1.1.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/config/presets/event-modeling.json +13 -2
- package/config/presets/minimal.json +29 -16
- package/config/presets/standard.json +13 -2
- package/dist/cli/index.js +1117 -1524
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +507 -0
- package/dist/index.js.map +1 -1
- package/dist/plugin/index.js +507 -0
- package/dist/plugin/index.js.map +1 -1
- package/package.json +2 -1
- package/config/presets/copilot-only.json +0 -76
- package/config/presets/enterprise.json +0 -79
- package/config/presets/solo-quick.json +0 -70
- package/config/presets/strict-tdd.json +0 -79
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-sdlc-plugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Strict TDD enforcement with domain modeling, event modeling, and GitHub Issues integration for OpenCode",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"opencode",
|
|
@@ -63,6 +63,7 @@
|
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@inquirer/prompts": "^7.10.1",
|
|
66
|
+
"@octokit/rest": "^22.0.1",
|
|
66
67
|
"chalk": "^5.6.2",
|
|
67
68
|
"commander": "^12.1.0",
|
|
68
69
|
"fdir": "^6.5.0",
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "../schemas/sdlc.schema.json",
|
|
3
|
-
"version": "0.3.0",
|
|
4
|
-
"description": "Configuration for users with only GitHub Copilot access (Business/Enterprise).",
|
|
5
|
-
"subscriptions": {
|
|
6
|
-
"claude": { "enabled": false, "tier": "none" },
|
|
7
|
-
"openai": { "enabled": false },
|
|
8
|
-
"google": { "enabled": false, "authMethod": "none" },
|
|
9
|
-
"githubCopilot": { "enabled": true, "plan": "business" }
|
|
10
|
-
},
|
|
11
|
-
"models": {
|
|
12
|
-
"marvin": "github-copilot/gpt-5.2-codex",
|
|
13
|
-
"oracle": "github-copilot/gpt-5.2",
|
|
14
|
-
"librarian": "github-copilot/claude-haiku-4.5",
|
|
15
|
-
"frontend": "github-copilot/claude-sonnet-4.5",
|
|
16
|
-
"documentWriter": "github-copilot/gemini-3-pro",
|
|
17
|
-
"multimodalLooker": "github-copilot/gemini-3-flash",
|
|
18
|
-
"explore": "github-copilot/gemini-3-flash",
|
|
19
|
-
"settings": {
|
|
20
|
-
"marvin": { "temperature": 0.2 },
|
|
21
|
-
"oracle": { "temperature": 0.1 },
|
|
22
|
-
"documentWriter": { "temperature": 0.4 },
|
|
23
|
-
"multimodalLooker": { "temperature": 0.2 },
|
|
24
|
-
"explore": { "temperature": 0.2 }
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
"tdd": {
|
|
28
|
-
"enabled": true,
|
|
29
|
-
"verbosity": "brief",
|
|
30
|
-
"bypassPatterns": ["*.config.*", "*.json", "*.md", "*.yaml", "*.yml"],
|
|
31
|
-
"mutationTesting": {
|
|
32
|
-
"enabled": false,
|
|
33
|
-
"requiredScore": 80
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"eventModeling": {
|
|
37
|
-
"enabled": false,
|
|
38
|
-
"outputPath": "docs/event-model"
|
|
39
|
-
},
|
|
40
|
-
"git": {
|
|
41
|
-
"workflow": "standard",
|
|
42
|
-
"requireClean": true,
|
|
43
|
-
"worktrees": false
|
|
44
|
-
},
|
|
45
|
-
"features": {
|
|
46
|
-
"orchestratorOnly": false,
|
|
47
|
-
"todoSync": true,
|
|
48
|
-
"partyReview": true,
|
|
49
|
-
"debuggingProtocol": false,
|
|
50
|
-
"memento": false,
|
|
51
|
-
"notifications": true,
|
|
52
|
-
"lspTools": true
|
|
53
|
-
},
|
|
54
|
-
"mcps": {
|
|
55
|
-
"context7": true,
|
|
56
|
-
"exa": true,
|
|
57
|
-
"grepApp": true,
|
|
58
|
-
"memento": false
|
|
59
|
-
},
|
|
60
|
-
"routing": {
|
|
61
|
-
"providerPriority": ["github-copilot"],
|
|
62
|
-
"modelFamilyPriority": {
|
|
63
|
-
"claude": ["github-copilot"],
|
|
64
|
-
"gpt": ["github-copilot"],
|
|
65
|
-
"gemini": ["github-copilot"]
|
|
66
|
-
},
|
|
67
|
-
"agentOverrides": {
|
|
68
|
-
"oracle": { "requiresThinking": false }
|
|
69
|
-
},
|
|
70
|
-
"fallbackBehavior": {
|
|
71
|
-
"autoFallback": false,
|
|
72
|
-
"retryPeriodMs": 300000,
|
|
73
|
-
"notifyOnRateLimit": true
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "../schemas/sdlc.schema.json",
|
|
3
|
-
"version": "0.3.0",
|
|
4
|
-
"description": "Enterprise configuration - All features enabled, optimized for Claude Max 20x with OpenAI and Google.",
|
|
5
|
-
"subscriptions": {
|
|
6
|
-
"claude": { "enabled": true, "tier": "max20x" },
|
|
7
|
-
"openai": { "enabled": true },
|
|
8
|
-
"google": { "enabled": true, "authMethod": "antigravity" },
|
|
9
|
-
"githubCopilot": { "enabled": false, "plan": "none" }
|
|
10
|
-
},
|
|
11
|
-
"models": {
|
|
12
|
-
"marvin": "anthropic/claude-opus-4-5-thinking",
|
|
13
|
-
"oracle": "openai/gpt-5.2",
|
|
14
|
-
"librarian": "anthropic/claude-sonnet-4-5-thinking",
|
|
15
|
-
"frontend": "google/gemini-3-pro-preview",
|
|
16
|
-
"documentWriter": "anthropic/claude-opus-4-5",
|
|
17
|
-
"multimodalLooker": "google/gemini-3-flash-preview",
|
|
18
|
-
"explore": "google/gemini-3-flash-preview",
|
|
19
|
-
"settings": {
|
|
20
|
-
"marvin": { "thinkingLevel": "high" },
|
|
21
|
-
"oracle": { "thinkingLevel": "high" },
|
|
22
|
-
"librarian": { "thinkingLevel": "medium" },
|
|
23
|
-
"frontend": { "temperature": 0.5 },
|
|
24
|
-
"documentWriter": { "temperature": 0.4 },
|
|
25
|
-
"multimodalLooker": { "temperature": 0.2 },
|
|
26
|
-
"explore": { "thinkingLevel": "off", "temperature": 0.2 }
|
|
27
|
-
}
|
|
28
|
-
},
|
|
29
|
-
"tdd": {
|
|
30
|
-
"enabled": true,
|
|
31
|
-
"verbosity": "explain",
|
|
32
|
-
"bypassPatterns": ["*.config.*", "*.json", "*.md"],
|
|
33
|
-
"mutationTesting": {
|
|
34
|
-
"enabled": true,
|
|
35
|
-
"requiredScore": 85
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
"eventModeling": {
|
|
39
|
-
"enabled": true,
|
|
40
|
-
"outputPath": "docs/event-model"
|
|
41
|
-
},
|
|
42
|
-
"git": {
|
|
43
|
-
"workflow": "standard",
|
|
44
|
-
"requireClean": true,
|
|
45
|
-
"worktrees": true
|
|
46
|
-
},
|
|
47
|
-
"features": {
|
|
48
|
-
"orchestratorOnly": true,
|
|
49
|
-
"todoSync": true,
|
|
50
|
-
"partyReview": true,
|
|
51
|
-
"debuggingProtocol": true,
|
|
52
|
-
"memento": true,
|
|
53
|
-
"notifications": true,
|
|
54
|
-
"lspTools": true
|
|
55
|
-
},
|
|
56
|
-
"mcps": {
|
|
57
|
-
"context7": true,
|
|
58
|
-
"exa": true,
|
|
59
|
-
"grepApp": true,
|
|
60
|
-
"memento": true
|
|
61
|
-
},
|
|
62
|
-
"routing": {
|
|
63
|
-
"providerPriority": ["anthropic", "openai", "google"],
|
|
64
|
-
"modelFamilyPriority": {
|
|
65
|
-
"claude": ["anthropic"],
|
|
66
|
-
"gpt": ["openai"],
|
|
67
|
-
"gemini": ["google"]
|
|
68
|
-
},
|
|
69
|
-
"agentOverrides": {
|
|
70
|
-
"oracle": { "requiresThinking": true },
|
|
71
|
-
"marvin": { "requiresThinking": true }
|
|
72
|
-
},
|
|
73
|
-
"fallbackBehavior": {
|
|
74
|
-
"autoFallback": true,
|
|
75
|
-
"retryPeriodMs": 300000,
|
|
76
|
-
"notifyOnRateLimit": true
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
}
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "../schemas/sdlc.schema.json",
|
|
3
|
-
"version": "0.3.0",
|
|
4
|
-
"description": "Solo quick flow - Fast iteration for solo developers with Claude Max 5x.",
|
|
5
|
-
"subscriptions": {
|
|
6
|
-
"claude": { "enabled": true, "tier": "max5x" },
|
|
7
|
-
"openai": { "enabled": false },
|
|
8
|
-
"google": { "enabled": false, "authMethod": "none" },
|
|
9
|
-
"githubCopilot": { "enabled": false, "plan": "none" }
|
|
10
|
-
},
|
|
11
|
-
"models": {
|
|
12
|
-
"marvin": "anthropic/claude-sonnet-4-5-thinking",
|
|
13
|
-
"oracle": "anthropic/claude-sonnet-4-5-thinking",
|
|
14
|
-
"librarian": "anthropic/claude-sonnet-4-5",
|
|
15
|
-
"explore": "anthropic/claude-sonnet-4-5",
|
|
16
|
-
"settings": {
|
|
17
|
-
"marvin": { "thinkingLevel": "medium" },
|
|
18
|
-
"oracle": { "thinkingLevel": "high" },
|
|
19
|
-
"librarian": { "temperature": 0.3 },
|
|
20
|
-
"explore": { "temperature": 0.2 }
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"tdd": {
|
|
24
|
-
"enabled": true,
|
|
25
|
-
"verbosity": "brief",
|
|
26
|
-
"bypassPatterns": ["*.config.*", "*.json", "*.md", "*.yaml", "*.yml"],
|
|
27
|
-
"mutationTesting": {
|
|
28
|
-
"enabled": false,
|
|
29
|
-
"requiredScore": 80
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
"eventModeling": {
|
|
33
|
-
"enabled": false,
|
|
34
|
-
"outputPath": "docs/event-model"
|
|
35
|
-
},
|
|
36
|
-
"git": {
|
|
37
|
-
"workflow": "standard",
|
|
38
|
-
"requireClean": false,
|
|
39
|
-
"worktrees": false
|
|
40
|
-
},
|
|
41
|
-
"features": {
|
|
42
|
-
"orchestratorOnly": false,
|
|
43
|
-
"todoSync": true,
|
|
44
|
-
"partyReview": false,
|
|
45
|
-
"debuggingProtocol": true,
|
|
46
|
-
"memento": false,
|
|
47
|
-
"notifications": true,
|
|
48
|
-
"lspTools": true
|
|
49
|
-
},
|
|
50
|
-
"mcps": {
|
|
51
|
-
"context7": true,
|
|
52
|
-
"exa": true,
|
|
53
|
-
"grepApp": false,
|
|
54
|
-
"memento": false
|
|
55
|
-
},
|
|
56
|
-
"routing": {
|
|
57
|
-
"providerPriority": ["anthropic"],
|
|
58
|
-
"modelFamilyPriority": {
|
|
59
|
-
"claude": ["anthropic"]
|
|
60
|
-
},
|
|
61
|
-
"agentOverrides": {
|
|
62
|
-
"oracle": { "requiresThinking": true }
|
|
63
|
-
},
|
|
64
|
-
"fallbackBehavior": {
|
|
65
|
-
"autoFallback": false,
|
|
66
|
-
"retryPeriodMs": 300000,
|
|
67
|
-
"notifyOnRateLimit": true
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
}
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "../schemas/sdlc.schema.json",
|
|
3
|
-
"version": "0.3.0",
|
|
4
|
-
"description": "Strict TDD configuration - Full TDD + mutation testing + orchestrator-only pattern. For disciplined development.",
|
|
5
|
-
"subscriptions": {
|
|
6
|
-
"claude": { "enabled": true, "tier": "max5x" },
|
|
7
|
-
"openai": { "enabled": true },
|
|
8
|
-
"google": { "enabled": true, "authMethod": "antigravity" },
|
|
9
|
-
"githubCopilot": { "enabled": false, "plan": "none" }
|
|
10
|
-
},
|
|
11
|
-
"models": {
|
|
12
|
-
"marvin": "anthropic/claude-sonnet-4-5-thinking",
|
|
13
|
-
"oracle": "openai/gpt-5.2",
|
|
14
|
-
"librarian": "anthropic/claude-sonnet-4-5",
|
|
15
|
-
"frontend": "anthropic/claude-sonnet-4-5",
|
|
16
|
-
"documentWriter": "google/gemini-3-pro-preview",
|
|
17
|
-
"multimodalLooker": "google/gemini-3-flash-preview",
|
|
18
|
-
"explore": "google/gemini-3-flash-preview",
|
|
19
|
-
"settings": {
|
|
20
|
-
"marvin": { "thinkingLevel": "high" },
|
|
21
|
-
"oracle": { "thinkingLevel": "high" },
|
|
22
|
-
"librarian": { "thinkingLevel": "medium" },
|
|
23
|
-
"frontend": { "temperature": 0.3 },
|
|
24
|
-
"documentWriter": { "temperature": 0.3 },
|
|
25
|
-
"multimodalLooker": { "temperature": 0.1 },
|
|
26
|
-
"explore": { "thinkingLevel": "low", "temperature": 0.1 }
|
|
27
|
-
}
|
|
28
|
-
},
|
|
29
|
-
"tdd": {
|
|
30
|
-
"enabled": true,
|
|
31
|
-
"verbosity": "explain",
|
|
32
|
-
"bypassPatterns": ["*.config.*", "*.json", "*.md"],
|
|
33
|
-
"mutationTesting": {
|
|
34
|
-
"enabled": true,
|
|
35
|
-
"requiredScore": 85
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
"eventModeling": {
|
|
39
|
-
"enabled": false,
|
|
40
|
-
"outputPath": "docs/event-model"
|
|
41
|
-
},
|
|
42
|
-
"git": {
|
|
43
|
-
"workflow": "standard",
|
|
44
|
-
"requireClean": true,
|
|
45
|
-
"worktrees": false
|
|
46
|
-
},
|
|
47
|
-
"features": {
|
|
48
|
-
"orchestratorOnly": true,
|
|
49
|
-
"todoSync": true,
|
|
50
|
-
"partyReview": true,
|
|
51
|
-
"debuggingProtocol": true,
|
|
52
|
-
"memento": true,
|
|
53
|
-
"notifications": true,
|
|
54
|
-
"lspTools": true
|
|
55
|
-
},
|
|
56
|
-
"mcps": {
|
|
57
|
-
"context7": true,
|
|
58
|
-
"exa": true,
|
|
59
|
-
"grepApp": true,
|
|
60
|
-
"memento": true
|
|
61
|
-
},
|
|
62
|
-
"routing": {
|
|
63
|
-
"providerPriority": ["anthropic", "openai", "google"],
|
|
64
|
-
"modelFamilyPriority": {
|
|
65
|
-
"claude": ["anthropic"],
|
|
66
|
-
"gpt": ["openai"],
|
|
67
|
-
"gemini": ["google"]
|
|
68
|
-
},
|
|
69
|
-
"agentOverrides": {
|
|
70
|
-
"oracle": { "requiresThinking": true },
|
|
71
|
-
"marvin": { "requiresThinking": true }
|
|
72
|
-
},
|
|
73
|
-
"fallbackBehavior": {
|
|
74
|
-
"autoFallback": false,
|
|
75
|
-
"retryPeriodMs": 300000,
|
|
76
|
-
"notifyOnRateLimit": true
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
}
|