@opendirectory.dev/skills 0.1.31 → 0.1.32

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 (30) hide show
  1. package/package.json +1 -1
  2. package/skills/blog-cover-image-cli/README.md +6 -0
  3. package/skills/brand-alchemy/README.md +6 -0
  4. package/skills/claude-md-generator/README.md +6 -0
  5. package/skills/cold-email-verifier/README.md +6 -0
  6. package/skills/cook-the-blog/README.md +6 -0
  7. package/skills/dependency-update-bot/README.md +6 -0
  8. package/skills/docs-from-code/README.md +6 -0
  9. package/skills/explain-this-pr/README.md +6 -0
  10. package/skills/google-trends-api-skills/README.md +6 -0
  11. package/skills/hackernews-intel/README.md +6 -0
  12. package/skills/human-tone/README.md +6 -0
  13. package/skills/kill-the-standup/README.md +6 -0
  14. package/skills/linkedin-post-generator/README.md +6 -0
  15. package/skills/llms-txt-generator/README.md +6 -0
  16. package/skills/meeting-brief-generator/README.md +6 -0
  17. package/skills/meta-ads-skill/README.md +6 -0
  18. package/skills/newsletter-digest/README.md +6 -0
  19. package/skills/noise2blog/README.md +6 -0
  20. package/skills/outreach-sequence-builder/README.md +6 -0
  21. package/skills/position-me/README.md +6 -0
  22. package/skills/pr-description-writer/README.md +6 -0
  23. package/skills/producthunt-launch-kit/README.md +6 -0
  24. package/skills/reddit-icp-monitor/README.md +6 -0
  25. package/skills/reddit-post-engine/README.md +6 -0
  26. package/skills/schema-markup-generator/README.md +6 -0
  27. package/skills/show-hn-writer/README.md +6 -0
  28. package/skills/tweet-thread-from-blog/README.md +6 -0
  29. package/skills/twitter-GTM-find-skill/README.md +6 -0
  30. package/skills/yc-intent-radar-skill/README.md +6 -0
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.32",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "bin": {
@@ -14,6 +14,12 @@ 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
+
17
23
  ## Features
18
24
  - **Full AI Generation**: Uses `gemini-3.1-flash-image-preview` to generate the entire image.
19
25
  - **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.
@@ -4,6 +4,12 @@
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
+
7
13
  ## Core Capabilities
8
14
 
9
15
  When invoked, the skill commands the AI agent to act as an elite branding consultant through a rigorous protocol:
@@ -5,6 +5,12 @@
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
+
8
14
  ## What It Does
9
15
 
10
16
  - Scans project files: package.json, tsconfig.json, linter configs, Makefile, directory structure
@@ -4,6 +4,12 @@ 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
+
7
13
  ## Verification Engines Supported
8
14
  The AI is trained to use two different verification backends:
9
15
  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.
@@ -4,6 +4,12 @@
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
+
7
13
  ## Prerequisites & Dependencies
8
14
 
9
15
  Before running the skill, the AI agent needs access to several external tools, APIs, and environment details.
@@ -5,6 +5,12 @@
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
+
8
14
  ## What It Does
9
15
 
10
16
  - Runs `npm outdated --json` or `pip list --outdated` to find outdated packages
@@ -4,6 +4,12 @@
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
+
7
13
  ## What It Generates
8
14
 
9
15
  | Output | When |
@@ -5,6 +5,12 @@
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
+
8
14
  ## What It Does
9
15
 
10
16
  - Fetches the PR diff and metadata via `gh`
@@ -4,6 +4,12 @@
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
+
7
13
  ## Skills
8
14
 
9
15
  ### 1. `google-trends-api/`
@@ -5,6 +5,12 @@
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
+
8
14
  ## What It Does
9
15
 
10
16
  - Fetches new posts from HN using the free Algolia search API (no API key needed)
@@ -7,6 +7,12 @@ 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
+
10
16
  ## What It Fixes
11
17
 
12
18
  * Removes words like "streamline", "empower", and "revolutionize".
@@ -5,6 +5,12 @@
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
+
8
14
  ## What It Does
9
15
 
10
16
  - Fetches yesterday's Linear issues assigned to you (completed and in-progress)
@@ -4,6 +4,12 @@
4
4
 
5
5
  Generate LinkedIn posts from any content: blog posts, articles, GitHub PRs, or a description of what you built. The agent reads your source material, applies LinkedIn's content patterns, and produces a post with the right hook, story arc, and formatting.
6
6
 
