# Send ArXiv Watcher for Music Research to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "arxiv-watcher-music",
    "name": "ArXiv Watcher for Music Research",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/nomorecoding/arxiv-watcher-music",
    "canonicalUrl": "https://clawhub.ai/nomorecoding/arxiv-watcher-music",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/arxiv-watcher-music",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arxiv-watcher-music",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "_meta.json",
      "scripts/search_arxiv.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/arxiv-watcher-music"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/arxiv-watcher-music",
    "downloadUrl": "https://openagent3.xyz/downloads/arxiv-watcher-music",
    "agentUrl": "https://openagent3.xyz/skills/arxiv-watcher-music/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arxiv-watcher-music/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arxiv-watcher-music/agent.md"
  }
}
```
## Documentation

### ArXiv Watcher Skill

This skill provides systematic ArXiv paper search with structured query strategies, duplicate handling, and comprehensive audit trail for academic research workflows.

### Capabilities

Structured Search Strategy: Implements domain-specific search strategies based on research objectives
CS Category Filtering: Searches only within arXiv CS (Computer Science) category
Time Range Enforcement: Strictly adheres to specified date ranges
Duplicate Handling: Automatically merges results from multiple queries and removes duplicates
Rate Limit Management: Implements multi-round search strategies for large date ranges
Comprehensive Logging: Maintains detailed records of all search activities and results

### Music Generation Search Strategy

Primary Objective: Systematically map the methodological landscape, data/training resources, evaluation benchmarks, and SOTA trends in music generation over the past two years.

Strong Relevance Keywords:

music generation
song generation
text-to-music
text-to-song
lyrics-to-music
image-to-music
video-to-music
video-guided music generation
text-to-midi
symbolic music generation
music synthesis

Weak Relevance Keywords (require additional verification):

editing
controllable generation
instruction-following

Related Paper Types (strong relevance if combined with music keywords):

survey
benchmark
evaluation
dataset

### Query Construction

Base Query: Combines strong relevance keywords with OR logic
Category Filter: Restricts to cat:cs.* (Computer Science)
Date Filter: Uses submittedDate range with strict bounds
Duplicate Prevention: Tracks paper IDs across multiple queries

### Rate Limit Handling

For large date ranges (>6 months), implements multi-round strategy:

Chunk by Quarter: Split date range into quarterly segments
Sequential Queries: Execute queries sequentially with delay
Merge Results: Combine and deduplicate across all segments
Progress Tracking: Log completion status for each segment

### Result Processing

Deduplication: Remove papers appearing in multiple query results
Metadata Extraction: Extract title, authors, abstract, submission date, arXiv ID
Relevance Tagging: Tag papers with primary keywords that matched
Structured Output: Generate standardized paper list format

### Local File Storage

Search Log: research/{domain}/search_results/arxiv_search_log.md
Paper List: research/{domain}/search_results/paper_list.json
Directory Structure: Automatically created if missing

### Search Log Structure

Each search session includes:

Session Header: Date, domain, time range, search objective
Query Strategy: Detailed keyword combinations and search parameters
Execution Details: Query chunks, rate limit handling, completion status
Results Summary: Total papers found, duplicates removed, final count
Individual Results: Structured list of all papers with metadata

### Paper List Format (JSON)

{
  "search_metadata": {
    "domain": "music_generation",
    "time_range": {"start": "2024-06-01", "end": "2026-02-27"},
    "keywords": ["music generation", "song generation", ...],
    "total_papers": 187,
    "search_date": "2026-02-28"
  },
  "papers": [
    {
      "title": "Paper Title",
      "authors": ["Author1", "Author2"],
      "abstract": "Paper abstract...",
      "arxiv_id": "2602.xxxxx",
      "submission_date": "2026-02-23",
      "matched_keywords": ["music generation"],
      "category": "cs.SD",
      "url": "https://arxiv.org/abs/2602.xxxxx"
    }
  ]
}

### Usage Examples

# Search music generation papers for full date range
arxiv_watcher --domain "music_generation" --start_date "2024-06-01" --end_date "2026-02-27" --keywords "music generation,song generation"

# Search recent papers only  
arxiv_watcher --domain "music_generation" --days 15 --keywords "music generation,song generation"

### Files Created

research/{domain}/search_results/arxiv_search_log.md
research/{domain}/search_results/paper_list.json
Directory structure automatically created if missing

### Audit Trail Requirements

All search activities must include:

Complete query strategy documentation
Execution progress tracking
Duplicate handling records
Final result validation
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nomorecoding
- Version: 2.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/arxiv-watcher-music)
- [Send to Agent page](https://openagent3.xyz/skills/arxiv-watcher-music/agent)
- [JSON manifest](https://openagent3.xyz/skills/arxiv-watcher-music/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/arxiv-watcher-music/agent.md)
- [Download page](https://openagent3.xyz/downloads/arxiv-watcher-music)