一键导入
lat
Toggle LLMAnnotationTerminal — browser viewer for Claude Code output with structured annotations. Use /lat or /lat on to enable, /lat off to disable.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Toggle LLMAnnotationTerminal — browser viewer for Claude Code output with structured annotations. Use /lat or /lat on to enable, /lat off to disable.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Build Obsidian knowledge vaults from structured research data. Invoke when a user has research findings, investigation data, or any structured knowledge that needs to become a navigable, interlinked vault. Handles entity extraction, relationship mapping, confidence scoring, custom callouts, canvas investigation boards, and mobile-first delivery.
Send messages to your human operator's phone via Linq (iMessage, RCS, SMS). Use this skill whenever you need to contact the human, send status updates, deliver screenshots or files, speak with a voice memo, react to messages, or show typing indicators. Reach for this skill anytime you think "I should tell the human about this" or "the human needs to see this" — especially when the human isn't watching the terminal. Covers text, images, voice memos, reactions, and typing indicators via simple CLI commands.
Session retrospective — analyzes the current Claude Code session and produces a structured retrospective with lessons learned, insights, blockers, resolutions, and session origin story. Use when you say 'retro', 'session retro', 'what did we learn', 'wrap up', or at session end.
Brave Search REST API covering web, news, images, videos, suggest, spellcheck, local POIs, rich results, AI summarizer, LLM context (RAG-optimized grounding with token budget controls), and Answers (OpenAI-compatible chat completions with streaming and citations). Triggers on any request for live web data, current events, recent news, image search, video search, or building search-augmented agent workflows. Requires BRAVE_SEARCH_API_KEY.
Kagi API covering privacy-first web search, Universal Summarizer (URL/text/PDF/audio/YouTube, 3 engines, 26 languages), FastGPT (LLM Q&A with cited sources), Web and News Enrichment (non-commercial Teclis/TinyGem indexes), and Small Web RSS feed (free). Triggers on any request for web search, document summarization, AI-answered questions, small-web content, or enrichment of search results. Requires KAGI_API_KEY.
Ride a running Chromium browser via Chrome DevTools Protocol. Access authenticated sessions (Gmail, Slack, etc.) without re-logging in. Works with Brave, Chrome, Edge, Arc — any Chromium browser. CLI interface, no MCP needed.
基于 SOC 职业分类
| name | lat |
| description | Toggle LLMAnnotationTerminal — browser viewer for Claude Code output with structured annotations. Use /lat or /lat on to enable, /lat off to disable. |
Toggle the LAT browser sidecar for viewing and annotating Claude Code responses.
/lat or /lat on — Enable LAT. Starts daemon if needed, opens browser./lat off — Disable LAT. Daemon stays running but annotations stop injecting./lat status — Show current state.When active, responses are rendered in a browser with:
Execute these commands:
mkdir -p ~/.lat
echo "on" > ~/.lat/active
Then check if the daemon is running:
curl -sf http://127.0.0.1:4747/health > /dev/null 2>&1
If the daemon is NOT running, start it (find the plugin root — it's the directory containing this SKILL.md's parent skills/ dir):
nohup bun run <PLUGIN_ROOT>/daemon/index.ts > /dev/null 2>&1 &
sleep 1
Then open the browser:
open http://127.0.0.1:4747
Confirm to the user: "LAT enabled. Browser opened at http://127.0.0.1:4747"
mkdir -p ~/.lat
echo "off" > ~/.lat/active
Confirm: "LAT disabled. Annotations will not inject on next prompt. Daemon stays running."
Check state:
STATE=$(cat ~/.lat/active 2>/dev/null || echo "off")
HEALTH=$(curl -sf http://127.0.0.1:4747/health 2>/dev/null && echo "running" || echo "not running")
Report: "LAT is $STATE. Daemon is $HEALTH."