# Registry

> List available registry tools and commands. Use when this capability is needed.

- Skill: `tomevault-io/registry` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/registry`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/registry/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/registry

---


# Registry Tools

**Use this when:** You want to see all available Claude Code commands for the Pulumi Registry.

Lists all available commands grouped by category.

---

## Usage

`/registry-tools`

---

## Implementation

1. Run the metadata scraper to discover all available commands:

   ```bash
   python3 .claude/commands/registry-tools/scripts/scrape-metadata.py
   ```

2. Parse the JSON output and group commands by category:

   **Review & Quality**:
   - `/registry-review` - Review changes for quality
   - `/pr-review <PR_NUMBER>` - Full PR review workflow with approve/merge/close
   - `/validate-package [name]` - Validate provider package YAML

   **Package Management**:
   - `/new-package` - Guided workflow to add a new provider package
   - `/validate-package [name]` - Validate provider package YAML

   **Shipping & PRs**:
   - `/shipit` - Commit, push, and create PR with quality checks

   **Issue Management**:
   - `/fix-issue <issue-number>` - Analyze issue and create implementation plan

   **Repository Health**:
   - `/dashboard [mode]` - Repository status, PRs, issues, CI health

   **Discovery**:
   - `/registry-tools` - This command (list all available tools)

3. Display the grouped list in a terminal-friendly format:

   ```
   ════════════════════════════════════════════════════════════════════════════════
   📦 PULUMI REGISTRY - Available Commands
   ════════════════════════════════════════════════════════════════════════════════

   Review & Quality:
     /registry-review        Review changes for quality before committing
     /pr-review <PR>         Review and approve/merge pull requests
     /validate-package       Validate provider package YAML

   Package Management:
     /new-package            Add a new provider package to the registry

   Shipping & PRs:
     /shipit                 Commit, push, and create PR with quality checks

   Issue Management:
     /fix-issue <issue>      Analyze issue and create implementation plan

   Repository Health:
     /dashboard [mode]       Repository status and health metrics

   Discovery:
     /registry-tools         List all available commands (this command)

   ════════════════════════════════════════════════════════════════════════════════
   Tip: Run any command by typing it in the chat (e.g., /dashboard)
   ```

4. If the scraper discovers additional commands not in the hardcoded list above, include them in an "Other" category.

---
> Source: [pulumi/registry](https://github.com/pulumi/registry) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-07-05 -->

