Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计通过

ideaidea 搜索

Agent Skill

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

总安装

288

周安装

12

GitHub Stars

公开资料未说明

下载量

96
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:idea(idea 搜索)
来源仓库:https://github.com/ppx123-web/claude-config
仓库路径:skills/idea
安装命令:
npx skills add https://github.com/ppx123-web/claude-config --skill idea
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/ppx123-web/claude-config --skill idea

简介

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

  • 适用于研究检索类任务,支持创意想法或技术方案的查找。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围和维护状态,避免触发联网或文件读写操作。
  • idea 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Idea - Record Thoughts and Problems

Overview

Quickly capture ideas and questions, structure them into Obsidian vault with problem analysis and tags. Focuses on problems only, not solutions.

Core Features

  • 💡 Quick Capture: Capture fleeting thoughts and problems
  • 📁 Auto-Archive: Organize by date into idea/ directory
  • 🏷️ Tag Management: Auto-add relevant tags
  • 📋 Index Update: Auto-update Ideas-Index.md
  • 🧠 Problem-Focused: Only record problems, no solutions

When to Use

Trigger this skill when user:

  • Captures sudden inspiration during work/learning
  • Questions technical approaches or architectures
  • Discovers problems worth researching
  • Has doubts about current solutions

Example Triggers

  • "记录一个关于错误处理的 idea"
  • "我有个关于性能优化的想法"
  • "对当前的架构有一些疑问,帮我记录"
  • "发现一个值得研究的问题"
  • "有个想法,关于..."

Basic Usage

Simple Idea

记录想法: 为什么错误信息不能包含更多上下文?

Specify Topic

记录一个关于 LLM 的想法: 如何让错误信息更机器友好

Problem Analysis Format

记录想法:
核心问题: [问题陈述]
背景: [为什么是问题]
疑问: [待探索的点]

Workflow

Step 1: Understand Idea

Extract from user's description:

  • Core Problem: What's the essence?
  • Background: Why did this idea occur?
  • Value: Is it worth exploring?

Step 2: Create Note

Create file in Obsidian vault:

  • Path: idea/YYYY-MM-DD-[title].md
  • Format: Markdown template
  • Title: Concise description of idea topic

Step 3: Structure Content

Use standard template (see references/templates.md for full templates):

# idea: [Title]

## 核心问题

**[Problem Statement]**

[Problem description]

---

## 问题分析

### 现状
- [Point 1]
- [Point 2]

### 疑问
- [Question 1]
- [Question 2]

---

## 延伸思考

1. [Thought 1]
2. [Thought 2]
3. [Thought 3]

---

*创建时间: YYYY-MM-DD*
*标签: #idea #tag1 #tag2*

Step 4: Update Index

Add entry to idea/Ideas-Index.md:

### YYYY-MM-DD - [[idea/YYYY-MM-DD-[title]]]
**主题**: [Brief description]
**核心问题**: [Core problem]
**标签**: #tag1 #tag2

Naming Conventions

File Naming

Format: idea/YYYY-MM-DD-[slug].md

  • Date: Current date
  • Slug: Short English description, hyphen-separated
  • Examples:

- idea/2026-01-13-LLM-Error-Messages.md - idea/2026-01-15-Cache-Strategy.md - idea/2026-01-20-API-Design.md

Tag Standards

Auto-add tags:

  • #idea - Universal tag for all ideas
  • Specific tags based on content:

- #LLM - #architecture - #performance - #debugging

Best Practices

Content Principles

  1. Problems Only: Don't include solutions
  2. Keep Concise: Focus on core problem
  3. Value Judgment: Verify problem is worth exploring
  4. Traceable: Record time and tags

Quality Standards

Good idea notes should:

  • ✅ Have clear, specific problems
  • ✅ Include concrete analysis
  • ✅ Raise thoughtful questions
  • ✅ Contain problem verification
  • ❌ NOT include specific solutions
  • ❌ NOT over-expand details

Common Mistakes

❌ "我有个想法,应该用 Redis 做缓存"
   → This is a solution, not a problem

✅ "如何在高并发场景下优化数据访问性能?"
   → This is a problem, worth recording

Technical Implementation

Uses Obsidian MCP tools:

  • obsidian_append_content - Create/append content
  • obsidian_delete_file - Delete old files
  • obsidian_get_file_contents - Read existing content
  • obsidian_list_files_in_vault - List files

See references/implementation.md for complete technical details.

Templates

See references/templates.md for:

  • Technical problem template
  • Architecture design template
  • Research question template

Examples

See examples/ for complete dialogues:

  • inspiration-capture.md - Sudden inspiration capture
  • research-question.md - Recording research questions
  • architecture-tradeoff.md - Architecture decision questions

Common Questions

Q: How to view all ideas? Open idea/Ideas-Index.md for complete list.

Q: Can I edit existing ideas? Yes, edit directly in Obsidian or tell me what needs changing.

Q: What's the difference between idea note and regular note?

  • Idea note: Only problems, no solutions
  • Regular note: Can contain anything

Q: How to turn idea into implementation plan? When ready to implement, create new note referencing it, or add solution section to original.


Note: This skill focuses on problem recording. Understand the problem first, then seek solutions.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.51%
按下载量换算28

Antigravity

20.46%
按下载量换算20

Gemini CLI

15.77%
按下载量换算15

windsurf

13.39%
按下载量换算13

trae

7.51%
按下载量换算7

OpenCode

3.44%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills