Find skill

Find and install skills from the Orthogonal skill library.

How to use it

  1. Hit Copy the whole skill.
  2. Claude: ⋯ → Download .md, then Customize → Skills → Add → Upload skill.
    ChatGPT: make a Project and paste it into Instructions.
    Neither? Paste it at the top of a new chat — it works for that chat.
  3. Describe your job in plain words. The AI follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit gooseworks-ai/goose-skills/skills/research-tools/capabilities/find-skill#main ~/.claude/skills/find-skill

For one project only, change the path to .claude/skills/find-skill.

Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Show the full text119 lines
find-skill/SKILL.md119 lines3.3 KBpushed 96d agoRawView on GitHub

Find Skill

Setup

Read your credentials from ~/.gooseworks/credentials.json:

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

# 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

# Find skills for web scraping
orth skills search "web scraping"

# Find skills for email
orth skills search "email"

# Find skills for calendar
orth skills search "calendar"

Browse Categories

Common skill categories:

  • Browser automation: notte, web scraping, booking
  • Data enrichment: company intel, people search, email finder
  • Productivity: calendar, email, file management
  • Search: web search, semantic search, research
  • Communication: messaging, notifications

Via Web

Browse all skills at: https://orthogonal.com/skills

Installing Skills

# Install by slug
orth skills add restaurant-booking

# Install and view the skill file
orth skills add weather && cat ~/.openclaw/skills/weather/SKILL.md

Skills are installed to ~/.openclaw/skills/<slug>/

Using Installed Skills

After installing, the skill's SKILL.md contains:

  • Description of what it does
  • Required setup/credentials
  • Usage instructions
  • Example commands

Read the skill file to understand how to use it:

cat ~/.openclaw/skills/<slug>/SKILL.md

Popular Skills

Skill Description
weather Get weather forecasts
weather-forecast Precipitation and temperature data via Precip API
restaurant-booking Book restaurant reservations via Notte
company-intel Research companies
person-lookup Look up professional backgrounds
verify-email Check if an email is valid and deliverable
extract-webpage-data AI-powered web scraping

Tips

  • Search is semantic - describe what you want to do
  • Check skill requirements before installing
  • Skills may need API keys or credentials configured
  • Use orth skills list --installed to see what you have
1---
2name: find-skill
3description: Find and install skills from the Orthogonal skill library. Use when you need capabilities you don't have, want to discover available skills, or need to add new tools to your agent.
4source: orthogonal
5---
6 
7 
8# Find Skill
9 
10## Setup
11 
12Read your credentials from ~/.gooseworks/credentials.json:
13```bash
14export GOOSEWORKS_API_KEY=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json'))['api_key'])")
15export GOOSEWORKS_API_BASE=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json')).get('api_base','https://api.gooseworks.ai'))")
16```
17 
18If ~/.gooseworks/credentials.json does not exist, tell the user to run: `npx gooseworks login`
19 
20All endpoints use Bearer auth: `-H "Authorization: Bearer $GOOSEWORKS_API_KEY"`
21 
22 
23**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.
24 
25Discover and install skills from the Orthogonal skill library.
26 
27## Requirements
28 
29- Orthogonal CLI: `npm install -g @orth/cli`
30 
31## Quick Commands
32 
33```bash
34# Search for skills by keyword
35orth skills search "browser automation"
36 
37# List all available skills
38orth skills list
39 
40# Get details about a specific skill
41orth skills info <slug>
42 
43# Install a skill
44orth skills add <slug>
45```
46 
47## Finding Skills
48 
49### By Keyword Search
50 
51```bash
52# Find skills for web scraping
53orth skills search "web scraping"
54 
55# Find skills for email
56orth skills search "email"
57 
58# Find skills for calendar
59orth skills search "calendar"
60```
61 
62### Browse Categories
63 
64Common skill categories:
65- **Browser automation**: notte, web scraping, booking
66- **Data enrichment**: company intel, people search, email finder
67- **Productivity**: calendar, email, file management
68- **Search**: web search, semantic search, research
69- **Communication**: messaging, notifications
70 
71### Via Web
72 
73Browse all skills at: https://orthogonal.com/skills
74 
75## Installing Skills
76 
77```bash
78# Install by slug
79orth skills add restaurant-booking
80 
81# Install and view the skill file
82orth skills add weather && cat ~/.openclaw/skills/weather/SKILL.md
83```
84 
85Skills are installed to `~/.openclaw/skills/<slug>/`
86 
87## Using Installed Skills
88 
89After installing, the skill's `SKILL.md` contains:
90- Description of what it does
91- Required setup/credentials
92- Usage instructions
93- Example commands
94 
95Read the skill file to understand how to use it:
96 
97```bash
98cat ~/.openclaw/skills/<slug>/SKILL.md
99```
100 
101## Popular Skills
102 
103| Skill | Description |
104|-------|-------------|
105| `weather` | Get weather forecasts |
106| `weather-forecast` | Precipitation and temperature data via Precip API |
107| `restaurant-booking` | Book restaurant reservations via Notte |
108| `company-intel` | Research companies |
109| `person-lookup` | Look up professional backgrounds |
110| `verify-email` | Check if an email is valid and deliverable |
111| `extract-webpage-data` | AI-powered web scraping |
112 
113## Tips
114 
115- Search is semantic - describe what you want to do
116- Check skill requirements before installing
117- Skills may need API keys or credentials configured
118- Use `orth skills list --installed` to see what you have
119 

Discussion

Alternatives

Also in Services & APIs
Context7Pulls up-to-date, version-specific library docs and code examples into the prompt so the AI stops inventing old APIs.Coding · MITAdaptyv Bio Foundry APIHow to use the Adaptyv Bio Foundry API and Python SDK for protein experiment design, submission, and results retrieval. Use this skill whenever the user mentions Adaptyv, Foundry API, protein binding assays, protein screening experiments, BLI/SPR assays, thermostability assays, or wants to submit protein sequences for experimental characterization. Also trigger when code imports `adaptyv`, `adaptyv_sdk`, or `FoundryClient`, or references `foundry-api-public.adaptyvbio.com`.Science · MIT.NET Backend Development PatternsMaster C#/.NET backend development patterns for building robust APIs, MCP servers, and enterprise applications. Covers async/await, dependency injection, Entity Framework Core, Dapper, configuration, caching, and testing with xUnit. Use when developing .NET backends, reviewing C# code, or designing API architectures.Coding · MITAdd AI protectionProtect AI chat and completion endpoints from abuse — detect prompt injection and jailbreak attempts, block PII and sensitive info from leaking in responses, and enforce token budget rate limits to control costs. Use this skill when the user is building or securing any endpoint that processes user prompts with an LLM, even if they describe it as "preventing jailbreaks," "stopping prompt attacks," "blocking sensitive data," or "controlling AI API costs" rather than naming specific protections.Coding · CC0-1.0