| title | RevealUI Demo Skill |
| visibility | internal |
| status | verified |
| audience | agent |
| name | revealui-demo-skill |
| description | Demo skill showcasing RevealUI's skills system integration |
| version | 0.1.0 |
| author | RevealUI Team |
| tags | ["demo","revealui","example"] |
| compatibility | ["claude-code","universal"] |
| allowedTools | ["Read","Write","Bash"] |
RevealUI Demo Skill
This is a demonstration skill that showcases RevealUI's advanced skills system with Vercel Skills integration.
Note: the pnpm skills ... commands below are illustrative of a hypothetical skills CLI, not scripts that exist in this repo today. Treat them as a conceptual sketch of the intended UX, not a runnable reference.
Overview
This skill demonstrates:
- Skills system architecture
- Source tracking (local/github/vercel)
- Semantic search with embeddings
- Context-aware activation
- CLI integration
Features
1. Multi-Source Support
RevealUI supports skills from multiple sources:
- Local: Custom skills in your project
- GitHub: Community skills from repositories
- Vercel: Professional skills from skills.sh ecosystem
2. Semantic Search
All skills are indexed with AI embeddings for semantic search:
pnpm skills search "optimize performance" --semantic
3. CLI Commands
Unified CLI for all skill sources:
pnpm skills create my-skill
pnpm skills add ./path/to/skill --local
pnpm skills add owner/repo
pnpm skills add vercel-labs/agent-skills/skill-name --vercel
pnpm skills search "query" --vercel
pnpm skills trending --vercel
Usage Instructions
When working on RevealUI projects, remember:
- Architecture: RevealUI uses a bridge pattern for Vercel Skills
- Zero Breaking Changes: All existing features preserved
- Type Safety: Full TypeScript support throughout
- Testing: Comprehensive test coverage
Example Workflow
pnpm skills search "react" --vercel
pnpm skills add vercel-labs/agent-skills/react-best-practices --vercel
pnpm skills list
pnpm skills info react-best-practices
pnpm skills update react-best-practices
Technical Details
- Registry: Unified SkillRegistry manages all sources
- Embeddings: Generated for semantic search
- Caching: 24hr cache for Vercel catalog
- Fallback: Automatic fallback from npx to git
This skill serves as a reference for RevealUI's skills capabilities!