7
+ ## Install
8
+
9
+ ```bash
10
+ npx "@opendirectory.dev/skills" install linkedin-post-generator --target claude
11
+ ```
12
+
7
13
  ## Post Styles
8
14
 
9
15
  | Style | Use When | Example Input |
@@ -4,6 +4,12 @@
4
4
 
5
5
  Generate a standards-compliant `llms.txt` file for any website. Makes your site fully readable and citable by AI agents the GEO (Generative Engine Optimization) equivalent of having a great sitemap.
6
6
 
7
+ ## Install
8
+
9
+ ```bash
10
+ npx "@opendirectory.dev/skills" install llms-txt-generator --target claude
11
+ ```
12
+
7
13
  ## What It Does
8
14
 
9
15
  The skill crawls your website using Chrome DevTools, reads your actual pages, and produces a clean `llms.txt` file in the format specified by [Jeremy Howard's llms.txt standard](https://llmstxt.org). When AI agents (Claude, ChatGPT, Gemini) visit your site, they read `llms.txt` first to understand what you are and where to find authoritative content.
@@ -5,6 +5,12 @@
5
5
 
6
6
  Walk into every sales or business development call prepared. Give the skill a company name and it runs targeted research, synthesizes a 1-page brief, and optionally saves it to Notion.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install meeting-brief-generator --target claude
12
+ ```
13
+
8
14
  ## What It Does
9
15
 
10
16
  - Runs 6-8 targeted Tavily searches covering company overview, recent news, tech stack, product, competitors, funding, and contact background
@@ -2,6 +2,12 @@
2
2
 
3
3
  <img width="1376" height="768" alt="meta-ads-skill" src="https://github.com/user-attachments/assets/baf2509b-0ee0-41ca-9555-3ad350a6824c" />
4
4
 
5
+ ## Install
6
+
7
+ ```bash
8
+ npx "@opendirectory.dev/skills" install meta-ads-skill --target claude
9
+ ```
10
+
5
11
  ## Overview
6
12
 
7
13
  The **Meta Ads Skill** is a comprehensive, production-ready OpenCode skill designed to give LLMs and AI agents expert-level capabilities to orchestrate the [Varnan-Tech Meta Ads MCP Server](https://github.com/Varnan-Tech/Meta-Ads-MCP).
@@ -5,6 +5,12 @@
5
5
 
6
6
  Aggregate RSS feeds, synthesize the week's top stories with Gemini, and publish a newsletter digest to Ghost CMS. Supports three digest formats and outputs HTML, Markdown, and plain text for any platform.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install newsletter-digest --target claude
12
+ ```
13
+
8
14
  ## What It Does
9
15
 
10
16
  - Reads your RSS/Atom feed list from `feeds.json`
@@ -5,6 +5,12 @@
5
5
 
6
6
  Paste your rough notes, bullet points, voice transcript, or tweet dump and get a publication-ready blog post.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install noise2blog --target claude
12
+ ```
13
+
8
14
  ## What It Does
9
15
 
10
16
  - Accepts any rough input: bullet points, rough notes, voice transcripts, tweet dumps, short drafts, or a URL
@@ -5,6 +5,12 @@
5
5
 
6
6
  Turn a buying signal into a ready-to-send multi-channel outreach sequence. Give the skill a signal and it generates 4-6 personalized touchpoints across email, LinkedIn, and phone, with objection pre-emption built in.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install outreach-sequence-builder --target claude
12
+ ```
13
+
8
14
  ## What It Does
9
15
 
10
16
  - Identifies the signal type from 7 categories: Post-Fundraise, Hiring Signal, Competitor Displacement, Product Launch, Content Engagement, Event Follow-up, Job Change
@@ -6,6 +6,12 @@ The Website Reviewer Agent Skill for AEO, GEO, SEO, UI/UX Psychology, and Direct
6
6
 
7
7
  An open source skill that transforms modern AI Agents into rigorous positioning consultants. It forces the agent to use native vision capabilities to evaluate cognitive load and verify Generative Engine Optimization (GEO) compatibility.
8
8
 
9
+ ## Install
10
+
11
+ ```bash
12
+ npx "@opendirectory.dev/skills" install position-me --target claude
13
+ ```
14
+
9
15
  ## Core Capabilities
10
16
 
11
17
  When invoked, the skill commands the AI agent to conduct an exhaustive teardown of the target website through a rigid protocol:
@@ -5,6 +5,12 @@
5
5
 
6
6
  Read your current git branch diff and generate a complete GitHub pull request description: summary, specific change bullets, and testing steps. Create or update the PR in one step.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install pr-description-writer --target claude
12
+ ```
13
+
8
14
  ## What It Does
9
15
 
10
16
  - Reads `git diff main...HEAD` to understand what changed
@@ -5,6 +5,12 @@
5
5
 
6
6
  Generates a complete Product Hunt launch kit from your product description: tagline variants (60 chars max), listing description, maker comment, launch day tweet thread, LinkedIn post, and a 4-email sequence.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install producthunt-launch-kit --target claude
12
+ ```
13
+
8
14
  ## What It Does
9
15
 
10
16
  - Generates 5 tagline variants with character counts (all under 60 chars)
@@ -5,6 +5,12 @@
5
5
 
6
6
  Watch subreddits for people describing the exact problem you solve. Score each post for ICP relevance. Draft a helpful, non-spammy reply for every high-signal match.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install reddit-icp-monitor --target claude
12
+ ```
13
+
8
14
  ## What It Does
9
15
 
10
16
  - Reads your ICP definition from docs/icp.md (or asks 3 questions to build it)
@@ -5,6 +5,12 @@
5
5
 
6
6
  Write and optionally post Reddit content that fits the target subreddit's culture. Fetches subreddit rules and top posts before drafting. Follows the 90/10 rule. Optionally posts via Composio Reddit MCP.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install reddit-post-engine --target claude
12
+ ```
13
+
8
14
  ## What It Does
9
15
 
10
16
  - Fetches the target subreddit's rules and top posts from Reddit's public API
@@ -5,6 +5,12 @@
5
5
 
6
6
  Generate valid JSON-LD structured data for any webpage. The agent crawls the page, detects which schema types apply, and outputs a script tag ready to paste into your HTML. Optionally opens a GitHub PR with the markup injected.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install schema-markup-generator --target claude
12
+ ```
13
+
8
14
  ## Schema Types Supported
9
15
 
10
16
  | Type | Use When |
@@ -5,6 +5,12 @@
5
5
 
6
6
  Draft a Show HN post (title + body) that follows Hacker News norms: specific, honest, first-person, no marketing. Generates three title variants and a complete body, then runs a Gemini review to catch HN anti-patterns before you post.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install show-hn-writer --target claude
12
+ ```
13
+
8
14
  ## What It Does
9
15
 
10
16
  - Reads your project context (from README or your answers)
@@ -5,6 +5,12 @@
5
5
 
6
6
  Turn any blog post or article into a Twitter/X thread. The agent reads the content, picks the right thread style, and writes 7-10 tweets with a strong hook, one insight per tweet, and a CTA. Optionally posts the full thread to X via Composio using a reply chain.
7
7
 
8
+ ## Install
9
+
10
+ ```bash
11
+ npx "@opendirectory.dev/skills" install tweet-thread-from-blog --target claude
12
+ ```
13
+
8
14
  ## Thread Styles
9
15
 
10
16
  | Style | Use When | Example Input |
@@ -6,6 +6,12 @@ This repository contains the `twitter-GTM-find/` AI Skill.
6
6
 
7
7
  This pipeline automates the discovery of highly-targeted, Developer-First startups hiring for Go-To-Market (GTM), Developer Relations (DevRel), and Growth roles by scraping Twitter (via Apify) and automatically verifying the startups' funding and product type using Gemini's native Google Search Grounding.
8
8
 
9
+ ## Install
10
+
11
+ ```bash
12
+ npx "@opendirectory.dev/skills" install twitter-GTM-find-skill --target claude
13
+ ```
14
+
9
15
  ## The Skill Directory
10
16
 
11
17
  All executable code and documentation are packaged cleanly inside the `twitter-GTM-find/` folder. This is designed to be directly imported and read by AI agents (like OpenClaw or Claude) so they understand how to use the tool.
@@ -4,6 +4,12 @@
4
4
 
5
5
  An automated scraper that pulls job listings and company data from YCombinator's Workatastartup platform. It bypasses login bottlenecks by utilizing authenticated sessions and ensures no duplicates are recorded by saving everything directly to a local SQLite database (`jobs.db`).
6
6
 
7
+ ## Install
8
+
9
+ ```bash
10
+ npx "@opendirectory.dev/skills" install yc-intent-radar-skill --target claude
11
+ ```
12
+
7
13
  ## Features
8
14
  - **Deduplication:** Utilizes `better-sqlite3` to store state, ensuring you never scrape the same job twice.
9
15
  - **Robust Extraction:** Identifies hidden JSON payloads on YC pages to grab accurate backend `job_id` values.