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.
Records work tasks and meetings with automatic prioritization, tagging, and URL content summarization.
npx claudepluginhub within-7/minto-plugin-toolsThis skill is limited to using the following tools:
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.pyExpert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.