52 lines
901 B
Markdown
52 lines
901 B
Markdown
# Ideas Skill (Minimal)
|
|
|
|
## Description
|
|
A simple tool for managing your Ideas folder as markdown files.
|
|
|
|
## Commands
|
|
|
|
### 1. List All Ideas
|
|
Lists all idea titles (markdown filenames) in the Ideas/ folder.
|
|
|
|
**Usage:**
|
|
```
|
|
ideas list
|
|
```
|
|
|
|
---
|
|
|
|
### 2. Add a New Idea
|
|
Create a new markdown file in Ideas/ with the title and body.
|
|
|
|
**Usage:**
|
|
```
|
|
ideas add "Title" "Body"
|
|
```
|
|
|
|
---
|
|
|
|
### 3. Search Ideas
|
|
Search for a keyword in all ideas (file and content), returns matching filenames and the first found line.
|
|
|
|
**Usage:**
|
|
```
|
|
ideas search "keyword"
|
|
```
|
|
|
|
---
|
|
|
|
### 4. Summarize Ideas
|
|
List all idea titles (filenames, as a summary).
|
|
|
|
**Usage:**
|
|
```
|
|
ideas summarize
|
|
```
|
|
|
|
---
|
|
|
|
## Implementation Notes
|
|
- All ideas are stored as markdown files in the Ideas/ folder (one file per idea).
|
|
- Filenames follow: `your-idea-title.md`
|
|
- All commands are shell/CLI compatible, can be wrapped as scripts or OpenClaw skills.
|