@opendirectory.dev/skills 0.1.31 → 0.1.33

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.
Files changed (31) hide show
  1. package/package.json +1 -1
  2. package/skills/blog-cover-image-cli/README.md +24 -20
  3. package/skills/brand-alchemy/README.md +24 -20
  4. package/skills/claude-md-generator/README.md +24 -20
  5. package/skills/cold-email-verifier/README.md +24 -20
  6. package/skills/cook-the-blog/README.md +24 -20
  7. package/skills/dependency-update-bot/README.md +24 -20
  8. package/skills/docs-from-code/README.md +24 -20
  9. package/skills/explain-this-pr/README.md +24 -20
  10. package/skills/google-trends-api-skills/README.md +24 -20
  11. package/skills/hackernews-intel/README.md +24 -20
  12. package/skills/human-tone/README.md +24 -20
  13. package/skills/kill-the-standup/README.md +24 -20
  14. package/skills/linkedin-post-generator/README.md +24 -20
  15. package/skills/llms-txt-generator/README.md +24 -20
  16. package/skills/meeting-brief-generator/README.md +24 -20
  17. package/skills/meta-ads-skill/README.md +24 -20
  18. package/skills/newsletter-digest/README.md +24 -20
  19. package/skills/noise2blog/README.md +24 -20
  20. package/skills/outreach-sequence-builder/README.md +24 -20
  21. package/skills/position-me/README.md +24 -20
  22. package/skills/pr-description-writer/README.md +24 -20
  23. package/skills/pricing-page-psychology-audit/README.md +18 -20
  24. package/skills/producthunt-launch-kit/README.md +24 -20
  25. package/skills/reddit-icp-monitor/README.md +24 -20
  26. package/skills/reddit-post-engine/README.md +24 -20
  27. package/skills/schema-markup-generator/README.md +24 -20
  28. package/skills/show-hn-writer/README.md +24 -20
  29. package/skills/tweet-thread-from-blog/README.md +24 -20
  30. package/skills/twitter-GTM-find-skill/README.md +24 -20
  31. package/skills/yc-intent-radar-skill/README.md +24 -20
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendirectory.dev/skills",
3
- "version": "0.1.31",
3
+ "version": "0.1.33",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "bin": {
@@ -14,6 +14,30 @@ It handles everything from fetching company logos to pixel-perfect typography in
14
14
 
15
15
  ---
16
16
 
17
+ ## Install
18
+
19
+ ```bash
20
+ npx "@opendirectory.dev/skills" install blog-cover-image-cli --target claude
21
+ ```
22
+
23
+ ### Video Tutorial
24
+ Watch this quick video to see how it's done:
25
+
26
+ https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
27
+
28
+ ### Step 1: Download the skill from GitHub
29
+ 1. Copy the URL of this specific skill folder from your browser's address bar.
30
+ 2. Go to [download-directory.github.io](https://download-directory.github.io/).
31
+ 3. Paste the URL and click **Enter** to download.
32
+
33
+ ### Step 2: Install the Skill in Claude
34
+ 1. Open your **Claude desktop app**.
35
+ 2. Go to the sidebar on the left side and click on the **Customize** section.
36
+ 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
37
+ 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
38
+
39
+ > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
40
+
17
41
  ## Features
18
42
  - **Full AI Generation**: Uses `gemini-3.1-flash-image-preview` to generate the entire image.
19
43
  - **Smart Logo Fetching**: Pass a domain (like `vercel.com`) and the CLI automatically fetches the logo using `Brandfetch`, normalizes it to PNG via `sharp`, and injects it into the AI context.
@@ -124,23 +148,3 @@ The workflow will automatically publish a new version to NPM whenever you create
124
148
  2. **Context Assembly**: Loads aesthetic examples from the `./examples` folder to ground the style.
125
149
  3. **Multimodal Prompting**: Assembles the exact text instructions, the visual examples, and the fetched logo into a single unified payload.
126
150
  4. **Google GenAI SDK**: Sends the payload with `tools: [{ googleSearch: {} }]` to the Gemini 3.1 Flash Image model.
127
-
128
- ## Installation in Claude Desktop App
129
-
130
- ### Video Tutorial
131
- Watch this quick video to see how it's done:
132
-
133
- https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
134
-
135
- ### Step 1: Download the skill from GitHub
136
- 1. Copy the URL of this specific skill folder from your browser's address bar.
137
- 2. Go to [download-directory.github.io](https://download-directory.github.io/).
138
- 3. Paste the URL and click **Enter** to download.
139
-
140
- ### Step 2: Install the Skill in Claude
141
- 1. Open your **Claude desktop app**.
142
- 2. Go to the sidebar on the left side and click on the **Customize** section.
143
- 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
144
- 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
145
-
146
- > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
@@ -4,6 +4,30 @@
4
4
 
5
5
  World-class brand strategist and naming expert. Uses an interrogation-led discovery phase to extract your brand's DNA, then applies scientific naming frameworks (Phonosemantics) and automated multi-TLD domain checking.
6
6
 
7
+ ## Install
8
+
9
+ ```bash
10
+ npx "@opendirectory.dev/skills" install brand-alchemy --target claude
11
+ ```
12
+
13
+ ### Video Tutorial
14
+ Watch this quick video to see how it's done:
15
+
16
+ https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
17
+
18
+ ### Step 1: Download the skill from GitHub
19
+ 1. Copy the URL of this specific skill folder from your browser's address bar.
20
+ 2. Go to [download-directory.github.io](https://download-directory.github.io/).
21
+ 3. Paste the URL and click **Enter** to download.
22
+
23
+ ### Step 2: Install the Skill in Claude
24
+ 1. Open your **Claude desktop app**.
25
+ 2. Go to the sidebar on the left side and click on the **Customize** section.
26
+ 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
27
+ 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
28
+
29
+ > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
30
+
7
31
  ## Core Capabilities
8
32
 
9
33
  When invoked, the skill commands the AI agent to act as an elite branding consultant through a rigorous protocol:
@@ -33,23 +57,3 @@ Once the skill is installed, simply ask the AI to help you name your startup or
33
57
  > "Help me name my AI distribution startup. We help technical founders get users."
34
58
 
35
59
  The AI will automatically pause and initiate **Step 1: The Interrogation**, asking you specific questions about your core offering, audience, alternatives, and desired brand vibe.
36
-
37
- ## Installation in Claude Desktop App
38
-
39
- ### Video Tutorial
40
- Watch this quick video to see how it's done:
41
-
42
- https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
43
-
44
- ### Step 1: Download the skill from GitHub
45
- 1. Copy the URL of this specific skill folder from your browser's address bar.
46
- 2. Go to [download-directory.github.io](https://download-directory.github.io/).
47
- 3. Paste the URL and click **Enter** to download.
48
-
49
- ### Step 2: Install the Skill in Claude
50
- 1. Open your **Claude desktop app**.
51
- 2. Go to the sidebar on the left side and click on the **Customize** section.
52
- 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
53
- 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
54
-
55
- > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
@@ -5,6 +5,30 @@
5
5
 
6
6
  Reads your codebase and writes a CLAUDE.md that gives Claude Code the context it needs: build commands, code conventions, architecture notes, and gotchas. Stays under 200 lines.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install claude-md-generator --target claude
12
+ ```
13
+
14
+ ### Video Tutorial
15
+ Watch this quick video to see how it's done:
16
+
17
+ https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
18
+
19
+ ### Step 1: Download the skill from GitHub
20
+ 1. Copy the URL of this specific skill folder from your browser's address bar.
21
+ 2. Go to [download-directory.github.io](https://download-directory.github.io/).
22
+ 3. Paste the URL and click **Enter** to download.
23
+
24
+ ### Step 2: Install the Skill in Claude
25
+ 1. Open your **Claude desktop app**.
26
+ 2. Go to the sidebar on the left side and click on the **Customize** section.
27
+ 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
28
+ 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
29
+
30
+ > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
31
+
8
32
  ## What It Does
9
33
 
10
34
  - Scans project files: package.json, tsconfig.json, linter configs, Makefile, directory structure
@@ -76,23 +100,3 @@ claude-md-generator/
76
100
  ## License
77
101
 
78
102
  MIT
79
-
80
- ## Installation in Claude Desktop App
81
-
82
- ### Video Tutorial
83
- Watch this quick video to see how it's done:
84
-
85
- https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
86
-
87
- ### Step 1: Download the skill from GitHub
88
- 1. Copy the URL of this specific skill folder from your browser's address bar.
89
- 2. Go to [download-directory.github.io](https://download-directory.github.io/).
90
- 3. Paste the URL and click **Enter** to download.
91
-
92
- ### Step 2: Install the Skill in Claude
93
- 1. Open your **Claude desktop app**.
94
- 2. Go to the sidebar on the left side and click on the **Customize** section.
95
- 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
96
- 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
97
-
98
- > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
@@ -4,6 +4,30 @@ Agent Skill that equips your AI agent with the ability to autonomously guess, en
4
4
 
5
5
  Instead of running Python scripts manually, this skill teaches your AI how to read your lead lists, discover corporate domains via the Clearbit API, generate standard email permutations, and securely verify them.
6
6
 
7
+ ## Install
8
+
9
+ ```bash
10
+ npx "@opendirectory.dev/skills" install cold-email-verifier --target claude
11
+ ```
12
+
13
+ ### Video Tutorial
14
+ Watch this quick video to see how it's done:
15
+
16
+ https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
17
+
18
+ ### Step 1: Download the skill from GitHub
19
+ 1. Copy the URL of this specific skill folder from your browser's address bar.
20
+ 2. Go to [download-directory.github.io](https://download-directory.github.io/).
21
+ 3. Paste the URL and click **Enter** to download.
22
+
23
+ ### Step 2: Install the Skill in Claude
24
+ 1. Open your **Claude desktop app**.
25
+ 2. Go to the sidebar on the left side and click on the **Customize** section.
26
+ 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
27
+ 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
28
+
29
+ > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
30
+
7
31
  ## Verification Engines Supported
8
32
  The AI is trained to use two different verification backends:
9
33
  1. **ValidEmail.co API (Highly Recommended)**: The AI will use this SaaS API for enterprise-grade accuracy, bypassing strict catch-all servers. You can get a free tier of verification credits at validemail.co.
@@ -43,23 +67,3 @@ The AI expects the input CSV to contain at least the following headers:
43
67
  - Last Name
44
68
  - Company Name
45
69
  - Domain Name
46
-
47
- ## Installation in Claude Desktop App
48
-
49
- ### Video Tutorial
50
- Watch this quick video to see how it's done:
51
-
52
- https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
53
-
54
- ### Step 1: Download the skill from GitHub
55
- 1. Copy the URL of this specific skill folder from your browser's address bar.
56
- 2. Go to [download-directory.github.io](https://download-directory.github.io/).
57
- 3. Paste the URL and click **Enter** to download.
58
-
59
- ### Step 2: Install the Skill in Claude
60
- 1. Open your **Claude desktop app**.
61
- 2. Go to the sidebar on the left side and click on the **Customize** section.
62
- 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
63
- 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
64
-
65
- > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
@@ -4,6 +4,30 @@
4
4
 
5
5
  This guide explains how to set up, configure, and run the `cook-the-blog` skill. This AI agent pipeline autonomously researches companies, extracts SEO keywords, generates custom cover images, writes high-converting MDX case studies without AI fluff, uploads assets to cloud storage, and pushes the final code to your designated GitHub repository.
6
6
 
7
+ ## Install
8
+
9
+ ```bash
10
+ npx "@opendirectory.dev/skills" install cook-the-blog --target claude
11
+ ```
12
+
13
+ ### Video Tutorial
14
+ Watch this quick video to see how it's done:
15
+
16
+ https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
17
+
18
+ ### Step 1: Download the skill from GitHub
19
+ 1. Copy the URL of this specific skill folder from your browser's address bar.
20
+ 2. Go to [download-directory.github.io](https://download-directory.github.io/).
21
+ 3. Paste the URL and click **Enter** to download.
22
+
23
+ ### Step 2: Install the Skill in Claude
24
+ 1. Open your **Claude desktop app**.
25
+ 2. Go to the sidebar on the left side and click on the **Customize** section.
26
+ 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
27
+ 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
28
+
29
+ > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
30
+
7
31
  ## Prerequisites & Dependencies
8
32
 
9
33
  Before running the skill, the AI agent needs access to several external tools, APIs, and environment details.
@@ -84,23 +108,3 @@ When initializing this skill, the agent must ask the user to provide or confirm
84
108
  2. The agent will read `skill.md` to understand the 8-step execution loop.
85
109
  3. Trigger the agent by saying: *"Run the case study generator for [Company Name]."*
86
110
  4. The agent will autonomously execute the entire pipeline from research to deployment.
87
-
88
- ## Installation in Claude Desktop App
89
-
90
- ### Video Tutorial
91
- Watch this quick video to see how it's done:
92
-
93
- https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
94
-
95
- ### Step 1: Download the skill from GitHub
96
- 1. Copy the URL of this specific skill folder from your browser's address bar.
97
- 2. Go to [download-directory.github.io](https://download-directory.github.io/).
98
- 3. Paste the URL and click **Enter** to download.
99
-
100
- ### Step 2: Install the Skill in Claude
101
- 1. Open your **Claude desktop app**.
102
- 2. Go to the sidebar on the left side and click on the **Customize** section.
103
- 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
104
- 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
105
-
106
- > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
@@ -5,6 +5,30 @@
5
5
 
6
6
  Weekly scan for outdated npm or pip packages. Fetches changelogs for each. Summarizes breaking changes with Gemini. Opens one PR per risk group.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install dependency-update-bot --target claude
12
+ ```
13
+
14
+ ### Video Tutorial
15
+ Watch this quick video to see how it's done:
16
+
17
+ https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
18
+
19
+ ### Step 1: Download the skill from GitHub
20
+ 1. Copy the URL of this specific skill folder from your browser's address bar.
21
+ 2. Go to [download-directory.github.io](https://download-directory.github.io/).
22
+ 3. Paste the URL and click **Enter** to download.
23
+
24
+ ### Step 2: Install the Skill in Claude
25
+ 1. Open your **Claude desktop app**.
26
+ 2. Go to the sidebar on the left side and click on the **Customize** section.
27
+ 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
28
+ 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
29
+
30
+ > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
31
+
8
32
  ## What It Does
9
33
 
10
34
  - Runs `npm outdated --json` or `pip list --outdated` to find outdated packages
@@ -99,23 +123,3 @@ dependency-update-bot/
99
123
  ## License
100
124
 
101
125
  MIT
102
-
103
- ## Installation in Claude Desktop App
104
-
105
- ### Video Tutorial
106
- Watch this quick video to see how it's done:
107
-
108
- https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
109
-
110
- ### Step 1: Download the skill from GitHub
111
- 1. Copy the URL of this specific skill folder from your browser's address bar.
112
- 2. Go to [download-directory.github.io](https://download-directory.github.io/).
113
- 3. Paste the URL and click **Enter** to download.
114
-
115
- ### Step 2: Install the Skill in Claude
116
- 1. Open your **Claude desktop app**.
117
- 2. Go to the sidebar on the left side and click on the **Customize** section.
118
- 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
119
- 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
120
-
121
- > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
@@ -4,6 +4,30 @@
4
4
 
5
5
  Automatically generate and maintain README.md, API reference docs, and an Architecture section by reading your codebase. Uses [graphify](https://github.com/safishamsi/graphify) to build a knowledge graph first, then uses AI to write clean documentation grounded in what actually exists.
6
6
 
7
+ ## Install
8
+
9
+ ```bash
10
+ npx "@opendirectory.dev/skills" install docs-from-code --target claude
11
+ ```
12
+
13
+ ### Video Tutorial
14
+ Watch this quick video to see how it's done:
15
+
16
+ https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
17
+
18
+ ### Step 1: Download the skill from GitHub
19
+ 1. Copy the URL of this specific skill folder from your browser's address bar.
20
+ 2. Go to [download-directory.github.io](https://download-directory.github.io/).
21
+ 3. Paste the URL and click **Enter** to download.
22
+
23
+ ### Step 2: Install the Skill in Claude
24
+ 1. Open your **Claude desktop app**.
25
+ 2. Go to the sidebar on the left side and click on the **Customize** section.
26
+ 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
27
+ 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
28
+
29
+ > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
30
+
7
31
  ## What It Generates
8
32
 
9
33
  | Output | When |
@@ -95,23 +119,3 @@ docs-from-code/
95
119
  ## License
96
120
 
97
121
  MIT
98
-
99
- ## Installation in Claude Desktop App
100
-
101
- ### Video Tutorial
102
- Watch this quick video to see how it's done:
103
-
104
- https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
105
-
106
- ### Step 1: Download the skill from GitHub
107
- 1. Copy the URL of this specific skill folder from your browser's address bar.
108
- 2. Go to [download-directory.github.io](https://download-directory.github.io/).
109
- 3. Paste the URL and click **Enter** to download.
110
-
111
- ### Step 2: Install the Skill in Claude
112
- 1. Open your **Claude desktop app**.
113
- 2. Go to the sidebar on the left side and click on the **Customize** section.
114
- 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
115
- 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
116
-
117
- > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
@@ -5,6 +5,30 @@
5
5
 
6
6
  Point this skill at any GitHub PR and it writes a plain-English explanation of what changed and why, then posts it as a PR comment.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install explain-this-pr --target claude
12
+ ```
13
+
14
+ ### Video Tutorial
15
+ Watch this quick video to see how it's done:
16
+
17
+ https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
18
+
19
+ ### Step 1: Download the skill from GitHub
20
+ 1. Copy the URL of this specific skill folder from your browser's address bar.
21
+ 2. Go to [download-directory.github.io](https://download-directory.github.io/).
22
+ 3. Paste the URL and click **Enter** to download.
23
+
24
+ ### Step 2: Install the Skill in Claude
25
+ 1. Open your **Claude desktop app**.
26
+ 2. Go to the sidebar on the left side and click on the **Customize** section.
27
+ 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
28
+ 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
29
+
30
+ > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
31
+
8
32
  ## What It Does
9
33
 
10
34
  - Fetches the PR diff and metadata via `gh`
@@ -72,23 +96,3 @@ explain-this-pr/
72
96
  ## License
73
97
 
74
98
  MIT
75
-
76
- ## Installation in Claude Desktop App
77
-
78
- ### Video Tutorial
79
- Watch this quick video to see how it's done:
80
-
81
- https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
82
-
83
- ### Step 1: Download the skill from GitHub
84
- 1. Copy the URL of this specific skill folder from your browser's address bar.
85
- 2. Go to [download-directory.github.io](https://download-directory.github.io/).
86
- 3. Paste the URL and click **Enter** to download.
87
-
88
- ### Step 2: Install the Skill in Claude
89
- 1. Open your **Claude desktop app**.
90
- 2. Go to the sidebar on the left side and click on the **Customize** section.
91
- 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
92
- 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
93
-
94
- > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
@@ -4,6 +4,30 @@
4
4
 
5
5
  Agent Skills for SEO keyword research using Google Trends data via SerpApi. Built for AI agents that generate tech and developer-focused blog content.
6
6
 
7
+ ## Install
8
+
9
+ ```bash
10
+ npx "@opendirectory.dev/skills" install google-trends-api-skills --target claude
11
+ ```
12
+
13
+ ### Video Tutorial
14
+ Watch this quick video to see how it's done:
15
+
16
+ https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
17
+
18
+ ### Step 1: Download the skill from GitHub
19
+ 1. Copy the URL of this specific skill folder from your browser's address bar.
20
+ 2. Go to [download-directory.github.io](https://download-directory.github.io/).
21
+ 3. Paste the URL and click **Enter** to download.
22
+
23
+ ### Step 2: Install the Skill in Claude
24
+ 1. Open your **Claude desktop app**.
25
+ 2. Go to the sidebar on the left side and click on the **Customize** section.
26
+ 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
27
+ 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
28
+
29
+ > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
30
+
7
31
  ## Skills
8
32
 
9
33
  ### 1. `google-trends-api/`
@@ -76,23 +100,3 @@ These skills follow the [Agent Skills specification](https://agentskills.io/spec
76
100
  ## License
77
101
 
78
102
  MIT
79
-
80
- ## Installation in Claude Desktop App
81
-
82
- ### Video Tutorial
83
- Watch this quick video to see how it's done:
84
-
85
- https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
86
-
87
- ### Step 1: Download the skill from GitHub
88
- 1. Copy the URL of this specific skill folder from your browser's address bar.
89
- 2. Go to [download-directory.github.io](https://download-directory.github.io/).
90
- 3. Paste the URL and click **Enter** to download.
91
-
92
- ### Step 2: Install the Skill in Claude
93
- 1. Open your **Claude desktop app**.
94
- 2. Go to the sidebar on the left side and click on the **Customize** section.
95
- 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
96
- 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
97
-
98
- > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
@@ -5,6 +5,30 @@
5
5
 
6
6
  Monitor Hacker News for keywords. Get a Slack alert every time a new post matches your topics, without duplicates. Run it manually, on a cron schedule, or via GitHub Actions.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install hackernews-intel --target claude
12
+ ```
13
+
14
+ ### Video Tutorial
15
+ Watch this quick video to see how it's done:
16
+
17
+ https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
18
+
19
+ ### Step 1: Download the skill from GitHub
20
+ 1. Copy the URL of this specific skill folder from your browser's address bar.
21
+ 2. Go to [download-directory.github.io](https://download-directory.github.io/).
22
+ 3. Paste the URL and click **Enter** to download.
23
+
24
+ ### Step 2: Install the Skill in Claude
25
+ 1. Open your **Claude desktop app**.
26
+ 2. Go to the sidebar on the left side and click on the **Customize** section.
27
+ 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
28
+ 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
29
+
30
+ > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
31
+
8
32
  ## What It Does
9
33
 
10
34
  - Fetches new posts from HN using the free Algolia search API (no API key needed)
@@ -159,23 +183,3 @@ hackernews-intel/
159
183
  ## License
160
184
 
161
185
  MIT
162
-
163
- ## Installation in Claude Desktop App
164
-
165
- ### Video Tutorial
166
- Watch this quick video to see how it's done:
167
-
168
- https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
169
-
170
- ### Step 1: Download the skill from GitHub
171
- 1. Copy the URL of this specific skill folder from your browser's address bar.
172
- 2. Go to [download-directory.github.io](https://download-directory.github.io/).
173
- 3. Paste the URL and click **Enter** to download.
174
-
175
- ### Step 2: Install the Skill in Claude
176
- 1. Open your **Claude desktop app**.
177
- 2. Go to the sidebar on the left side and click on the **Customize** section.
178
- 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
179
- 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
180
-
181
- > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
@@ -7,6 +7,30 @@ AI assistants write terrible marketing copy. They rely on generic filler words,
7
7
  The Human Tone skill teaches your AI how to edit its own work. It provides strict rules for stripping out robotic patterns and rewriting text to sound like a direct conversation from a founder to a customer.
8
8
 
9
9
 
10
+ ## Install
11
+
12
+ ```bash
13
+ npx "@opendirectory.dev/skills" install human-tone --target claude
14
+ ```
15
+
16
+ ### Video Tutorial
17
+ Watch this quick video to see how it's done:
18
+
19
+ https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
20
+
21
+ ### Step 1: Download the skill from GitHub
22
+ 1. Copy the URL of this specific skill folder from your browser's address bar.
23
+ 2. Go to [download-directory.github.io](https://download-directory.github.io/).
24
+ 3. Paste the URL and click **Enter** to download.
25
+
26
+ ### Step 2: Install the Skill in Claude
27
+ 1. Open your **Claude desktop app**.
28
+ 2. Go to the sidebar on the left side and click on the **Customize** section.
29
+ 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
30
+ 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
31
+
32
+ > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
33
+
10
34
  ## What It Fixes
11
35
 
12
36
  * Removes words like "streamline", "empower", and "revolutionize".
@@ -48,23 +72,3 @@ Once the skill is installed in your workspace, simply ask your AI to humanize yo
48
72
  > "Rewrite this landing page copy using the human-tone skill. Match the writing style in this sample: [paste a sample of your writing]."
49
73
 
50
74
  The AI will rewrite the text, provide a bulleted list of what it changed, and flag any placeholders where you need to insert real numbers or actual customer names.
51
-
52
- ## Installation in Claude Desktop App
53
-
54
- ### Video Tutorial
55
- Watch this quick video to see how it's done:
56
-
57
- https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
58
-
59
- ### Step 1: Download the skill from GitHub
60
- 1. Copy the URL of this specific skill folder from your browser's address bar.
61
- 2. Go to [download-directory.github.io](https://download-directory.github.io/).
62
- 3. Paste the URL and click **Enter** to download.
63
-
64
- ### Step 2: Install the Skill in Claude
65
- 1. Open your **Claude desktop app**.
66
- 2. Go to the sidebar on the left side and click on the **Customize** section.
67
- 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
68
- 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
69
-
70
- > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
@@ -5,6 +5,30 @@
5
5
 
6
6
  Write your daily standup in seconds. The skill reads yesterday's Linear issues and GitHub commits, formats a done/doing/blockers update, and posts it to Slack.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install kill-the-standup --target claude
12
+ ```
13
+
14
+ ### Video Tutorial
15
+ Watch this quick video to see how it's done:
16
+
17
+ https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
18
+
19
+ ### Step 1: Download the skill from GitHub
20
+ 1. Copy the URL of this specific skill folder from your browser's address bar.
21
+ 2. Go to [download-directory.github.io](https://download-directory.github.io/).
22
+ 3. Paste the URL and click **Enter** to download.
23
+
24
+ ### Step 2: Install the Skill in Claude
25
+ 1. Open your **Claude desktop app**.
26
+ 2. Go to the sidebar on the left side and click on the **Customize** section.
27
+ 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
28
+ 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
29
+
30
+ > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!
31
+
8
32
  ## What It Does
9
33
 
10
34
  - Fetches yesterday's Linear issues assigned to you (completed and in-progress)
@@ -82,23 +106,3 @@ kill-the-standup/
82
106
  ## License
83
107
 
84
108
  MIT
85
-
86
- ## Installation in Claude Desktop App
87
-
88
- ### Video Tutorial
89
- Watch this quick video to see how it's done:
90
-
91
- https://github.com/user-attachments/assets/ee98a1b5-ebc4-452f-bbfb-c434f2935067
92
-
93
- ### Step 1: Download the skill from GitHub
94
- 1. Copy the URL of this specific skill folder from your browser's address bar.
95
- 2. Go to [download-directory.github.io](https://download-directory.github.io/).
96
- 3. Paste the URL and click **Enter** to download.
97
-
98
- ### Step 2: Install the Skill in Claude
99
- 1. Open your **Claude desktop app**.
100
- 2. Go to the sidebar on the left side and click on the **Customize** section.
101
- 3. Click on the **Skills** tab, then click on the **+** (plus) icon button to create a new skill.
102
- 4. Choose the option to **Upload a skill**, and drag and drop the `.zip` file (or you can extract it and drop the folder, both work).
103
-
104
- > **Note:** For some skills (like `position-me`), the `SKILL.md` file might be located inside a subfolder. Always make sure you are uploading the specific folder that contains the `SKILL.md` file!