opencode-sdlc-plugin 0.2.1 → 0.3.2

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.
Files changed (72) hide show
  1. package/LICENSE +18 -0
  2. package/README.md +127 -38
  3. package/commands/sdlc-adr.md +245 -17
  4. package/commands/sdlc-debug.md +376 -0
  5. package/commands/sdlc-design.md +205 -47
  6. package/commands/sdlc-dev.md +544 -0
  7. package/commands/sdlc-info.md +325 -0
  8. package/commands/sdlc-parallel.md +283 -0
  9. package/commands/sdlc-recall.md +203 -8
  10. package/commands/sdlc-remember.md +126 -9
  11. package/commands/sdlc-research.md +343 -0
  12. package/commands/sdlc-review.md +201 -128
  13. package/commands/sdlc-status.md +297 -0
  14. package/config/presets/copilot-only.json +69 -0
  15. package/config/presets/enterprise.json +79 -0
  16. package/config/presets/event-modeling.json +74 -8
  17. package/config/presets/minimal.json +70 -0
  18. package/config/presets/solo-quick.json +70 -0
  19. package/config/presets/standard.json +78 -0
  20. package/config/presets/strict-tdd.json +79 -0
  21. package/config/schemas/athena.schema.json +338 -0
  22. package/config/schemas/sdlc.schema.json +442 -26
  23. package/dist/cli/index.d.ts +2 -1
  24. package/dist/cli/index.js +4285 -562
  25. package/dist/cli/index.js.map +1 -1
  26. package/dist/index.d.ts +1781 -1
  27. package/dist/index.js +7759 -395
  28. package/dist/index.js.map +1 -1
  29. package/dist/plugin/index.d.ts +17 -2
  30. package/dist/plugin/index.js +7730 -397
  31. package/dist/plugin/index.js.map +1 -1
  32. package/package.json +68 -33
  33. package/prompts/agents/code-reviewer.md +229 -0
  34. package/prompts/agents/domain.md +210 -0
  35. package/prompts/agents/green.md +148 -0
  36. package/prompts/agents/mutation.md +278 -0
  37. package/prompts/agents/red.md +112 -0
  38. package/prompts/event-modeling/discovery.md +176 -0
  39. package/prompts/event-modeling/gwt-generation.md +479 -0
  40. package/prompts/event-modeling/workflow-design.md +318 -0
  41. package/prompts/personas/amelia-developer.md +43 -0
  42. package/prompts/personas/bob-sm.md +43 -0
  43. package/prompts/personas/john-pm.md +43 -0
  44. package/prompts/personas/mary-analyst.md +43 -0
  45. package/prompts/personas/murat-tester.md +43 -0
  46. package/prompts/personas/paige-techwriter.md +43 -0
  47. package/prompts/personas/sally-ux.md +43 -0
  48. package/prompts/personas/winston-architect.md +43 -0
  49. package/agents/design-facilitator.md +0 -8
  50. package/agents/domain.md +0 -9
  51. package/agents/exploration.md +0 -8
  52. package/agents/green.md +0 -9
  53. package/agents/marvin.md +0 -15
  54. package/agents/model-checker.md +0 -9
  55. package/agents/red.md +0 -9
  56. package/commands/sdlc-domain-audit.md +0 -32
  57. package/commands/sdlc-plan.md +0 -63
  58. package/commands/sdlc-pr.md +0 -43
  59. package/commands/sdlc-setup.md +0 -50
  60. package/commands/sdlc-start.md +0 -34
  61. package/commands/sdlc-work.md +0 -118
  62. package/config/presets/traditional.json +0 -12
  63. package/skills/adr-policy.md +0 -21
  64. package/skills/atomic-design.md +0 -39
  65. package/skills/debugging-protocol.md +0 -47
  66. package/skills/event-modeling.md +0 -40
  67. package/skills/git-spice.md +0 -44
  68. package/skills/github-issues.md +0 -44
  69. package/skills/memory-protocol.md +0 -41
  70. package/skills/orchestration.md +0 -118
  71. package/skills/skill-enforcement.md +0 -56
  72. package/skills/tdd-constraints.md +0 -63
