codingbuddy-rules 1.3.0 → 1.3.1

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.
@@ -59,11 +59,70 @@ Update your configuration file (`.opencode.json` or `crush.json`):
59
59
  },
60
60
  "eval-mode": {
61
61
  "description": "EVAL mode - Code quality evaluation",
62
- "mode": "subagent",
62
+ "mode": "primary",
63
63
  "prompt": "{file:packages/rules/.ai-rules/agents/eval-mode.json}\n\n[OpenCode Override]\nMode: EVAL. Always respond in Korean. Provide evidence-based evaluation.",
64
- "tools": {
65
- "write": false,
66
- "edit": false
64
+ "permission": {
65
+ "edit": "deny",
66
+ "bash": {
67
+ "git status": "allow",
68
+ "git diff*": "allow",
69
+ "git log*": "allow",
70
+ "*": "ask"
71
+ }
72
+ }
73
+ },
74
+ "backend": {
75
+ "description": "Backend development - Node.js, Python, Go, Java, Rust",
76
+ "mode": "subagent",
77
+ "prompt": "{file:packages/rules/.ai-rules/agents/backend-developer.json}\n\n[OpenCode Override]\nAlways respond in Korean. Follow TDD workflow and clean architecture.",
78
+ "permission": {
79
+ "edit": "allow",
80
+ "bash": "allow"
81
+ }
82
+ },
83
+ "architect": {
84
+ "description": "Architecture and design patterns specialist",
85
+ "mode": "subagent",
86
+ "prompt": "{file:packages/rules/.ai-rules/agents/architecture-specialist.json}\n\n[OpenCode Override]\nAlways respond in Korean. Focus on layer boundaries and dependency direction.",
87
+ "permission": {
88
+ "edit": "deny",
89
+ "bash": "ask"
90
+ }
91
+ },
92
+ "tester": {
93
+ "description": "Test strategy and TDD specialist",
94
+ "mode": "subagent",
95
+ "prompt": "{file:packages/rules/.ai-rules/agents/test-strategy-specialist.json}\n\n[OpenCode Override]\nAlways respond in Korean. Enforce 90%+ coverage and no-mocking principle.",
96
+ "permission": {
97
+ "edit": "allow",
98
+ "bash": "allow"
99
+ }
100
+ },
101
+ "security": {
102
+ "description": "Security audit - OAuth, JWT, XSS/CSRF protection",
103
+ "mode": "subagent",
104
+ "prompt": "{file:packages/rules/.ai-rules/agents/security-specialist.json}\n\n[OpenCode Override]\nAlways respond in Korean. Follow OWASP guidelines.",
105
+ "permission": {
106
+ "edit": "deny",
107
+ "bash": "ask"
108
+ }
109
+ },
110
+ "a11y": {
111
+ "description": "Accessibility - WCAG 2.1 AA compliance",
112
+ "mode": "subagent",
113
+ "prompt": "{file:packages/rules/.ai-rules/agents/accessibility-specialist.json}\n\n[OpenCode Override]\nAlways respond in Korean. Verify ARIA and keyboard navigation.",
114
+ "permission": {
115
+ "edit": "deny",
116
+ "bash": "ask"
117
+ }
118
+ },
119
+ "performance": {
120
+ "description": "Performance optimization specialist",
121
+ "mode": "subagent",
122
+ "prompt": "{file:packages/rules/.ai-rules/agents/performance-specialist.json}\n\n[OpenCode Override]\nAlways respond in Korean. Focus on bundle size and runtime optimization.",
123
+ "permission": {
124
+ "edit": "deny",
125
+ "bash": "ask"
67
126
  }
68
127
  }
69
128
  },
@@ -85,6 +144,7 @@ Update your configuration file (`.opencode.json` or `crush.json`):
85
144
  | **act-mode.json** | `act-mode` | ACT mode workflow (delegates to frontend-developer) |
86
145
  | **eval-mode.json** | `eval-mode` | EVAL mode workflow (delegates to code-reviewer) |
87
146
  | **frontend-developer.json** | N/A (delegate) | Primary development implementation |
147
+ | **backend-developer.json** | `backend` | Backend development (Node.js, Python, Go, Java, Rust) |
88
148
  | **code-reviewer.json** | N/A (delegate) | Code quality evaluation implementation |
89
149
  | **architecture-specialist.json** | `architect` | Architecture and design patterns |
90
150
  | **test-strategy-specialist.json** | `tester` | Test strategy and TDD |
@@ -383,15 +443,15 @@ npx codingbuddy@latest mcp
383
443
 
384
444
  ```bash
385
445
  # Terminal 1: Planning
386
- opencode --agent plan
446
+ opencode --agent plan-mode
387
447
  계획을 세워줘
388
448
 
389
449
  # Terminal 2: Implementation
390
- opencode --agent build
450
+ opencode --agent act-mode
391
451
  ACT
392
452
 
393
453
  # Terminal 3: Review
394
- opencode --agent reviewer
454
+ opencode --agent eval-mode
395
455
  EVAL
396
456
  ```
397
457
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codingbuddy-rules",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "AI coding rules for consistent practices across AI assistants",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",