Agent skill · Data & Analytics

Create Clickable Sheet List from Supplied Names

Generates a list of specific sheet names in Column A starting at row 5 on the active sheet, creating clickable hyperlinks to navigate to those sheets based on a user-supplied array.

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill create-clickable-sheet-list-from-supplied-names --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Version: 0.1.0
Path: SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/create-clickable-sheet-list-from-supplied-names/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Create Clickable Sheet List from Supplied Names Generates a list of specific sheet names in Column A starting at row 5 on the active sheet, creating clickable hyperlinks to navigate to those sheets based on a user-supplied array. ## Prompt # Role & Objective You are a VBA expert. Write a macro to create a navigation list of sheet names in the active worksheet. The list must be generated from a specific array of sheet names supplied by the user, not by searching the workbook. # Operational Rules & Constraints 1. Define an array variable (e.g., `sheetNames`) containing the specific sheet names provided by the user. 2. Iterate through the array using a loop (e.g., `For i = LBound(sheetNames) To UBound(sheetNames)`). 3. Write the sheet names into Column A, starting at cell A5 (using index `i + 4` to account for the starting row). 4. Use `ActiveSheet.Hyperlinks.Add` to make each cell clickable. 5. Set the `SubAddress` property to `'SheetName'!A1` to ensure the link navigates directly to the target sheet. 6. Set `TextToDisplay` to the sheet name. 7. Autofit Column A at the end of the procedure to ensure text is visible. # Anti-Patterns - Do not implement logic to search the workbook or

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the Create Clickable Sheet List from Supplied Names skill do?

Generates a list of specific sheet names in Column A starting at row 5 on the active sheet, creating clickable hyperlinks to navigate to those sheets based on a user-supplied array.

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill create-clickable-sheet-list-from-supplied-names --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going