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.
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "$schema": "../schemas/sdlc.schema.json",
3
- "version": "0.3.0",
4
- "description": "Event Modeling configuration - Standard + Event Modeling enabled. For event-sourced systems.",
3
+ "version": "1.0.0",
4
+ "name": "event-modeling",
5
+ "displayName": "Event Modeling",
6
+ "description": "Full TDD + Event Modeling + all Marvin modes. Recommended for line-of-business applications with complex state management.",
5
7
  "subscriptions": {
6
8
  "claude": { "enabled": true, "tier": "max5x" },
7
9
  "openai": { "enabled": true },
@@ -39,11 +41,20 @@
39
41
  "enabled": true,
40
42
  "outputPath": "docs/event-model"
41
43
  },
44
+ "modes": {
45
+ "default": "discover",
46
+ "eventModeling": true,
47
+ "enabled": ["build", "discover", "model", "architect", "pm"]
48
+ },
42
49
  "git": {
43
50
  "workflow": "standard",
44
51
  "requireClean": true,
45
52
  "worktrees": false
46
53
  },
54
+ "memory": {
55
+ "backend": "memento",
56
+ "checkpointTtl": 604800
57
+ },
47
58
  "features": {
48
59
  "orchestratorOnly": false,
49
60
  "todoSync": true,
@@ -1,28 +1,30 @@
1
1
  {
2
2
  "$schema": "../schemas/sdlc.schema.json",
3
- "version": "0.3.0",
4
- "description": "Minimal configuration - Basic TDD without extra features. For simple projects or getting started.",
3
+ "version": "1.0.0",
4
+ "name": "tdd-only",
5
+ "displayName": "TDD-Only",
6
+ "description": "Just TDD cycle enforcement with no planning methodology. For users who only want RED-GREEN-REFACTOR discipline.",
5
7
  "subscriptions": {
6
8
  "claude": { "enabled": true, "tier": "pro" },
7
- "openai": { "enabled": false },
8
- "google": { "enabled": false, "authMethod": "none" },
9
+ "openai": { "enabled": true },
10
+ "google": { "enabled": true, "authMethod": "antigravity" },
9
11
  "githubCopilot": { "enabled": false, "plan": "none" }
10
12
  },
11
13
  "models": {
12
- "marvin": "anthropic/claude-sonnet-4-5",
13
- "oracle": "anthropic/claude-sonnet-4-5-thinking",
14
+ "marvin": "openai/gpt-5.2-codex",
15
+ "oracle": "openai/gpt-5.2",
14
16
  "librarian": "anthropic/claude-sonnet-4-5",
15
- "explore": "anthropic/claude-sonnet-4-5",
17
+ "explore": "google/gemini-3-flash-preview",
16
18
  "settings": {
17
- "marvin": { "temperature": 0.2 },
18
- "oracle": { "thinkingLevel": "medium" },
19
- "librarian": { "temperature": 0.3 },
20
- "explore": { "temperature": 0.2 }
19
+ "marvin": { "thinkingLevel": "medium" },
20
+ "oracle": { "thinkingLevel": "high" },
21
+ "librarian": { "thinkingLevel": "low" },
22
+ "explore": { "thinkingLevel": "off", "temperature": 0.2 }
21
23
  }
22
24
  },
23
25
  "tdd": {
24
26
  "enabled": true,
25
- "verbosity": "silent",
27
+ "verbosity": "brief",
26
28
  "bypassPatterns": ["*.config.*", "*.json", "*.md", "*.yaml", "*.yml"],
27
29
  "mutationTesting": {
28
30
  "enabled": false,
@@ -33,18 +35,27 @@
33
35
  "enabled": false,
34
36
  "outputPath": "docs/event-model"
35
37
  },
38
+ "modes": {
39
+ "default": "build",
40
+ "eventModeling": false,
41
+ "enabled": ["build", "pm"]
42
+ },
36
43
  "git": {
37
44
  "workflow": "standard",
38
45
  "requireClean": false,
39
46
  "worktrees": false
40
47
  },
48
+ "memory": {
49
+ "backend": "stateless",
50
+ "checkpointTtl": 86400
51
+ },
41
52
  "features": {
42
53
  "orchestratorOnly": false,
43
54
  "todoSync": true,
44
55
  "partyReview": false,
45
- "debuggingProtocol": false,
56
+ "debuggingProtocol": true,
46
57
  "memento": false,
47
- "notifications": false,
58
+ "notifications": true,
48
59
  "lspTools": true
49
60
  },
50
61
  "mcps": {
@@ -54,9 +65,11 @@
54
65
  "memento": false
55
66
  },
56
67
  "routing": {
57
- "providerPriority": ["anthropic"],
68
+ "providerPriority": ["anthropic", "openai", "google"],
58
69
  "modelFamilyPriority": {
59
- "claude": ["anthropic"]
70
+ "claude": ["anthropic"],
71
+ "gpt": ["openai"],
72
+ "gemini": ["google"]
60
73
  },
61
74
  "agentOverrides": {
62
75
  "oracle": { "requiresThinking": true }
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "$schema": "../schemas/sdlc.schema.json",
3
- "version": "0.3.0",
4
- "description": "Standard configuration - TDD + party review + notifications. Recommended for most projects.",
3
+ "version": "1.0.0",
4
+ "name": "prd",
5
+ "displayName": "PRD-Driven",
6
+ "description": "TDD + PRD-style specifications. Recommended for libraries, CLI tools, and APIs without long-term state tracking.",
5
7
  "subscriptions": {
6
8
  "claude": { "enabled": true, "tier": "max5x" },
7
9
  "openai": { "enabled": true },
@@ -39,11 +41,20 @@
39
41
  "enabled": false,
40
42
  "outputPath": "docs/event-model"
41
43
  },
44
+ "modes": {
45
+ "default": "build",
46
+ "eventModeling": false,
47
+ "enabled": ["build", "discover", "architect", "pm"]
48
+ },
42
49
  "git": {
43
50
  "workflow": "standard",
44
51
  "requireClean": true,
45
52
  "worktrees": false
46
53
  },
54
+ "memory": {
55
+ "backend": "stateless",
56
+ "checkpointTtl": 86400
57
+ },
47
58
  "features": {
48
59
  "orchestratorOnly": false,
49
60
  "todoSync": true,