symfonia-ai-tools 1.6.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
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
|
|
package/package.json
CHANGED
|
@@ -1 +1,15 @@
|
|
|
1
1
|
Read and follow .ai/guidelines.md as mandatory context for all work in this project.
|
|
2
|
+
|
|
3
|
+
## Skills
|
|
4
|
+
|
|
5
|
+
This project has workflow skills in `.github/skills/`. Each subdirectory contains a `SKILL.md` with a complete workflow.
|
|
6
|
+
|
|
7
|
+
**Before starting any task**, scan `.github/skills/` for a matching skill. If the user's request matches a skill's trigger or description, follow that skill's workflow step by step.
|
|
8
|
+
|
|
9
|
+
**How to use skills:**
|
|
10
|
+
1. List available skills: read directory names in `.github/skills/`
|
|
11
|
+
2. Check if user's request matches a skill name or its YAML frontmatter `description`
|
|
12
|
+
3. If match found — read the full `SKILL.md` and follow its steps
|
|
13
|
+
4. If user explicitly asks for a skill by name (e.g. "use smf-debug") — always load and follow it
|
|
14
|
+
|
|
15
|
+
**Proactive skill suggestions:** When you recognize a task that matches an available skill, suggest it to the user before proceeding manually.
|