From work-memo
Records work information with multi-dimensional tracking. Use when user wants to record work events, tasks, or activities without executing them. Supports webpage content summarization and URL recording.
npx claudepluginhub within-7/minto-plugin-tools --plugin work-memo# Memo Command This command records work information using the work-memo skill's capabilities. It's designed for information recording only - no task execution. ## Usage Run this command with your work information: Or provide a URL to fetch and summarize webpage content: ## Process 1. **Parse the input** to extract work details from natural language or URL 2. **Identify dimensions** (type, urgency, importance, tags, contexts, dates) 3. **For URLs**: Fetch webpage content, extract and summarize 4. **Record the information** using the work-memo storage system 5. **Return confirmation*...
/memoWrite analytical memos to capture emerging insights during manual coding
This command records work information using the work-memo skill's capabilities. It's designed for information recording only - no task execution.
Run this command with your work information:
/memo 填写的信息
Or provide a URL to fetch and summarize webpage content:
/memo https://example.com/article
When this command is triggered:
Parse the user's input to extract:
Use the work-memo skill's memo_command.py script to record the information
Return a confirmation with:
/memo 紧急会议今天 #work @office → Records an urgent meeting for today/memo 完成项目报告 → Records a task to complete a project report/memo 修复登录bug #urgent → Records an urgent bug fix task/memo 团队例会 #meeting → Records a team meeting/memo 重要电话明天 @phone → Records an important phone call for tomorrow/memo https://example.com/article → Fetches webpage, summarizes content, and records URL/memo https://docs.python.org/tutorial → Records Python tutorial webpage with summary/memo https://github.com/project/readme #project → Records GitHub README with project tagThe command automatically detects:
When a URL is provided:
{
"status": "recorded",
"title": "紧急会议",
"type": "meeting",
"urgency": 4,
"importance": 3,
"eisenhower_quadrant": "Q1",
"tags": ["work"],
"contexts": ["office"],
"date": "2026-01-20"
}
{
"status": "success",
"id": "123",
"title": "Article Title",
"url": "https://example.com/article",
"summary": "Content summary...",
"type": "research",
"urgency": 3,
"importance": 3,
"tags": ["web", "reading"],
"contexts": ["https://example.com/article"],
"eisenhower": "Q2",
"created_at": "2026-01-20T10:00:00"
}