codingbuddy-rules 2.3.0 → 2.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.
|
@@ -42,7 +42,11 @@
|
|
|
42
42
|
"AUTO": {
|
|
43
43
|
"description": "Autonomous execution mode",
|
|
44
44
|
"instructions": "PLAN → ACT → EVAL 사이클 자동 실행. Critical/High 이슈가 0이 될 때까지 반복. (세션 문서는 각 PLAN/ACT/EVAL 단계에서 작성됨)",
|
|
45
|
-
"rules": [
|
|
45
|
+
"rules": [
|
|
46
|
+
"rules/core.md",
|
|
47
|
+
"rules/project.md",
|
|
48
|
+
"rules/augmented-coding.md"
|
|
49
|
+
],
|
|
46
50
|
"agent": "auto-mode",
|
|
47
51
|
"delegates_to": "frontend-developer",
|
|
48
52
|
"defaultSpecialists": [
|
|
@@ -17,6 +17,20 @@
|
|
|
17
17
|
"description": "Brief description of the agent's purpose and expertise",
|
|
18
18
|
"minLength": 10
|
|
19
19
|
},
|
|
20
|
+
"model": {
|
|
21
|
+
"type": "object",
|
|
22
|
+
"description": "Preferred AI model configuration",
|
|
23
|
+
"properties": {
|
|
24
|
+
"preferred": {
|
|
25
|
+
"type": "string",
|
|
26
|
+
"description": "Preferred model identifier (e.g., claude-sonnet-4-20250514)"
|
|
27
|
+
},
|
|
28
|
+
"reason": {
|
|
29
|
+
"type": "string",
|
|
30
|
+
"description": "Reason for model selection"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
20
34
|
"role": {
|
|
21
35
|
"type": "object",
|
|
22
36
|
"description": "Agent's role definition including title, expertise, and responsibilities",
|
|
@@ -27,6 +41,11 @@
|
|
|
27
41
|
"description": "Official role title",
|
|
28
42
|
"minLength": 1
|
|
29
43
|
},
|
|
44
|
+
"type": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"enum": ["primary", "specialist"],
|
|
47
|
+
"description": "Agent type: 'primary' uses top-level activation for PLAN/ACT workflow, 'specialist' uses modes for domain-specific guidance. RECOMMENDED: Always specify for new agents to ensure proper workflow integration."
|
|
48
|
+
},
|
|
30
49
|
"expertise": {
|
|
31
50
|
"type": "array",
|
|
32
51
|
"description": "List of expertise areas",
|
|
@@ -87,7 +106,27 @@
|
|
|
87
106
|
},
|
|
88
107
|
"workflow_integration": {
|
|
89
108
|
"type": "object",
|
|
90
|
-
"description": "How this agent integrates with workflow"
|
|
109
|
+
"description": "How this agent integrates with workflow",
|
|
110
|
+
"properties": {
|
|
111
|
+
"trigger_conditions": {
|
|
112
|
+
"type": "array",
|
|
113
|
+
"description": "Semantic conditions that trigger agent activation",
|
|
114
|
+
"items": { "type": "string" }
|
|
115
|
+
},
|
|
116
|
+
"file_pattern_triggers": {
|
|
117
|
+
"type": "array",
|
|
118
|
+
"description": "Glob patterns for files that trigger agent activation (e.g., '**/*.llm.ts', '**/prompts/**')",
|
|
119
|
+
"items": { "type": "string" }
|
|
120
|
+
},
|
|
121
|
+
"activation_rule": {
|
|
122
|
+
"type": "string",
|
|
123
|
+
"description": "Rule describing when this agent must be activated"
|
|
124
|
+
},
|
|
125
|
+
"output_format": {
|
|
126
|
+
"type": "string",
|
|
127
|
+
"description": "Expected output format for this agent"
|
|
128
|
+
}
|
|
129
|
+
}
|
|
91
130
|
},
|
|
92
131
|
"planning_framework": {
|
|
93
132
|
"type": "object",
|