Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

generate-note-ideas生成笔记想法

Agent Skill

generate-note-ideas 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

288

周安装

12

GitHub Stars

124

下载量

96
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:generate-note-ideas(生成笔记想法)
来源仓库:https://github.com/kenneth-liao/ai-launchpad-marketplace
仓库路径:skills/generate-note-ideas
安装命令:
npx skills add https://github.com/kenneth-liao/ai-launchpad-marketplace --skill generate-note-ideas
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/kenneth-liao/ai-launchpad-marketplace --skill generate-note-ideas

简介

generate-note-ideas 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前顶部介绍为空,原始 SKILL.md 摘录未提供。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Generate Substack Note Ideas

Overview

This orchestrator scans published content across YouTube and Substack, then delegates ideation to content-strategy:ideate with the ideation reference file. It handles source fetching, processed-log management, and output persistence -- all actual idea generation logic is delegated to the foundation skill.

This skill sits upstream of substack:create-note -- it produces a curated list of note ideas, while create-note writes the full note from a selected idea.

Core Principle: This is a thin orchestrator. Never generate ideas manually. Always delegate to content-strategy:ideate via references/substack-notes-ideation.md. This skill manages the source-scanning workflow, duplicate prevention, and output files only.

When to Use

Use this skill when:

  • Generating a batch of Substack Note ideas from published content
  • Finding new note topics between newsletter issues
  • Maintaining a consistent Notes posting cadence
  • Mining existing content for repurposable note angles

Prerequisites

Optional: YouTube MCP tools (search_videos, get_video_details, get_video_transcript, get_video_comments) for scanning the user's YouTube channel. If unavailable, the workflow falls back to web search.

Optional: An existing ./substack/notes/processed-log.md file. If it does not exist, the workflow creates it in Step 0.

Workflow

Execute all steps below in order.

Step 0: Load Processed Log and Content Bank

Read ./substack/notes/processed-log.md to determine which sources have already been scanned.

If file exists:

  • Parse the YouTube Videos table to get a list of already-processed video IDs
  • Parse the Newsletter Issues table to get a list of already-processed issue URLs
  • Parse the Substack Notes Scanned table for the last scan date

If file does not exist:

  • Create the ./substack/notes/ directory if it does not exist
  • Create the file with the empty template (see Output Structure below -- headers only, no data rows)

Read ./substack/notes/ideas.md (the content bank) if it exists:

  • Tally pending ideas per type to identify which types need new ideas
  • Tally high-converter vs high-engagement pending ideas to identify conversion gaps
  • Feed all existing ideas (any status) to Step 4 for duplicate prevention
  • Report the current bank inventory to the user: "Content bank has X pending ideas across Y types. Types needing ideas: [list]."

If content bank does not exist:

  • Create it with the empty template (see Output Structure below -- type headers only, no ideas)

Step 1: Fetch Published YouTube Content

Use YouTube MCP tools to find recent videos from the user's channel.

  1. Use search_videos to find the user's recent videos
  2. Compare video IDs against the processed log -- identify new/unprocessed videos
  3. For each new video:

- Use get_video_details for title, description, and stats - Use get_video_transcript for the full transcript - Use get_video_comments for top comments (source of audience questions and misconceptions)

  1. Collect all new video material for Step 4

If YouTube MCP tools are unavailable:

  • Fall back to web search for the user's YouTube channel
  • Gather what video titles, descriptions, and topics are available from search results

If no new videos are found:

  • Note this and continue -- Steps 2 and 3 may still produce source material

Step 2: Fetch Published Substack Content

Use web fetch to scan the user's Substack archive and Notes feed.

  1. Web fetch the user's Substack archive page (e.g., https://{subdomain}.substack.com/archive)
  2. Compare issue URLs against the processed log -- identify new/unprocessed issues
  3. For each new issue: web fetch the full issue content
  4. Web fetch the user's Substack Notes feed for gap analysis and posted-notes history
  5. Collect all new newsletter and notes material for Step 4

If no new issues are found:

  • Note this and continue -- the Notes feed, web trends, and YouTube content may still produce ideas

Step 3: Fetch Web Trends

Use web search to find trending topics in the user's niche.

  1. Search for trending topics, discussions, and recent developments relevant to the user's content area
  2. Identify timely angles that could inform note ideas
  3. Collect trend findings for Step 4

This step always runs regardless of whether new sources were found in Steps 1-2. Trending topics provide timely note ideas even when no new content has been published.

Step 4: Invoke content-strategy:ideate with Ideation Reference

MANDATORY: Invoke content-strategy:ideate with references/substack-notes-ideation.md to generate structured note ideas.

Provide all source material gathered in Steps 0-3:

  • New YouTube video transcripts, titles, descriptions, and top comments (from Step 1)
  • New newsletter issue content (from Step 2)
  • Past Substack Notes history (from Step 2, for gap analysis)
  • Web trend findings (from Step 3)
  • Previously generated ideas from ideas.md (from Step 0, for duplicate prevention)

The ideate skill applies the ideation framework and returns structured ideas with topic, note type, source, pitch, and strategic rationale.

