codingbuddy-rules 1.1.0 → 1.1.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.
|
@@ -145,3 +145,23 @@ Use `get_skill` MCP tool with skill name:
|
|
|
145
145
|
- **writing-plans**: For multi-step tasks with specs
|
|
146
146
|
- **executing-plans**: Following written implementation plans
|
|
147
147
|
- **frontend-design**: Building web components or pages
|
|
148
|
+
|
|
149
|
+
### Auto-Recommend Skills
|
|
150
|
+
|
|
151
|
+
Use `recommend_skills` MCP tool to get skill recommendations based on user prompt:
|
|
152
|
+
|
|
153
|
+
```typescript
|
|
154
|
+
// AI can call this to get skill recommendations
|
|
155
|
+
recommend_skills({ prompt: "There is a bug in the login" })
|
|
156
|
+
// => recommends: systematic-debugging
|
|
157
|
+
|
|
158
|
+
recommend_skills({ prompt: "로그인에 버그가 있어" })
|
|
159
|
+
// => recommends: systematic-debugging (Korean support)
|
|
160
|
+
|
|
161
|
+
recommend_skills({ prompt: "Build a dashboard component" })
|
|
162
|
+
// => recommends: frontend-design
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
**Supported Languages:** English, Korean, Japanese, Chinese, Spanish
|
|
166
|
+
|
|
167
|
+
The tool returns skill recommendations with confidence levels (high/medium) and matched patterns for transparency.
|