@framers/agentos-skills-registry 0.16.0 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: company-research
|
|
3
|
+
version: '1.0.0'
|
|
4
|
+
description: Research companies and contacts using Clearbit enrichment API.
|
|
5
|
+
author: Wunderland
|
|
6
|
+
namespace: wunderland
|
|
7
|
+
category: business
|
|
8
|
+
tags: [clearbit, company, enrichment, contacts, b2b, research]
|
|
9
|
+
requires_secrets: [clearbit.apiKey]
|
|
10
|
+
requires_tools: [clearbit_company, clearbit_person]
|
|
11
|
+
metadata:
|
|
12
|
+
agentos:
|
|
13
|
+
emoji: "\U0001F3E2"
|
|
14
|
+
homepage: https://clearbit.com
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
# Company & Contact Research
|
|
18
|
+
|
|
19
|
+
You can research companies and people using the Clearbit enrichment API.
|
|
20
|
+
|
|
21
|
+
## Workflow
|
|
22
|
+
|
|
23
|
+
1. Use `clearbit_company` with a domain name to get company overview: industry, size, tech stack, funding, social profiles.
|
|
24
|
+
2. Use `clearbit_person` with an email address to get contact details: name, role, title, seniority, social profiles.
|
|
25
|
+
|
|
26
|
+
## Response Format
|
|
27
|
+
|
|
28
|
+
**Company Brief:**
|
|
29
|
+
- **Name:** Company Name
|
|
30
|
+
- **Industry:** Category / Sector
|
|
31
|
+
- **Size:** Employee count, revenue estimate
|
|
32
|
+
- **Tech Stack:** Key technologies used
|
|
33
|
+
- **Founded:** Year, Location
|
|
34
|
+
- **Social:** LinkedIn, Twitter links
|
|
35
|
+
|
|
36
|
+
**Contact Brief:**
|
|
37
|
+
- **Name:** Full Name — Title at Company
|
|
38
|
+
- **Seniority:** Level
|
|
39
|
+
- **Social:** LinkedIn, GitHub, Twitter
|
|
40
|
+
|
|
41
|
+
## Tips
|
|
42
|
+
|
|
43
|
+
- If the user provides a URL, extract the domain for company lookup.
|
|
44
|
+
- If a person lookup returns company info, present both together.
|
|
45
|
+
- If Clearbit returns no data (not found), suggest the domain or email might be incorrect.
|
|
46
|
+
- Company tech stack data is useful for sales outreach — highlight technologies relevant to the user's context.
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: movie-lookup
|
|
3
|
+
version: '1.0.0'
|
|
4
|
+
description: Research movies and TV shows using OMDB (IMDB/RT/Metacritic scores) and Letterboxd (community ratings and reviews).
|
|
5
|
+
author: Wunderland
|
|
6
|
+
namespace: wunderland
|
|
7
|
+
category: entertainment
|
|
8
|
+
tags: [movies, tv, imdb, letterboxd, rotten-tomatoes, metacritic, reviews]
|
|
9
|
+
requires_secrets: [omdb.apiKey]
|
|
10
|
+
requires_tools: [omdb_search, omdb_details, letterboxd_movie]
|
|
11
|
+
metadata:
|
|
12
|
+
agentos:
|
|
13
|
+
emoji: "\U0001F3AC"
|
|
14
|
+
homepage: https://www.omdbapi.com
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
# Movie & TV Lookup
|
|
18
|
+
|
|
19
|
+
You can research movies and TV shows by combining data from OMDB and Letterboxd.
|
|
20
|
+
|
|
21
|
+
## Workflow
|
|
22
|
+
|
|
23
|
+
1. Use `omdb_search` to find the title and get the IMDB ID.
|
|
24
|
+
2. Use `omdb_details` with the IMDB ID to get full details: plot, cast, director, IMDB rating, Rotten Tomatoes score, and Metacritic score.
|
|
25
|
+
3. Use `letterboxd_movie` to get the Letterboxd community rating and top reviews.
|
|
26
|
+
4. Present all four rating sources side-by-side for comparison.
|
|
27
|
+
|
|
28
|
+
## Response Format
|
|
29
|
+
|
|
30
|
+
When presenting movie information, use this structure:
|
|
31
|
+
|
|
32
|
+
**Title** (Year) — Directed by Director
|
|
33
|
+
|
|
34
|
+
Ratings: IMDB X.X | RT XX% | Metacritic XX | Letterboxd X.X
|
|
35
|
+
|
|
36
|
+
Plot summary in 1-2 sentences.
|
|
37
|
+
|
|
38
|
+
Cast: Top 3-4 actors.
|
|
39
|
+
|
|
40
|
+
**Community Reviews** (from Letterboxd):
|
|
41
|
+
- "Review excerpt..." — @username (rating)
|
|
42
|
+
|
|
43
|
+
## Tips
|
|
44
|
+
|
|
45
|
+
- If the user asks "is it good?" compare the ratings: a film with high RT but low IMDB may be a critics' favorite but divisive with audiences.
|
|
46
|
+
- If Letterboxd data is unavailable, present OMDB data alone — it already includes IMDB, RT, and Metacritic.
|
|
47
|
+
- Use `omdb_details` with `plot: 'full'` when the user wants a detailed plot summary.
|
|
48
|
+
- For TV series, OMDB returns season/episode data — use the `type: 'series'` filter in search.
|