← ClaudeAtlas

list-steward-skillslisted

Print a human-readable index of every skill in this repository, grouped by family prefix (`pr-management`, `security`, `setup`, …) with each skill's name and the first sentence of its `description`. The listing is generated on every run from the live `.claude/skills/*/SKILL.md` files, so it never goes stale when skills are added, removed, or rewritten.
apache/airflow-steward · ★ 19 · AI & Automation · score 80
Install: claude install-skill apache/airflow-steward
<!-- SPDX-License-Identifier: Apache-2.0 https://www.apache.org/licenses/LICENSE-2.0 --> <!-- Placeholder convention (see AGENTS.md#placeholder-convention-used-in-skill-files): <project-config> → adopting project's `.apache-steward/` directory <tracker> → value of `tracker_repo:` in <project-config>/project.md <upstream> → value of `upstream_repo:` in <project-config>/project.md <framework> → `.apache-steward/apache-steward` in adopters; `.` in the framework standalone --> # list-steward-skills Print a human-readable index of the skills in this repository. The index is generated on every run from the live `.claude/skills/*/SKILL.md` files — there is no cached copy to keep in sync. The skill exists for humans (newcomers reading the repo, maintainers checking what is available); agents route invocations via the same frontmatter the script reads, so this skill is purely informational. --- ## Prerequisites - Python 3.9+ on `PATH` with `PyYAML` importable. The framework's Python toolchain already meets this; no extra setup. --- ## Step 1 — Run the listing script Run the bundled script and present its output to the user verbatim: ```bash python3 .claude/skills/list-steward-skills/scripts/list_skills.py ``` For a layout that puts each description on its own indented line (easier to read when descriptions are long), pass `--verbose`: ```bash python3 .claude/skills/list-steward-skills/scripts/list_skills.