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
This command will automatically detect all AI agents on your system and offer to install the skill across all of them, making it available system-wide. Once installed, invoke with `/imaging-data-commons` or let your AI assistant auto-detect based on questions about IDC.
@@ -81,15 +81,25 @@ This makes the skill available only when working in that project.
81
81
82
82
### Option 4: Import During Session
83
83
84
-
For one-time use, read the skill files directly:
84
+
For one-time use without permanent installation, ask Claude to read the skill file at the start of your session:
85
+
85
86
```
86
-
/read /path/to/idc-claude-skill/SKILL.md
87
+
Please read /path/to/idc-claude-skill/SKILL.md and use it for IDC queries.
87
88
```
88
89
89
-
For BigQuery or DICOMweb features, also read the reference guides:
90
+
Ask Claude to load reference guides as needed for specific topics:
Please also read /path/to/idc-claude-skill/references/bigquery_guide.md # BigQuery advanced queries
94
+
Please also read /path/to/idc-claude-skill/references/dicomweb_guide.md # DICOMweb API access
95
+
Please also read /path/to/idc-claude-skill/references/index_tables_guide.md # Table schemas and join columns
96
+
Please also read /path/to/idc-claude-skill/references/sql_patterns.md # Quick-reference SQL patterns
97
+
Please also read /path/to/idc-claude-skill/references/use_cases.md # End-to-end workflow examples
98
+
Please also read /path/to/idc-claude-skill/references/digital_pathology_guide.md # Pathology (SM, ANN, SEG)
99
+
Please also read /path/to/idc-claude-skill/references/clinical_data_guide.md # Clinical/tabular data
100
+
Please also read /path/to/idc-claude-skill/references/cloud_storage_guide.md # Direct GCS/S3 access
101
+
Please also read /path/to/idc-claude-skill/references/cli_guide.md # idc-index CLI tools
102
+
Please also read /path/to/idc-claude-skill/references/parquet_access_guide.md # Direct Parquet queries
93
103
```
94
104
95
105
### Verifying Installation
@@ -106,7 +116,7 @@ Or invoke directly:
106
116
107
117
## Claude API Setup
108
118
109
-
If you're using the Claude API directly, include the contents of `SKILL.md` in your system prompt. For BigQuery or DICOMweb features, also include the relevant reference guides.
119
+
If you're using the Claude API directly, include the contents of `SKILL.md` in your system prompt. Include additional reference guides from [references/](references/) as needed for advanced features.
110
120
111
121
### Example with Anthropic API
112
122
@@ -117,14 +127,18 @@ from pathlib import Path
117
127
# Read skill files
118
128
skill_content = Path('SKILL.md').read_text()
119
129
120
-
# Optionally include reference guides for advanced features
0 commit comments