Add .gitignore to exclude all node packages and lock files

This commit is contained in:
Adolfo Reyna
2026-02-23 21:56:04 -05:00
parent faae96c9ed
commit dcc5c6c044
9747 changed files with 1555105 additions and 2 deletions

View File

@@ -0,0 +1,51 @@
# 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.