Install
openclaw skills install research-logger-toolResearch a topic via web search, auto-match a relevant GIF, and log results as a Bear note using a configurable template.
openclaw skills install research-logger-toolAutomates the research-logging workflow:
web_search / web_fetch to gather content on a topic.gifgrep to find a relevant GIF for visual context.notes/research_template.md template and writes a Bear note via grizzly.bash scripts/research_logger.sh "quantum computing" "research,quantum"
scripts/research_logger.sh| Argument | Required | Description |
|---|---|---|
$1 — topic | ✅ | Research topic (quoted) |
$2 — tags | ❌ | Comma-separated Bear tags (default: research) |
web_search for the topic, fetches top results.gifgrep for a matching GIF.notes/research_template.md, substitutes placeholders with gathered data.The template lives at notes/research_template.md (workspace root) and uses {placeholder} syntax:
| Placeholder | Source |
|---|---|
{topic} | CLI argument |
{date} | Current date (YYYY-MM-DD) |
{tags} | CLI argument |
{summary} | LLM-generated summary of search results |
{finding1} … {finding3} | Top 3 key findings |
{links} | Source URLs from search |
{media_alt} / {media_url} | GIF from gifgrep |
{action1} … {action3} | Suggested action items |
go install github.com/tylerwince/grizzly/cmd/grizzly@latest)