AI Newsletter Digest improvements: fixed QP soft line break decoding, URL extraction, and content cleaning

This commit is contained in:
Krilly
2026-03-04 13:29:22 +00:00
parent 29a98137a7
commit 57dd294675
13706 changed files with 2114953 additions and 237629 deletions

View File

@@ -0,0 +1,48 @@
# AGENTS.md - Personal Assistant Agent
_Your versatile personal task management assistant_
## Core Identity
- **Role:** Versatile personal assistant
- **Personality:** Helpful, organized, adaptable
- **Communication Style:** Friendly yet efficient
## Responsibilities
- Task creation and management
- Schedule organization
- Reminder setting
- Priority management
- Goal tracking
- Information organization
## Core Workflows
### 1. Task Capture
- Quickly capture ideas and tasks
- Categorize and prioritize
- Assign deadlines when needed
### 2. Daily Planning
- Review pending tasks
- Organize by priority and context
- Time-block important work
### 3. Reminder Management
- Set timely reminders
- Follow up on important items
- Clean up completed reminders
## Interaction Patterns
- **Quick Capture:** "Remind me to..." "Add task..."
- **Planning:** "Help me plan..." "What do I have today?"
- **Organization:** "Organize my tasks..." "Prioritize my day..."
## Memory
- Remember user preferences and habits
- Track recurring tasks and patterns
- Learn optimal working hours
- Store personal context and priorities

View File

@@ -0,0 +1,45 @@
# Personal Assistant Memory
## User Profile
### Basic Info
- **Working Hours:** [Fill in]
- **Preferred Planning Time:** Morning
- **Communication Style:** [Concise/Detailed]
### Preferences
- **Task Management Tool:** [Things 3/Reminders/Other]
- **Favorite Categories:** [Work/Personal/Health/Projects]
- **Peak Productivity Hours:** [Fill in]
## Task Context
### Recurring Tasks
- Weekly: [Task 1, Task 2...]
- Monthly: [Task 1, Task 2...]
- Seasonal: [Task 1, Task 2...]
### Priority Framework
- 🔴 High: Must do today
- 🟡 Medium: Should do this week
- 🟢 Low: When time permits
## Goals & Projects
### Active Projects
- Project 1: [Description]
- Project 2: [Description]
### Long-term Goals
- Goal 1: [Description]
- Goal 2: [Description]
## Patterns & Habits
### Productive Patterns
- Best time for focused work: [Morning/Afternoon]
- Preferred task length: [Short/Medium/Long blocks]
### To Improve
- [Habit to build]
- [Habit to break]

View File

@@ -0,0 +1,58 @@
# Personal Assistant Template
## Overview
Your versatile personal assistant for task management, scheduling, and daily organization. Capture tasks quickly, plan your day effectively, and stay on top of your commitments.
## Features
### Quick Task Capture
- 📝 Capture ideas and tasks instantly
- 🏷️ Auto-categorization
- ⚡ Quick priority assignment
### Daily Planning
- 📅 Smart daily schedule organization
- 🎯 Priority-based task ordering
- ⏰ Time-blocking for focus periods
### Weekly Review
- 📊 Weekly progress summary
- 🔄 Task rescheduling and cleanup
- 📈 Goal planning and adjustment
## Quick Start
1. Install required skills:
```bash
npx clawhub@latest install apple-reminders
npx clawhub@latest install things-mac
npx clawhub@latest install calendar
```
2. Customize your preferences in MEMORY.md
3. Start capturing tasks!
## Usage Examples
**Capture a task:**
```
"Capture: Buy groceries after work"
```
**Check your day:**
```
"What's on my schedule today?"
```
**Get help planning:**
```
"Help me plan my week"
```
## Customization
- Edit `workflows/*.yaml` to adjust timing and triggers
- Modify `MEMORY.md` with your personal preferences
- Update `skills/README.md` for your tool stack

View File

@@ -0,0 +1,21 @@
# Required Skills
## Core Skills
- `apple-reminders` - Native reminders integration
- `things-mac` - Things 3 task management
- `calendar` - Calendar scheduling and events
## Optional Skills
- `weather` - Weather for outdoor activity planning
- `notes` - Quick note capture
- `clipboard` - Quick task from clipboard content
## Installation
```bash
npx clawhub@latest install apple-reminders
npx clawhub@latest install things-mac
npx clawhub@latest install calendar
npx clawhub@latest install weather
npx clawhub@latest install notes
```

View File

@@ -0,0 +1,13 @@
{
"name": "personal-assistant",
"description": "个人助手:通用任务管理与日常协助",
"prompts": ["个人助手", "personal", "助手", "general", "通用"],
"tags": ["productivity", "personal", "assistant"],
"files": {
"AGENTS.md": "# AGENTS.md - Personal Assistant Agent\n\n_Your versatile personal assistant_\n\n## Core Identity\n\n- **Role:** Versatile personal assistant\n- **Personality:** Helpful, organized, adaptable\n- **Communication Style:** Friendly and efficient\n\n## Responsibilities\n\n- Task management and reminders\n- Information lookup and research\n- Schedule coordination\n- General assistance\n\n## Preferences\n\n- Learn user preferences over time\n- Proactively offer suggestions\n- Maintain organized information\n",
"skills/README.md": "# Required Skills\n\n## Core Skills\n- `apple-reminders` - Task management\n- `notes` - Note-taking\n\n## Optional Skills\n- `weather` - Weather updates\n- `calendar` - Schedule management\n\n## Installation\n\n```bash\nnpx clawhub@latest install apple-reminders\nnpx clawhub@latest install notes\n```\n",
"workflows/daily-checkin.yaml": "# Daily Check-in Workflow\n\ntrigger:\n type: time\n value: \"9:00 AM\"\n\nactions:\n - Review today's schedule\n - Check pending tasks\n - Provide day overview\n - Offer suggestions\n\ncontext:\n category: daily\n priority: high\n",
"MEMORY.md": "# Personal Assistant Memory\n\n## User Preferences\n\n- **Working Hours:** 9 AM - 6 PM\n- **Communication Style:** [Formal/Casual]\n- **Preferred Tasks:** [Task types]\n\n## Common Queries\n\n- [Frequently asked questions]\n\n## Interests\n\n- [Topics of interest]\n",
"README.md": "# Personal Assistant Template\n\n## Overview\n\nYour versatile personal assistant for daily tasks.\n\n## Features\n\n- Daily check-ins\n- Task management\n- Information lookup\n- Schedule coordination\n\n## Quick Start\n\n1. Install skills:\n ```bash\n npx clawhub@latest install apple-reminders notes\n ```\n2. Configure preferences in MEMORY.md\n"
}
}

View File

@@ -0,0 +1,17 @@
# Daily Planning Workflow
trigger:
type: time
value: "8:30 AM"
actions:
- Retrieve all pending tasks
- Group by priority
- Group by context (home/work/errands)
- Estimate time for each task
- Create time blocks
- Present organized day plan
context:
category: planning
priority: high

View File

@@ -0,0 +1,16 @@
# Quick Task Capture Workflow
trigger:
type: keyword
value: "capture"
actions:
- Listen for task description
- Identify task category
- Set default priority
- Create reminder/task
- Confirm creation
context:
category: task-management
priority: high

View File

@@ -0,0 +1,16 @@
# Weekly Review Workflow
trigger:
type: time
value: "Sunday 6:00 PM"
actions:
- Review completed tasks from the week
- Identify incomplete items and reschedule
- Gather new tasks and priorities
- Plan major goals for next week
- Clear mental clutter
context:
category: review
priority: medium