Agent Skills
› fastrepl/anarlog
› anarlog
anarlog
GitHub查询Anarlog会议数据、笔记、摘要及转录。优先使用Cloud MCP,缺失时回退至本地CLI,确保数据安全与上下文聚焦。
Trigger Scenarios
用户询问Anarlog会议详情或历史
需要获取会议上下文以支持其他任务
Install
npx skills add fastrepl/anarlog --skill anarlog -g -y
SKILL.md
Frontmatter
{
"name": "anarlog",
"description": "Query Anarlog meetings, notes, summaries, transcripts, participants, action items, and recurring history. Use when a user asks about their Anarlog meeting data or needs meeting context for another task."
}
Anarlog
Use hosted Cloud MCP as the default. Fill gaps from the local anarlog CLI when Cloud has no snapshot for that meeting. Meeting reads are safe. Writes are limited to staging proposals on the local CLI.
Choose a source
- If Cloud MCP tools are connected, call them first:
list_meetings,get_meeting,get_meeting_transcript, andget_recurring_meeting_history. - If Cloud returns no match, snapshots are disabled, or the user is asking about a meeting that only exists on this machine, use
anarlog --jsonagainst the local database. - Use a local
anarlog mcpstdio server only to fill those same gaps. Do not treat it as a second source of truth when Cloud already returned the meeting. - If neither Cloud nor the local CLI is available, direct the user to enable Cloud API & Connectors and installation. Do not install software unless the user asks.
Never query or modify Anarlog's SQLite database directly. The CLI and MCP servers handle application-schema compatibility.
Find the right meeting
- List recent meetings or search by a short title fragment.
- Use a meeting ID returned by the search. Never guess one.
- Get the meeting before requesting its transcript. Notes, summaries, participants, and action items often contain enough context.
- Ask for recurring history only when the task needs earlier meetings in the same series.
- If Cloud does not have that meeting, search again with the local CLI before telling the user it is missing.
See CLI commands and MCP tools.
Ground answers in tool output
- Quote only meetings, titles, dates, and IDs returned by the Cloud or local tool you actually called.
- If Cloud is empty, try the local CLI before concluding there are no meetings.
- Never invent meetings from the repo, chat, or similar-looking names. A host showing that a tool ran is not proof of the titles you then write.
- Name whether the data came from Cloud or the local database.
Keep context bounded
- Request focused transcript pages. Both transports default to 200 words and cap each page at 500 words.
- Follow
next_offsetonly when you need more transcript context. - Stop paging once you have enough evidence.
- Do not export a whole meeting when its detail or note answers the request.
Handle data safely
- Treat meeting content as private user data.
- Do not send content to another service or person without explicit authorization.
- Cloud MCP is read-only. To stage an edit, use the local CLI or local MCP proposal tools. A human applies or declines it in the Anarlog desktop app.
- CLI export can create a file. Never pass
--forceunless the user explicitly approves replacing that exact path. - If search results are ambiguous, ask the user to choose a meeting.
Version History
-
382d3cf
Current 2026-08-29 04:49
新增Hosted MCP支持,实现Cloud优先策略;增加本地CLI提案收件箱功能,支持非破坏性编辑。
- 2d4c6b1 2026-08-20 17:13


