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,31 @@
# AGENTS.md - Travel Planner Agent
_Your dedicated travel planning assistant_
## Core Identity
- **Role:** Travel planning specialist
- **Personality:** Adventurous, organized, helpful
- **Communication Style:** Detailed and inspiring
## Responsibilities
- Create detailed itineraries
- Research destinations and attractions
- Plan logistics and transportation
- Manage travel budgets
- Provide packing suggestions
## Preferences
- Balance activities with relaxation
- Consider local experiences
- Optimize for time and budget
- Plan for contingencies
## Memory
- Track past trips
- Remember travel preferences
- Build destination database
- Learn from travel experiences

View File

@@ -0,0 +1,26 @@
# Travel Planner Memory
## Travel Preferences
- **Travel Style:** [Adventure / Relaxation / Cultural]
- **Budget Range:** [Budget / Mid-range / Luxury]
- **Preferred Duration:** [Weekend / Week / Extended]
## Past Trips
- [Paris 2024 - 5 days]
- [Tokyo 2023 - 10 days]
## Upcoming Trips
- [Trip 1 - Date TBD]
## Destination Bucket List
- [Italy]
- [New Zealand]
- [Peru]
## Travel Tips & Lessons
_learned from past trips_

View File

@@ -0,0 +1,34 @@
# Travel Planner Template
## Overview
Your personal travel agent that helps you:
- Plan unforgettable trips
- Stay organized on the go
- Manage travel budgets
- Never miss a reservation
## Quick Start
1. Install required skills:
```bash
npx clawhub@latest install notes
npx clawhub@latest install web-fetch
```
2. Configure your travel preferences in MEMORY.md
3. Start planning your next adventure!
## Features
- 🗓️ Detailed itinerary creation
- 💰 Budget management
- 🌍 Destination research
- 📋 Packing checklists
- 🔔 Travel reminders
## Customization
Edit `workflows/*.yaml` to adjust reminders.
Edit `MEMORY.md` to customize preferences.

View File

@@ -0,0 +1,17 @@
# Required Skills
## Core Skills
- `notes` - Itinerary and travel notes
- `web-fetch` - Research destinations
## Optional Skills
- `weather` - Check destination weather
- `currency` - Currency conversion
- `calendar` - Integration with calendar
## Installation
```bash
npx clawhub@latest install notes
npx clawhub@latest install web-fetch
```

View File

@@ -0,0 +1,14 @@
{
"name": "travel-planner",
"description": "旅行规划:行程安排、攻略生成、预算管理",
"prompts": ["旅行", "travel", "旅游", "trip", "行程", "itinerary", "规划"],
"tags": ["productivity", "travel", "planning"],
"files": {
"AGENTS.md": "# AGENTS.md - Travel Planner Agent\n\n_Your intelligent travel assistant_\n\n## Core Identity\n\n- **Role:** Travel planning and coordination\n- **Personality:** Adventurous, organized, practical\n- **Communication Style:** Detailed and helpful\n\n## Responsibilities\n\n- Create detailed itineraries\n- Research destinations\n- Track travel budgets\n- Provide packing suggestions\n\n## Preferences\n\n- Balance activities and rest\n- Consider local culture\n- Optimize for time and budget\n",
"skills/README.md": "# Required Skills\n\n## Core Skills\n- `notes` - Trip planning\n- `web-fetch` - Research\n\n## Optional Skills\n- `duckduckgo-search` - Destination research\n\n## Installation\n\n```bash\nnpx clawhub@latest install notes web-fetch\n```\n",
"workflows/pre-trip.yaml": "# Pre-Trip Planning\n\ntrigger:\n type: manual\n value: \"start_planning\"\n\nactions:\n - Research destination\n - Create itinerary\n - Build budget\n - Generate packing list\n\ncontext:\n category: travel\n priority: high\n",
"workflows/daily-trip.yaml": "# Daily Trip Updates\n\ntrigger:\n type: time\n value: \"8:00 PM\"\n\nactions:\n - Review tomorrow's activities\n - Update budget\n - Weather check\n - Remind about bookings\n\ncontext:\n category: travel\n priority: medium\n",
"MEMORY.md": "# Travel Planner Memory\n\n## Upcoming Trips\n\n- **Trip 1:** [Destination, Dates]\n- **Trip 2:** [Destination, Dates]\n\n## Travel History\n\n- [Past destinations]\n\n## Preferences\n\n- **Travel Style:** [Budget/Luxury/Backpacking]\n- **Accommodation:** [Hotel/Hostel/Airbnb]\n- **Activities:** [Adventure/Relaxation/Culture]\n\n## Travel Bucket List\n\n- [Dream destinations]\n\n## Budget\n\n- **Annual Budget:** [Amount]\n- **Per Trip Average:** [Amount]\n",
"README.md": "# Travel Planner Template\n\n## Overview\n\nYour intelligent travel planning assistant.\n\n## Features\n\n- Itinerary creation\n- Budget tracking\n- Packing lists\n- Research assistance\n\n## Quick Start\n\n1. Install skills:\n ```bash\n npx clawhub@latest install notes web-fetch\n ```\n2. Add trip details\n"
}
}

View File

@@ -0,0 +1,16 @@
# Trip Planning Workflow
trigger:
type: manual
value: "user wants to plan a trip"
actions:
- Gather destination preferences
- Research attractions and activities
- Create preliminary itinerary
- Estimate costs
- Generate packing list
context:
category: planning
priority: high

View File

@@ -0,0 +1,16 @@
# Trip Reminder Workflow
trigger:
type: time
value: "1 day before trip"
actions:
- Send final reminder
- Share itinerary summary
- Check weather forecast
- Confirm reservations
- Provide packing checklist
context:
category: reminder
priority: high