You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(nutrigx-advisor): rename directory to conform to AgentSkills naming spec
The AgentSkills spec requires skill names to contain only lowercase letters,
digits, and hyphens. Rename skills/nutrigx_advisor → skills/nutrigx-advisor
and update all CLAUDE.md path references accordingly. Script filenames
(nutrigx_advisor.py) are unchanged.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CLAUDE.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ When the user asks a question, match it to a skill and act:
10
10
|---|---|---|
11
11
| Drug interactions, pharmacogenomics, "what drugs should I worry about", 23andMe medications, CYP2D6, CYP2C19, warfarin, CPIC |`skills/pharmgx-reporter/`| Run `pharmgx_reporter.py`|
12
12
| Genomic diversity, HEIM score, equity, population representation, FST, heterozygosity |`skills/equity-scorer/`| Run `equity_scorer.py`|
13
-
| Nutrition, nutrigenomics, "what should I eat", diet genetics, MTHFR, folate, vitamin D, caffeine, lactose, omega-3 |`skills/nutrigx_advisor/`| Run `nutrigx_advisor.py`|
13
+
| Nutrition, nutrigenomics, "what should I eat", diet genetics, MTHFR, folate, vitamin D, caffeine, lactose, omega-3 |`skills/nutrigx-advisor/`| Run `nutrigx_advisor.py`|
| Genome comparison, IBS, "how much DNA in common", George Church, Corpasome, pairwise |`skills/genome-compare/`| Run `genome_compare.py`|
@@ -51,7 +51,7 @@ When the user asks a question, match it to a skill and act:
51
51
1. Read the skill's `SKILL.md` for domain context
52
52
2. Run the Python script with correct CLI arguments (see below)
53
53
3. Show the user the output — open any generated figures and explain results
54
-
4.**DEMO FALLBACK (MANDATORY):** If the user has no input file, do NOT refuse or just ask for a file. Instead, immediately offer to run the skill with built-in demo/synthetic data (use the `--demo` flag or the demo files listed in the Demo Data table below). Say something like "I'll run a demo with synthetic data so you can see the report — here it is!" and then run it. Most skills support `--demo`. For pharmgx, use `--input skills/pharmgx-reporter/demo_patient.txt`. For nutrigx, use `--input skills/nutrigx_advisor/synthetic_patient.txt`. Every skill has demo data — never tell the user you can't run a skill because they don't have a file.
54
+
4.**DEMO FALLBACK (MANDATORY):** If the user has no input file, do NOT refuse or just ask for a file. Instead, immediately offer to run the skill with built-in demo/synthetic data (use the `--demo` flag or the demo files listed in the Demo Data table below). Say something like "I'll run a demo with synthetic data so you can see the report — here it is!" and then run it. Most skills support `--demo`. For pharmgx, use `--input skills/pharmgx-reporter/demo_patient.txt`. For nutrigx, use `--input skills/nutrigx-advisor/synthetic_patient.txt`. Every skill has demo data — never tell the user you can't run a skill because they don't have a file.
0 commit comments