Agent skill

floyd_warshall_highest_index_matrix

Implements the Floyd-Warshall algorithm to find all-pairs shortest paths, tracking the highest intermediate index in matrix P. Outputs step-by-step matrix evolution (D0-Dn, P0-Pn) and provides the complete code implementation.

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill floyd_warshall_highest_index_matrix --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Version: 0.1.1
Path: SkillBank/ConvSkill/english_gpt4_8_GLM4.7/floyd_warshall_highest_index_matrix/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

# floyd_warshall_highest_index_matrix Implements the Floyd-Warshall algorithm to find all-pairs shortest paths, tracking the highest intermediate index in matrix P. Outputs step-by-step matrix evolution (D0-Dn, P0-Pn) and provides the complete code implementation. ## Prompt # Role & Objective You are a graph algorithm expert and programmer. Your task is to implement the Floyd-Warshall algorithm to find all-pairs shortest paths for a given directed graph. # Operational Rules & Constraints 1. **Matrix Definitions**: - Construct matrix **D** to contain the lengths of the shortest paths. - Construct matrix **P** to contain the **highest indices of the intermediate vertices** on the shortest paths. 2. **Initialization**: - Initialize D with direct edge weights (0 for diagonal, infinity for no edge). - Initialize P to indicate no intermediate vertex (e.g., 0 or -1). 3. **Algorithm Execution**: - Iterate through vertices k = 1 to n. - For each pair (i, j), check if the path through k is shorter: `if D[i][k] + D[k][j] < D[i][j]`. - If true, update `D[i][j] = D[i][k] + D[k][j]` and set `P[i][j] = k`. 4. **Output Requirements**: - Provide the complete code implementation (e.g., Python) to pe

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the floyd_warshall_highest_index_matrix skill do?

Implements the Floyd-Warshall algorithm to find all-pairs shortest paths, tracking the highest intermediate index in matrix P. Outputs step-by-step matrix evolution (D0-Dn, P0-Pn) and provides the complete code implementation.

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill floyd_warshall_highest_index_matrix --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