bear

Interacts with Bear note-taking app on macOS via X-Callback-URL. Use when user asks to create Bear notes, search notes, add text to notes, manage tags, capture web pages to Bear, or perform any other Bear note management tasks. Supports note creation, text appending, tag management, note search, and web page capture.

16 stars

Best use case

bear is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Interacts with Bear note-taking app on macOS via X-Callback-URL. Use when user asks to create Bear notes, search notes, add text to notes, manage tags, capture web pages to Bear, or perform any other Bear note management tasks. Supports note creation, text appending, tag management, note search, and web page capture.

Teams using bear should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/bear/SKILL.md --create-dirs "https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/main/skills/fullstack-web/bear/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/bear/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How bear Compares

Feature / AgentbearStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Interacts with Bear note-taking app on macOS via X-Callback-URL. Use when user asks to create Bear notes, search notes, add text to notes, manage tags, capture web pages to Bear, or perform any other Bear note management tasks. Supports note creation, text appending, tag management, note search, and web page capture.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Bear Note Integration

Integrates Claude with the Bear note-taking app on macOS, enabling automated note creation, searching, editing, and tag management through X-Callback-URL.

## Quick Start

### Prerequisites

1. **Bear app installed** on macOS
2. **API Token** (optional, for search/tags features):
   - Help > Advanced > API Token > Copy Token
   - Set environment variable: `export BEAR_API_TOKEN="your-token"`
3. **xcall tool** (optional, for response handling):
   - Download from [xcall releases](https://github.com/martinfinke/xcall/releases)
   - Install to `/Applications/xcall.app`

### Basic Usage

Create a note:

```python
from scripts.bear import create_note

# Create note without response
create_note(title="My Note", text="Content here", tags="work,important")

# Get response with note ID (requires xcall)
result = create_note(title="My Note", text="Content", return_id=True)
print(result['identifier'])
```

Search notes:

```python
from scripts.bear import search_notes

# Requires xcall and token
results = search_notes(term="project-x", tag="work")
for note in results:
    print(f"{note['title']} - {note['identifier']}")
```

## Core Tasks

### 1. Create Notes

Create new notes in Bear with optional tags and timestamps.

```python
from scripts.bear import create_note

# Basic note creation
create_note(
    title="Daily Standup",
    text="## Progress\n- Task 1 complete\n- Task 2 in progress",
    tags="work,standup"
)

# With timestamp
create_note(
    title="Meeting Notes",
    text="Key discussion points...",
    tags="meetings",
    add_timestamp=True
)

# With response (returns note ID)
result = create_note(
    title="Important Note",
    text="Critical information",
    return_id=True
)
note_id = result['identifier']
```

### 2. Search Notes

Find notes by keywords with optional tag filtering.

```python
from scripts.bear import search_notes

# Keyword search
results = search_notes(term="Python")

# Tag filtering
results = search_notes(term="bug", tag="development")

# Process results
for note in results:
    print(f"Title: {note['title']}")
    print(f"ID: {note['identifier']}")
    print(f"Modified: {note['modificationDate']}")
```

### 3. Add Text to Notes

Append or replace text in existing notes.

```python
from scripts.bear import add_text

# Append text
add_text(
    note_id="7E4B681B",
    text="\n\n## Update\nNew content added",
    mode="append"
)

# Append to specific header
add_text(
    note_id="7E4B681B",
    text="- New item",
    mode="append",
    header="TODO"
)

# Replace all content
add_text(
    note_id="7E4B681B",
    text="New complete content",
    mode="replace_all"
)
```

### 4. Manage Tags

List, rename, and delete tags.

```python
from scripts.bear import get_tags, rename_tag, delete_tag

# List all tags
tags = get_tags()
for tag in tags:
    print(tag['name'])

# Rename tag
rename_tag(old_name="todo", new_name="inbox")

# Delete tag
delete_tag(name="archive")
```

### 5. Capture Web Pages

Save web page content as new Bear notes.

```python
from scripts.bear import grab_url

# Capture URL as note
result = grab_url(
    url="https://example.com/article",
    tags="reference,articles"
)

# With response
result = grab_url(
    url="https://docs.python.org",
    tags="docs",
    return_id=True
)
note_id = result['identifier']
```

## Bundled Resources

### scripts/

Python module `bear.py` provides functions for all Bear X-Callback-URL actions:

- `create_note()` - Create notes
- `search_notes()` - Search notes
- `add_text()` - Append/replace text
- `open_note()` - Open notes
- `get_tags()` - List all tags
- `rename_tag()` - Rename tags
- `delete_tag()` - Delete tags
- `grab_url()` - Capture web pages
- `trash_note()`, `archive_note()` - Organize notes

### references/

- **actions.md**: Complete X-Callback-URL API reference with all parameters
- **workflows.md**: Common workflows and integration patterns
- **troubleshooting.md**: Setup help and common issues

See these files for detailed API documentation and advanced usage patterns.

Related Skills

bear-notes

16
from diegosouzapw/awesome-omni-skill

Create, search, and manage Bear notes via grizzly CLI.

bannerbear-automation

16
from diegosouzapw/awesome-omni-skill

Automate Bannerbear tasks via Rube MCP (Composio). Always search tools first for current schemas.

bgo

16
from diegosouzapw/awesome-omni-skill

Automated Blender build-go workflow. Automatically builds, removes old version, installs, enables, and launches Blender with your extension/add-on. Use when you want to quickly test changes, execute complete build-to-launch cycle, or run custom packaging scripts with automatic Blender launch.

Coding & Development

codereadr-automation

16
from diegosouzapw/awesome-omni-skill

Automate Codereadr tasks via Rube MCP (Composio). Always search tools first for current schemas.

codeinterpreter-automation

16
from diegosouzapw/awesome-omni-skill

Automate Codeinterpreter tasks via Rube MCP (Composio). Always search tools first for current schemas.

code-generation

16
from diegosouzapw/awesome-omni-skill

Use when generating boilerplate code, __init__.py files, or test scaffolds. Provides scripts that generate consistent, convention-following code.

codacy-automation

16
from diegosouzapw/awesome-omni-skill

Automate Codacy tasks via Rube MCP (Composio). Always search tools first for current schemas.

coassemble-automation

16
from diegosouzapw/awesome-omni-skill

Automate Coassemble tasks via Rube MCP (Composio). Always search tools first for current schemas.

clipper

16
from diegosouzapw/awesome-omni-skill

Analyze video transcriptions to identify interesting segments for clipping. Finds highlights, key moments, and reactions with precise timestamps. Use when working with video transcriptions to extract clip-worthy moments. (project)

clink-standalone

16
from diegosouzapw/awesome-omni-skill

Standalone CLI bridge - launch external AI CLIs (gemini, codex, claude) directly without MCP server. Use when you need to delegate tasks to specialized CLI tools with their own context windows. Supports role-based prompts and file references.

client-management

16
from diegosouzapw/awesome-omni-skill

Manage client relationships using the local CRM — add contacts, track deals through the pipeline, schedule follow-ups, log interactions, and generate reports. All data stored locally in SQLite.

clickmeeting-automation

16
from diegosouzapw/awesome-omni-skill

Automate Clickmeeting tasks via Rube MCP (Composio). Always search tools first for current schemas.