@@ -0,0 +1,69 @@
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
+ "sisyphus": "github-copilot/claude-sonnet-4.5",
13
+ "oracle": "github-copilot/gpt-5.1",
14
+ "librarian": "github-copilot/claude-haiku-4.5",
15
+ "frontend": "github-copilot/claude-sonnet-4.5",
16
+ "documentWriter": "github-copilot/gemini-2.5-pro",
17
+ "multimodalLooker": "github-copilot/gemini-2.5-pro",
18
+ "explore": "github-copilot/gpt-5-mini"
19
+ },
20
+ "tdd": {
21
+ "enabled": true,
22
+ "verbosity": "brief",
23
+ "bypassPatterns": ["*.config.*", "*.json", "*.md", "*.yaml", "*.yml"],
24
+ "mutationTesting": {
25
+ "enabled": false,
26
+ "requiredScore": 80
27
+ }
28
+ },
29
+ "eventModeling": {
30
+ "enabled": false,
31
+ "outputPath": "docs/event-model"
32
+ },
33
+ "git": {
34
+ "workflow": "standard",
35
+ "requireClean": true,
36
+ "worktrees": false
37
+ },
38
+ "features": {
39
+ "orchestratorOnly": false,
40
+ "todoSync": true,
41
+ "partyReview": true,
42
+ "debuggingProtocol": false,
43
+ "memento": false,
44
+ "notifications": true,
45
+ "lspTools": true
46
+ },
47
+ "mcps": {
48
+ "context7": true,
49
+ "exa": true,
50
+ "grepApp": true,
51
+ "memento": false
52
+ },
53
+ "routing": {
54
+ "providerPriority": ["github-copilot"],
55
+ "modelFamilyPriority": {
56
+ "claude": ["github-copilot"],
57
+ "gpt": ["github-copilot"],
58
+ "gemini": ["github-copilot"]
59
+ },
60
+ "agentOverrides": {
61
+ "oracle": { "requiresThinking": false }
62
+ },
63
+ "fallbackBehavior": {
64
+ "autoFallback": false,
65
+ "retryPeriodMs": 300000,
66
+ "notifyOnRateLimit": true
67
+ }
68
+ }
69
+ }
@@ -0,0 +1,79 @@
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
+ "sisyphus": "anthropic/claude-opus-4-5-thinking",
13
+ "oracle": "openai/gpt-5.1-high",
14
+ "librarian": "anthropic/claude-sonnet-4-5-thinking",
15
+ "frontend": "google/gemini-2.5-pro",
16
+ "documentWriter": "anthropic/claude-opus-4-5",
17
+ "multimodalLooker": "google/gemini-2.5-pro",
18
+ "explore": "google/gemini-2.5-flash",
19
+ "settings": {
20
+ "sisyphus": { "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
+ "sisyphus": { "requiresThinking": true }
72
+ },
73
+ "fallbackBehavior": {
74
+ "autoFallback": true,
75
+ "retryPeriodMs": 300000,
76
+ "notifyOnRateLimit": true
77
+ }
78
+ }
79
+ }
@@ -1,12 +1,78 @@
1
1
  {
2
- "name": "event-modeling",
3
- "description": "Event-modeling SDLC with ADR synthesis and TDD",
4
- "methodology": {
5
- "mode": "event-modeling",
6
- "gitWorkflow": "git-spice",
2
+ "$schema": "../schemas/sdlc.schema.json",
3
+ "version": "0.3.0",
4
+ "description": "Event Modeling configuration - Standard + Event Modeling enabled. For event-sourced systems.",
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
+ "sisyphus": "anthropic/claude-sonnet-4-5-thinking",
13
+ "oracle": "openai/gpt-5.1-high",
14
+ "librarian": "anthropic/claude-sonnet-4-5",
15
+ "frontend": "anthropic/claude-sonnet-4-5",
16
+ "documentWriter": "google/gemini-2.5-pro",
17
+ "multimodalLooker": "google/gemini-2.5-flash",
18
+ "explore": "google/gemini-2.5-flash",
19
+ "settings": {
20
+ "sisyphus": { "thinkingLevel": "medium" },
21
+ "oracle": { "thinkingLevel": "high" },
22
+ "librarian": { "thinkingLevel": "low" },
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": "brief",
32
+ "bypassPatterns": ["*.config.*", "*.json", "*.md", "*.yaml", "*.yml"],
33
+ "mutationTesting": {
34
+ "enabled": false,
35
+ "requiredScore": 80
36
+ }
37
+ },
38
+ "eventModeling": {
39
+ "enabled": true,
40
+ "outputPath": "docs/event-model"
41
+ },
42
+ "git": {
43
+ "workflow": "standard",
7
44
  "requireClean": true,
8
- "worktrees": false,
9
- "atomicDesign": true,
10
- "gitSpice": true
45
+ "worktrees": false
46
+ },
47
+ "features": {
48
+ "orchestratorOnly": false,
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
+ },
72
+ "fallbackBehavior": {
73
+ "autoFallback": false,
74
+ "retryPeriodMs": 300000,
75
+ "notifyOnRateLimit": true
76
+ }
11
77
  }
12
78
  }
