| name | resourcex-use |
| description | Discover, pull, and use AI resources (prompts, tools, agents) from ResourceX registry. Use when user asks to "use a prompt", "find AI resource", "search for tool", "get prompt", "resolve resource", or needs to execute an AI resource. |
| allowed-tools | Bash(resourcex-use:*) |
ResourceX Use Skill
Discover and use AI resources (prompts, tools, agents) from ResourceX registry.
Quick start
rx search code-review
rx pull code-review-prompt:1.0.0
rx resolve code-review-prompt:1.0.0
Core workflow
- Search:
rx search <query> to find resources
- Pull:
rx pull <locator> to cache locally
- Use:
rx resolve <locator> to execute
Commands
Discover resources
rx search <query>
rx search prompt
rx search "code review"
Pull resources
rx pull <locator>
rx pull code-review:1.0.0
rx pull code-review
rx pull registry.example.com/tool:1.0.0
Use resources
rx resolve <locator>
rx resolve code-review:1.0.0
rx resolve code-review
Get information
rx info <locator>
rx list
Cache management
rx cache list
rx cache clear
rx cache clear <registry>
Locator format
[registry/][path/]name[:tag]
Examples:
my-prompt # Local or configured registry, latest
my-prompt:1.0.0 # Specific version
registry.example.com/my-prompt # From specific registry
registry.example.com/my-prompt:1.0.0
Example: Find and use a code review prompt
rx search "code review"
rx info code-review-prompt:1.0.0
rx pull code-review-prompt:1.0.0
rx resolve code-review-prompt:1.0.0
Example: Use resource from registry
rx pull registry.deepractice.ai/assistant-prompt:1.0.0
rx resolve registry.deepractice.ai/assistant-prompt:1.0.0
Example: Offline usage
rx pull important-prompt:1.0.0
rx resolve important-prompt:1.0.0
Auto-pull feature
rx resolve automatically pulls from registry if resource not found locally:
rx resolve registry.example.com/new-tool:1.0.0
Tips
- Use
rx search to discover available resources
- Pull resources for offline access
rx resolve auto-pulls if needed, but explicit pull is faster for repeated use
- Check
rx info before using to understand what a resource does
- Use specific versions (
:1.0.0) for reproducibility