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-memoThis skill is limited to using the following tools:
This skill provides intelligent work information recording with multi-dimensional tracking capabilities.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
This skill provides intelligent work information recording with multi-dimensional tracking capabilities.
Record work-related information (tasks, meetings, calls, etc.) with automatic categorization, prioritization, and organization. This is a record-only system - it does not execute tasks.
Use this skill when:
Automatic quadrant assignment:
Parse Input: Extract work details from natural language
Execute Recording: Use skills/scripts/memo_command.py
python3 skills/scripts/memo_command.py "<work description>"
Return Confirmation: Include:
date URL**: Check format (http:// or https://)
Fetch Content: Use web fetching capabilities to retrieve webpage
Summarize: Extract title and create summary
Record: Store with:
Return Confirmation: Include URL and summary ples
Input: 紧急会议今天 #work @office
Output: {
"status": "recorded",
"title": "紧急会议",
"type": "meeting",
"urgency": 4,
"importance": 3,
"eisenhower_quadrant": "Q1",
"tags": ["work"],
"contexts": ["office"],
"date": "2026-02-05"
}
Input: https://example.com/article
Output: {
"status": "success",
"title": "Article Title",
"url": "https://example.com/article",
"summary": "Content summary...",
"type": "research",
"tags": ["web", "reading"],
"eisenhower": "Q2"
}
#tagname@contextAlways return a JSON-formatted confirmation with:
status: "recorded" or "success"title: Work item titletype: Work typeurgency: 1-5 scaleimportance: 1-5 scaleeisenhower_quadrant or eisenhower: Q1-Q4tags: Array of tagscontexts: Array of contextsdate or created_at: Date timestampRecords are stored as Markdown files with YAML frontmatter:
~/work-memo/records/YYYY-MM/DD/[id]_[title].mdExample file:
~/work-memo/records/2026-02/05/a1b2c3d4_urgent_meeting.md
/memo command uses this skill automaticallyskills/scripts/memo_command.pyskills/scripts/query_parser.pyskills/scripts/web_scraskills/scripts/reporting.pyskills/scripts/schema.py