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.
What this skill does
# 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 in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.