Quick Reference
Common Commands & Workflows
Your go-to guide for RHDP Skills Marketplace commands and workflows.
Installation Commands
โน๏ธ
For Claude Code & VS Code users only. These commands run in Claude Code chat after Claude Code is installed.
Cursor users: Use the terminal install script instead (see
Cursor setup).
๐ฆ
Add Marketplace
**With SSH Keys:**
```
/plugin marketplace add rhpds/rhdp-skills-marketplace
```
**Without SSH (HTTPS):**
```
/plugin marketplace add https://github.com/rhpds/rhdp-skills-marketplace
```
๐
Install Plugins
```
/plugin install showroom@rhdp-marketplace
/plugin install agnosticv@rhdp-marketplace
/plugin install health@rhdp-marketplace
```
๐
Update Marketplace
```
/plugin marketplace update
```
Interactive: select marketplace, press 'u'
โฌ๏ธ
Update Plugins
```
/plugin update showroom@rhdp-marketplace
/plugin update agnosticv@rhdp-marketplace
/plugin update health@rhdp-marketplace
```
Showroom Workflows
๐
Creating a Workshop Lab
Invoke
/showroom:create-lab
Answer prompts
Name, abstract, technologies, module count
Provide repo path
Path to RHDP-provisioned Showroom repo
Scaffold configured
site.yml, ui-config.yml, Showroom 1.5.3
Review content
Review generated module content
Verify
/showroom:verify-content
Fix & publish
Fix any issues, then publish
๐ฌ
Creating a Demo
Invoke
/showroom:create-demo
Answer prompts
Name, abstract, technologies, audience level
Provide repo path
Path to RHDP-provisioned Showroom repo
Scaffold configured
site.yml, ui-config.yml, Showroom 1.5.3
Review & verify
/showroom:verify-content
Present or publish
Demo is ready
AgnosticV Workflows
๐ฆ
Creating a New Catalog
Navigate
cd ~/work/code/agnosticv
Invoke
/agnosticv:catalog-builder
Choose mode
1 (Full Catalog)
AgV path auto-detected
Branch created from main
Context question
Single [1-7] question: event type + lab ID + tech
Discovery steps 2โ9
Infra gate, auth, workloads, Showroom, __meta__
Files generated
Auto-committed to branch
Validate
/agnosticv:validator
Push & PR
git push origin <branch-name> then gh pr create --fill
โ
Validating a Catalog
Navigate
cd ~/work/code/agnosticv/<directory>/<catalog-name>
Validate
/agnosticv:validator
Review report
Check errors and warnings
Fix & re-validate
Address issues, run again
Common File Locations
๐
Claude Code / VS Code
```
~/.claude/
โโโ plugins/
โ โโโ installed/
โ โ โโโ showroom@rhdp-marketplace/
โ โ โโโ agnosticv@rhdp-marketplace/
โ โ โโโ health@rhdp-marketplace/
โ โโโ marketplaces/
โ โโโ rhdp-marketplace/
โโโ skills/ # Legacy (if migrating)
```
โก
Cursor
```
~/.cursor/
โโโ plugins/
โโโ skills/ # Legacy
```
โ๏ธ
AgnosticV Repository
```
~/work/code/agnosticv/
โโโ agd_v2/ # Standard catalogs
โ โโโ
/
โ โโโ common.yaml
โ โโโ description.adoc
โ โโโ dev.yaml
โโโ openshift_cnv/ # CNV cluster catalogs
โโโ enterprise/ # Enterprise catalogs
โโโ summit-2026/ # Event catalogs
โโโ lb####-short-name-cnv/
```
</div>
๐
Showroom Content
```
showroom-repo/
โโโ content/
โ โโโ modules/
โ โโโ ROOT/
โ โโโ pages/
โ โ โโโ index.adoc
โ โ โโโ module-01.adoc
โ โ โโโ module-02.adoc
โ โโโ partials/
โ โ โโโ _attributes.adoc
โ โโโ nav.adoc
โโโ antora.yml
```
</div>
---
## Verification Commands
๐
Check installed plugins
```
/plugin list
```
๐
Check marketplace
```
/plugin marketplace list
```
๐
Check AgnosticV repo
```
cd ~/work/code/agnosticv && git status
```
โ
Validate YAML syntax
```
yamllint common.yaml
```
๐ฅ๏ธ
Test Showroom locally
```
npm run dev
```
---
## Troubleshooting Quick Fixes
Skills not showing
```
# Restart Claude Code
# Then verify installation:
/plugin list
```
Need to reinstall
```
# Uninstall plugins
/plugin uninstall showroom@rhdp-marketplace
/plugin uninstall agnosticv@rhdp-marketplace
/plugin uninstall health@rhdp-marketplace
# Reinstall
/plugin install showroom@rhdp-marketplace
/plugin install agnosticv@rhdp-marketplace
/plugin install health@rhdp-marketplace
```
AgnosticV repo not found
```
cd ~/work/code
git clone git@github.com:rhpds/agnosticv.git
```
UUID collision
```
# Generate new UUID
uuidgen
# Update common.yaml:__meta__:asset_uuid
```
---
## Support Resources