symfonia-ai-tools 1.7.0 → 1.7.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.
- package/README.md +11 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -209,16 +209,21 @@ Skills are ready-made procedures that AI executes step by step. Each skill has a
|
|
|
209
209
|
|
|
210
210
|
### How to use
|
|
211
211
|
|
|
212
|
-
|
|
212
|
+
**Claude Code** — skills are auto-discovered as slash commands:
|
|
213
|
+
```
|
|
214
|
+
/smf-debug
|
|
215
|
+
/smf-wtf
|
|
216
|
+
/smf-new-module
|
|
217
|
+
```
|
|
213
218
|
|
|
219
|
+
**GitHub Copilot, Cursor, Gemini, Junie** — type in chat:
|
|
214
220
|
```
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
"wtf" — quick session status
|
|
221
|
+
use smf-debug
|
|
222
|
+
use smf-new-module to create a users module
|
|
223
|
+
use smf-wtf
|
|
219
224
|
```
|
|
220
225
|
|
|
221
|
-
|
|
226
|
+
The agent reads `SKILL.md` and executes the steps sequentially.
|
|
222
227
|
|
|
223
228
|
All skills have the `smf-` prefix (Symfonia). The configurator lets you choose which skills to install with checkboxes.
|
|
224
229
|
|