NOTE: All ideation logic -- source-to-idea extraction, note-type matching, angle generation, duplicate filtering -- lives in the reference file. Do not implement any of this in the orchestrator.

Step 5: Present Ideas to User

Present the batch of ideas (5-10) in the structured format from the ideation reference.

Each idea includes:

  • Topic -- what the note is about
  • Type -- suggested note type (from the create-note type taxonomy)
  • Source -- which source content inspired this idea
  • Pitch -- one-line description of the note angle
  • Rationale -- why this idea is strategically sound

The user can:

  1. Approve the batch -- all ideas are saved
  2. Remove specific ideas -- selected ideas are dropped before saving
  3. Request more ideas -- return to Step 4 with additional guidance

CRITICAL: Do not save any output until the user approves. Present and wait.

Step 6: Save to Content Bank

After user approval, update two files:

1. File approved ideas into ./substack/notes/ideas.md by type:

  • For each approved idea, add it under the matching note type section
  • Use the content bank idea format (Topic, Status: pending, Source, Pitch, Rationale, Conversion, Added date)
  • Place new ideas at the bottom of each type section (newest last)

2. Update Quick Stats header:

  • Recalculate total pending/drafted/published counts
  • Update "Last ideation run" date
  • Recalculate "Types needing ideas" (types with 0 pending ideas)

3. Update ./substack/notes/processed-log.md:

  • Add a row for each new YouTube video scanned (video ID, title, scan date, ideas generated count)
  • Add a row for each new newsletter issue scanned (URL, title, scan date, ideas generated count)
  • Update the Substack Notes Scanned section with the latest scan date and gap analysis summary

Step 7: Handoff Suggestion

Inform the user they can pick any idea and invoke substack:create-note to write the full note.

Do NOT automatically invoke create-note. This skill generates ideas only -- the user decides when and which idea to execute.

Output Structure

Content Bank (./substack/notes/ideas.md)

The content bank organizes ideas by note type for easy retrieval during writing sessions. Ideas flow from ideation runs into type-organized sections with status tracking.

# Substack Notes Content Bank

## Quick Stats
- Total pending: 0 | Drafted: 0 | Published: 0
- Last ideation run: YYYY-MM-DD
- Types needing ideas: [list types with 0 pending ideas]

---

## Single-Punch Wisdom

## Income Proof Story

## Pattern Observation

## Contrarian Statement

## Problem → Solution

## Build-in-Public Update

## List-Based Tactical

## Vulnerable Personal Story

## Newsletter Teaser

## Direct Advice

Each idea within a type section uses this format:

### [Specific topic in 5-10 words]
**Status:** pending
**Source:** [YouTube — "Title" (video ID) | Newsletter — "Title" (URL) | Web trend — description]
**Pitch:** [One sentence describing the note's core message]
**Rationale:** [Why this idea is worth posting — engagement potential, gap it fills, timeliness]
**Conversion:** [High Converter | High Engagement | Both | Moderate]
**Added:** YYYY-MM-DD

Status values:

  • pending — idea generated but not yet written
  • drafted — note has been drafted via substack:create-note
  • published — note has been published to Substack

Processed Log (./substack/notes/processed-log.md)

# Processed Content Log

## YouTube Videos
| Video ID | Title | Scanned | Ideas Generated |
|----------|-------|---------|-----------------|

## Newsletter Issues
| URL | Title | Scanned | Ideas Generated |
|-----|-------|---------|-----------------|

## Substack Notes Scanned
| Last Scan Date | Notes Reviewed | Gap Analysis |
|----------------|----------------|--------------|

Quality Checklist

Verify completion before finalizing:

  • Processed log loaded or created (Step 0)
  • Content bank loaded and inventory reported (Step 0)
  • YouTube videos scanned via MCP tools or web search fallback (Step 1)
  • Substack newsletter issues scanned via web fetch (Step 2)
  • Web trends gathered (Step 3)
  • content-strategy:ideate invoked with references/substack-notes-ideation.md (Step 4)
  • Ideas presented to user for approval (Step 5)
  • Approved ideas filed by type in content bank ./substack/notes/ideas.md (Step 6)
  • Quick Stats updated in content bank (Step 6)
  • Processed log updated with newly scanned sources (Step 6)
  • Handoff to substack:create-note suggested (Step 7)

Common Pitfalls to Avoid

  1. Generating ideas manually: All ideation logic lives in the ideate reference file. Delegate to content-strategy:ideate -- do not implement idea generation in this orchestrator.
  2. Re-scanning processed sources: Always check the processed log first. Skip sources already scanned.
  3. Ignoring the notes history: Past notes feed gap analysis. Always load them in Step 2.
  4. Skipping web trends: Trending topics provide timely ideas even when no new content exists. Step 3 always runs.
  5. Auto-invoking create-note: This skill generates ideas only. The user decides when to write.
  6. Saving before user approval: Always present ideas and get explicit approval before writing to files.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.55%
按下载量换算34

Claude

27.56%
按下载量换算26

Cursor

18.01%
按下载量换算17

Gemini CLI

8.97%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills