Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, or extract information from web pages.
Generates Angular 17+ standalone components, configures advanced routing with lazy loading and guards, implements NgRx state management, applies RxJS patterns, and optimizes bundle performance. Use when building Angular 17+ applications with standalone components or signals, setting up NgRx stores, establishing RxJS reactive patterns, performance tuning, or writing Angular tests for enterprise apps.
Sync files with centralized storage. Use when Manager or another Worker notifies you of file updates (config changes, task files, shared data, collaboration artifacts).
- 📁 agents/
- 📁 references/
- 📄 LICENSE.txt
- 📄 SKILL.md
Anime Garden is a anime torrent resources aggregation platform, which is also a third-party mirror of 動漫花園, 萌番组, and ANi. Use when required task is searching anime resources.
Plan and review MySQL/InnoDB schema, indexing, query tuning, transactions, and operations. Use when creating or modifying MySQL tables, indexes, or queries; diagnosing slow/locking behavior; planning migrations; or troubleshooting replication and connection issues. Load when using a MySQL database.
Search the web for current information
- 📄 data-modeling.md
- 📄 index.md
- 📄 SKILL.md
Enforces @adobe/data/ecs best practices. Use this whenever @adobe/data/ecs is imported, when creating or modifying Database.Plugin definitions, or when working with ECS components, resources, transactions, actions, systems, or services.
- 📁 references/
- 📁 scripts/
- 📄 SKILL.md
databases, manage object storage buckets, deploy code, configure environments
Align-and-Do Protocol (AAD). Use for smaller tasks that don't need formal specs or plans.
Search the web. Returns a list of search results to then be explored. Use when you need current information or to verify facts.
- 📁 .github/
- 📁 .omx/
- 📁 assets/
- 📄 .gitignore
- 📄 AGENTS.md
- 📄 Cargo.lock
Attach/install/use clawhip as a daemon-first notification gateway runtime for OpenClaw / Clawdbot
- 📁 references/
- 📁 scripts/
- 📄 .workspace_path
- 📄 SKILL.md
每日资讯日报生成器。三阶段工作流:获取元数据、生成摘要、输出日报。 触发场景:每日新闻、资讯日报、信息监控、新闻聚合、daily news、生成日报。 也用于添加新信源(自动分析网页并生成 method 文件)。 --- # Daily News 三阶段工作流:**获取元数据** → **生成摘要** → **输出日报** ## 工作目录 首次运行询问工作目录路径(如 `~/daily-news`),后续记住。 ``` <workspace>/ ├── profile.yaml # 用户画像(关于我、关注什么) ├── settings.yaml # 日报设置(语言、格式偏好) ├── methods/ # 信源获取方法 ├── data/news.db # SQLite 数据库 └── output/YYYY-MM-DD.md # 日报输出 ``` 初始化: ```bash mkdir -p <workspace>/methods <workspace>/data <workspace>/output cp references/examples/settings.example.yaml <workspace>/settings.yaml cp references/examples/profile.example.yaml <workspace>/profile.yaml python3 scripts/db.py init --db <workspace>/data/news.db ``` 初始化完成后: 1. 将工作目录写入用户的 `~/.claude/CLAUDE.md`,追加一行: ``` - daily-news skill 的项目目录在:<workspace> ``` 这样后续新会话无需再询问目录位置。 2. 询问用户是否需要调整画像。 --- ## 阶段 0:选择抓取日期范围(新增) 在执行抓取前,询问用户日期范围,从源头减少非必要工作量。 ### 日期范围选项 ``` 请选择抓取时间范围: 1. 今天(默认) → published_at >= 今天 2. 昨天 → published_at >= 昨天 3. 最近3天 → published_at >= 3天前 4. 最近7天 → published_at >= 7天前 5. 从上次抓取至今(增量) → published_at >= last_fetched_date 6. 自定义日期范围 → 输入开始日期 ``` ### 增量抓取逻辑 **每个信源独立追踪抓取日期**: ```yaml # methods/twitter-karpathy.yaml