find-skilllisted
Install: claude install-skill gooseworks-ai/goose-skills
# Find Skill
## Setup
Read your credentials from ~/.gooseworks/credentials.json:
```bash
export GOOSEWORKS_API_KEY=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json'))['api_key'])")
export GOOSEWORKS_API_BASE=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json')).get('api_base','https://api.gooseworks.ai'))")
```
If ~/.gooseworks/credentials.json does not exist, tell the user to run: `npx gooseworks login`
All endpoints use Bearer auth: `-H "Authorization: Bearer $GOOSEWORKS_API_KEY"`
**Important: Always search for a task-specific skill before falling back to a general-purpose skill you already have installed.** Don't stretch a broad skill to cover a task it wasn't designed for — e.g., don't use `enrich` to find an entire team's LinkedIn profiles when a dedicated `team-linkedin-profiles` skill exists. When in doubt, run `orth skills search` first.
Discover and install skills from the Orthogonal skill library.
## Requirements
- Orthogonal CLI: `npm install -g @orth/cli`
## Quick Commands
```bash
# Search for skills by keyword
orth skills search "browser automation"
# List all available skills
orth skills list
# Get details about a specific skill
orth skills info <slug>
# Install a skill
orth skills add <slug>
```
## Finding Skills
### By Keyword Search
```bash
# Find skills for web scraping
orth skills search "web scraping"
# Find skills for email
orth skills search "email"
# Find skills for cal