@@ -0,0 +1,70 @@
1
+ {
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.",
5
+ "subscriptions": {
6
+ "claude": { "enabled": true, "tier": "pro" },
7
+ "openai": { "enabled": false },
8
+ "google": { "enabled": false, "authMethod": "none" },
9
+ "githubCopilot": { "enabled": false, "plan": "none" }
10
+ },
11
+ "models": {
12
+ "sisyphus": "anthropic/claude-sonnet-4-5",
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
+ "sisyphus": { "temperature": 0.2 },
18
+ "oracle": { "thinkingLevel": "medium" },
19
+ "librarian": { "temperature": 0.3 },
20
+ "explore": { "temperature": 0.2 }
21
+ }
22
+ },
23
+ "tdd": {
24
+ "enabled": true,
25
+ "verbosity": "silent",
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": false,
46
+ "memento": false,
47
+ "notifications": false,
48
+ "lspTools": true
49
+ },
50
+ "mcps": {
51
+ "context7": true,
52
+ "exa": false,
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
+ }
@@ -0,0 +1,70 @@
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
+ "sisyphus": "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
+ "sisyphus": { "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
+ }
@@ -0,0 +1,78 @@
1
+ {
2
+ "$schema": "../schemas/sdlc.schema.json",
3
+ "version": "0.3.0",
4
+ "description": "Standard configuration - TDD + party review + notifications. Recommended for most projects.",
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
+ "sisyphus": "anthropic/claude-sonnet-4-5-thinking",
13
+ "oracle": "openai/gpt-5.1-high",
14
+ "librarian": "anthropic/claude-sonnet-4-5",
15
+ "frontend": "anthropic/claude-sonnet-4-5",
16
+ "documentWriter": "google/gemini-2.5-pro",
17
+ "multimodalLooker": "google/gemini-2.5-flash",
18
+ "explore": "google/gemini-2.5-flash",
19
+ "settings": {
20
+ "sisyphus": { "thinkingLevel": "medium" },
21
+ "oracle": { "thinkingLevel": "high" },
22
+ "librarian": { "thinkingLevel": "low" },
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": "brief",
32
+ "bypassPatterns": ["*.config.*", "*.json", "*.md", "*.yaml", "*.yml"],
33
+ "mutationTesting": {
34
+ "enabled": false,
35
+ "requiredScore": 80
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": false,
49
+ "todoSync": true,
50
+ "partyReview": true,
51
+ "debuggingProtocol": true,
52
+ "memento": false,
53
+ "notifications": true,
54
+ "lspTools": true
55
+ },
56
+ "mcps": {
57
+ "context7": true,
58
+ "exa": true,
59
+ "grepApp": true,
60
+ "memento": false
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
+ },
72
+ "fallbackBehavior": {
73
+ "autoFallback": false,
74
+ "retryPeriodMs": 300000,
75
+ "notifyOnRateLimit": true
76
+ }
77
+ }
78
+ }
@@ -0,0 +1,79 @@
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
+ "sisyphus": "anthropic/claude-sonnet-4-5-thinking",
13
+ "oracle": "openai/gpt-5.1-high",
14
+ "librarian": "anthropic/claude-sonnet-4-5",
15
+ "frontend": "anthropic/claude-sonnet-4-5",
16
+ "documentWriter": "google/gemini-2.5-pro",
17
+ "multimodalLooker": "google/gemini-2.5-flash",
18
+ "explore": "google/gemini-2.5-flash",
19
+ "settings": {
20
+ "sisyphus": { "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
+ "sisyphus": { "requiresThinking": true }
72
+ },
73
+ "fallbackBehavior": {
74
+ "autoFallback": false,
75
+ "retryPeriodMs": 300000,
76
+ "notifyOnRateLimit": true
77
+ }
78
+ }
79
+ }