| Crates.io | ideastorer |
| lib.rs | ideastorer |
| version | 0.1.0 |
| created_at | 2026-01-20 16:13:10.023383+00 |
| updated_at | 2026-01-20 16:13:10.023383+00 |
| description | A lightning-fast CLI for capturing development ideas that AI agents can understand |
| homepage | |
| repository | https://github.com/byigitt/ideastorer |
| max_upload_size | |
| id | 2056931 |
| size | 142,285 |
Lightning-fast CLI for capturing development ideas that AI coding agents can understand.
is "my idea" - that's it.ideas.json that AI agents can readmacOS/Linux:
curl -fsSL https://github.com/byigitt/ideastorer/releases/latest/download/is-installer.sh | sh
Windows (PowerShell):
irm https://github.com/byigitt/ideastorer/releases/latest/download/is-installer.ps1 | iex
macOS/Linux:
curl -fsSL https://raw.githubusercontent.com/byigitt/ideastorer/main/scripts/is-installer.sh | sh
Windows (PowerShell):
irm https://raw.githubusercontent.com/byigitt/ideastorer/main/scripts/is-installer.ps1 | iex
cargo install ideastorer
# Add your first idea
is "implement user authentication"
# Add with tags and priority
is add "fix mobile nav" -t bug,urgent -p high
# View your ideas
is list
# Search ideas
is search "auth"
# Mark as done
is done abc123 # Use idea ID (partial works)
# Export for backup
is export -o backup.json
| Command | Description |
|---|---|
is "idea" |
Quick add an idea |
is add "idea" [-t tags] [-p priority] |
Add with options |
is list [-n N] [-t tag] [--status] |
List ideas |
is search "query" [-t tag] |
Search ideas |
is done <id> |
Mark completed |
is delete <id> [--force] |
Remove idea |
is export [--format json|markdown] [-o file] |
Export ideas |
is init |
Initialize .ideas.json |
is completions <shell> |
Generate completions |
-g, --global: Use global storage instead of project-local--json: Output as JSON for scripting-p, --priority: Set priority (low, medium, high)-t, --tag: Add tags (comma-separated)Install the skill for your AI coding agent:
npx add-skill byigitt/ideastorer
This enables your AI assistant to:
Supports: Claude Code, Cursor, OpenCode, Codex, Copilot, and 14+ more agents.
Ideas are stored in .ideas.json:
--global):
~/.config/ideastorer/ideas.json%APPDATA%\ideastorer\ideas.json{
"version": "1.0.0",
"ideas": [
{
"id": "abc12345",
"content": "implement caching",
"tags": ["performance"],
"priority": "high",
"status": "active",
"created_at": "2024-01-15T10:30:00Z",
"context": {
"project": "myapp",
"git_branch": "main"
}
}
]
}
# Bash
is completions bash >> ~/.bashrc
# Zsh
is completions zsh >> ~/.zshrc
# Fish
is completions fish > ~/.config/fish/completions/is.fish
# PowerShell
is completions power-shell >> $PROFILE
Ever had a great idea while deep in code? Instead of:
Just type is "my idea" and keep coding. Your AI assistant can find it later.
# Clone
git clone https://github.com/byigitt/ideastorer
cd ideastorer
# Build
cargo build --release
# Test
cargo test
# Install locally
cargo install --path .
MIT - See LICENSE for details.
Contributions welcome! Please read CONTRIBUTING.md first.