skills/mymind-cli/SKILL.md
Use the local mymind CLI to initialize auth, refresh bookmark cache from access.mymind.com/cards, search bookmarks by text or regex, query tags, and shape JSON output with jq. Trigger when a user mentions "mymind", asks to find bookmarks, list tag counts, troubleshoot mymind CLI fetch errors (including CloudFront 403), or operate local cache/config files in ~/.mymind.
npx skillsauth add artivilla/agents-config mymindInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill to run and troubleshoot the local mymind binary.
mymind from PATH.go build -o /opt/homebrew/bin/mymind ./cmd/mymindwhich mymind
mymind -hmymind init interactively, or:
mymind init --cookie '<full Cookie header>' --token '<x-authenticity-token>'Cookie header from browser Network tab, not document.cookie.~/.mymind/config.json.mymind update to fetch /cards and rewrite cache.~/.mymind/bookmarks.json.~/.mymind/version.json.mymind search articlesmymind search '/(?i)(shadcn|component)/'mymind tags componentsmymind list tagsmymind search articles | jq '.[] | {title}'mymind search articles | jq '.[] | {title, source_url: .source.url}'mymind list tags | jq -r '.[0:10][] | "\(.tag) \(.count)"'mymind init --cookie ... --token ....mymind update before search commands.mymind search and mymind tags return JSON arrays of matching cards.mymind list tags returns JSON array objects: {"tag":"...","count":N}.mymind version returns JSON with cli_version and last_cache_fetch.development
Review UI code against Vercel's Web Interface Guidelines. Use when checking interactions, animation, layout, content, accessibility, performance, and design standards with MUST/SHOULD/NEVER rules.
development
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".
development
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
development
React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.