opencode-sdlc-plugin 0.3.2 → 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.
Files changed (48) hide show
  1. package/README.md +90 -17
  2. package/config/presets/event-modeling.json +19 -8
  3. package/config/presets/minimal.json +29 -16
  4. package/config/presets/standard.json +19 -8
  5. package/config/schemas/athena.schema.json +4 -4
  6. package/config/schemas/sdlc.schema.json +101 -5
  7. package/dist/cli/index.js +1431 -1336
  8. package/dist/cli/index.js.map +1 -1
  9. package/dist/index.d.ts +428 -66
  10. package/dist/index.js +6262 -2440
  11. package/dist/index.js.map +1 -1
  12. package/dist/plugin/index.js +5793 -2010
  13. package/dist/plugin/index.js.map +1 -1
  14. package/package.json +2 -1
  15. package/prompts/agents/adr.md +234 -0
  16. package/prompts/agents/architect.md +204 -0
  17. package/prompts/agents/design-facilitator.md +237 -0
  18. package/prompts/agents/discovery.md +260 -0
  19. package/prompts/agents/domain.md +148 -34
  20. package/prompts/agents/file-updater.md +132 -0
  21. package/prompts/agents/green.md +119 -40
  22. package/prompts/agents/gwt.md +352 -0
  23. package/prompts/agents/model-checker.md +332 -0
  24. package/prompts/agents/red.md +112 -21
  25. package/prompts/agents/story.md +196 -0
  26. package/prompts/agents/ux.md +239 -0
  27. package/prompts/agents/workflow-designer.md +386 -0
  28. package/prompts/modes/architect.md +219 -0
  29. package/prompts/modes/build.md +150 -0
  30. package/prompts/modes/model.md +211 -0
  31. package/prompts/modes/plan.md +186 -0
  32. package/prompts/modes/pm.md +269 -0
  33. package/prompts/modes/prd.md +238 -0
  34. package/commands/sdlc-adr.md +0 -265
  35. package/commands/sdlc-debug.md +0 -376
  36. package/commands/sdlc-design.md +0 -246
  37. package/commands/sdlc-dev.md +0 -544
  38. package/commands/sdlc-info.md +0 -325
  39. package/commands/sdlc-parallel.md +0 -283
  40. package/commands/sdlc-recall.md +0 -213
  41. package/commands/sdlc-remember.md +0 -136
  42. package/commands/sdlc-research.md +0 -343
  43. package/commands/sdlc-review.md +0 -265
  44. package/commands/sdlc-status.md +0 -297
  45. package/config/presets/copilot-only.json +0 -69
  46. package/config/presets/enterprise.json +0 -79
  47. package/config/presets/solo-quick.json +0 -70
  48. package/config/presets/strict-tdd.json +0 -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
- "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
- }
@@ -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
- "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
- }