Skip to main content
ClaudeWave
Skill262 estrellas del repoactualizado 3d ago

bookmark

The bookmark skill manages a personal collection of saved URLs stored in a workspace JSON file, supporting operations to save links with optional titles and tags, list stored bookmarks, search by tag or keyword, and delete entries. Use it when users explicitly want to save a URL for later, retrieve a previously saved link, or organize their bookmark collection, but not for simply fetching or reading webpage content.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/sepivip/SeekerClaw /tmp/bookmark && cp -r /tmp/bookmark/app/src/main/assets/default-skills/bookmark ~/.claude/skills/bookmark
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# Bookmark

## Use when
- Save this link, bookmark this
- Find a previously saved link
- Organize or tag saved URLs

## Don't use when
- Just read a webpage (use web_fetch)
- Research a topic (use research)
- Summarize a URL (use summarize)

## Instructions
Link management using workspace/bookmarks.json file.

**Saving a bookmark:**
1. Extract URL from message
2. Optionally fetch title using web_fetch
3. Add to bookmarks.json:
   { "url": "...", "title": "...", "tags": [], "saved": ISO date }
4. Confirm: "🔖 Saved: [title]"

**Listing bookmarks:**
1. Read bookmarks.json
2. Format as:
   🔖 **Title**
   url.com/...
   Tags: #tag1 #tag2

**Finding bookmarks:**
1. Search by tag: "bookmarks tagged #tech"
2. Search by text: "find bookmark about React"
3. Return matching entries

**Deleting bookmarks:**
1. Find by URL or title
2. Remove from array
3. Save updated file

Use read/write tools on "bookmarks.json" for storage.
briefingSkill

Provide a personalized daily briefing with news, weather, and reminders. Use when: user asks for a briefing, morning update, daily summary, or 'what's new today'. Don't use when: user asks about a single specific topic like just weather or just news (use those skills instead).

burner-walletSkill

Operate the burner wallet — a small, app-managed Solana wallet that signs autonomously within caps. Use when: user asks about the burner, autonomous payments, x402, raising/lowering caps, funding the burner, or wiping/rotating it. Don't use when: user wants a regular MWA-popup transfer (just call solana_send / solana_swap and let routing decide).

calclawSkill

Track calories, protein, and macros from food photos or text. Log meals, view daily/weekly nutrition dashboards, set calorie goals, track weight, and get AI-powered portion estimates. Use when user mentions food, meals, calories, protein, macros, diet, nutrition, weight tracking, or sends food photos. Don't use when: user asks about restaurant recommendations, cooking recipes, or food delivery.

calculatorSkill

Perform calculations, unit conversions, and math operations. Use when: user asks to calculate, convert units, do math, percentages, tip calculations, or date arithmetic. Don't use when: user asks about crypto prices (use crypto-prices skill) or nutrition math (use calclaw skill).

crypto-pricesSkill

Get real-time cryptocurrency prices and market data from CoinGecko (free, no API key). Use when: user asks about crypto prices, token values, market data, 'what's BTC at?'. Don't use when: user wants to swap/trade tokens (use wallet tools), or wants crypto news (use news skill).

defineSkill

Look up definitions, word meanings, and etymology. Use when: user asks 'what does X mean', 'define X', word origins, etymology. Don't use when: user wants to translate between languages (use translate skill) or wants in-depth research on a concept (use research skill).

githubSkill

Search repositories, view issues, check PRs on GitHub. Use when: user asks about GitHub repos, issues, PRs, or wants to search GitHub. Don't use when: user wants general web search (use research skill) or asks about git concepts without GitHub context.

jokeSkill

Tell jokes and make the user laugh. Use when: user asks for a joke, wants humor, says 'make me laugh', or mood is light. Don't use when: user is asking a serious question, or wants comedy recommendations (use movie-tv skill).