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
Add update notifications and rename repo references (v1.6.5)
- Session-start notify-only checks: warn when a newer idc-index (PyPI) or
skill version (GitHub Releases) is available; never auto-install, fail
silently offline. Install still pins to an author-vetted MIN_VERSION.
- Switch version comparison from string to numeric tuple comparison; fix
idc-index version drift (0.12.2 vs 0.12.3) -> 0.12.3.
- Rename repository references idc-claude-skill -> imaging-data-commons-skill
across SKILL.md, README.md, USAGE.md.
- Add "Keeping the Skill Up to Date" section to USAGE.md; link from README.
- Bump version to 1.6.5 and add CHANGELOG entry.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,22 @@ All notable changes to the IDC Claude Skill are documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/).
7
7
8
+
## [1.6.5] - 2026-06-17
9
+
10
+
### Added
11
+
12
+
- Session-start notifications (best-effort, notify-only): warn when a newer `idc-index` (PyPI) or skill version (GitHub Releases) is available; never auto-install, fail silently offline
13
+
- "Keeping the Skill Up to Date" section in `USAGE.md` (release notifications, per-surface update steps, fresh-conversation reminder); linked from README
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ Once the skill is loaded, you can ask questions like:
21
21
22
22
## Reporting Issues
23
23
24
-
If the skill provides incorrect or incomplete answers, please [open an issue](https://github.com/ImagingDataCommons/idc-claude-skill/issues/new/choose) using our issue template.
24
+
If the skill provides incorrect or incomplete answers, please [open an issue](https://github.com/ImagingDataCommons/imaging-data-commons-skill/issues/new/choose) using our issue template.
25
25
26
26
## Setup Instructions
27
27
@@ -33,7 +33,7 @@ This skill follows [Semantic Versioning](https://semver.org/).
See [CHANGELOG.md](CHANGELOG.md) for version history and [Releases](https://github.com/ImagingDataCommons/idc-claude-skill/releases) for downloads.
36
+
See [CHANGELOG.md](CHANGELOG.md) for version history and [Releases](https://github.com/ImagingDataCommons/imaging-data-commons-skill/releases) for downloads. For how to stay current with new releases and IDC data versions, see [Keeping the Skill Up to Date](USAGE.md#keeping-the-skill-up-to-date).
Copy file name to clipboardExpand all lines: SKILL.md
+45-8Lines changed: 45 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,11 +3,11 @@ name: imaging-data-commons
3
3
description: Query and download public cancer imaging data from NCI Imaging Data Commons using idc-index. Invoke for any question about IDC collections, cancer imaging datasets, DICOM data access, radiology (CT, MR, PET) or pathology AI training sets, metadata queries, visualization, or license checks — even when the user doesn't explicitly mention "IDC". No authentication required.
4
4
license: This skill is provided under the MIT License. IDC data itself has individual licensing (mostly CC-BY, some CC-NC) that must be respected when using the data.
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.
@@ -58,10 +58,10 @@ Link or copy the skill to your personal skills directory. This makes it availabl
58
58
59
59
```bash
60
60
# Create a symlink (keeps skill updated with repo)
The skill is refined frequently, and IDC publishes periodic (roughly quarterly) data releases. A skill that was accurate against one IDC release can return stale answers once a newer one lands, so it is worth staying current.
151
+
152
+
When network access is available, the skill checks at the start of a session and prints a notice if a newer `idc-index` package or a newer skill release is available. You can also subscribe to release notifications and update manually as described below.
153
+
154
+
### Get notified of new releases
155
+
156
+
The skill follows [Semantic Versioning](https://semver.org/) and publishes a GitHub Release for each update. On the [repository page](https://github.com/ImagingDataCommons/imaging-data-commons-skill), click **Watch → Custom → Releases** to be alerted whenever a new version is tagged. Skim the release notes first — they flag breaking changes, such as column renames or other schema changes.
157
+
158
+
### Update the skill
159
+
160
+
**claude.ai and Claude Desktop** — a custom skill is updated by replacing it:
161
+
162
+
1. Download the latest release ZIP from the [Releases page](https://github.com/ImagingDataCommons/imaging-data-commons-skill/releases/latest).
163
+
2. Confirm **Code execution and file creation** is enabled under **Settings > Capabilities**.
164
+
3. At https://claude.ai/customize, select **Skills**, delete the existing `imaging-data-commons` skill (**···** → **Delete**), and upload the new ZIP.
165
+
166
+
**Claude Code** — re-run the installer to pull the latest version:
If you installed by symlinking a local clone (USAGE Options 2–3), just `git pull` in that clone — the symlink always reflects the latest checked-out version.
173
+
174
+
### Start a fresh conversation after updating
175
+
176
+
A skill loads into a conversation when Claude decides it is relevant, at the session level. Updating the skill in settings does **not** change a conversation already underway. After updating, **start a new conversation** so the new version is picked up.
-**Verify skill is loaded**: Ask Claude "What do you know about the Imaging Data Commons?" — it should give a detailed response
195
225
-**Be specific**: Use clear questions like "Find lung CT scans in IDC" rather than just "find scans"
196
-
-**Report issues**: If the skill fails to answer expected questions, [open an issue](https://github.com/ImagingDataCommons/idc-claude-skill/issues/new/choose)
226
+
-**Report issues**: If the skill fails to answer expected questions, [open an issue](https://github.com/ImagingDataCommons/imaging-data-commons-skill/issues/new/choose)
0 commit comments