<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>排程任務 &#8211; 小人物看世界</title>
	<atom:link href="https://blog.che-ya.com/tag/%e6%8e%92%e7%a8%8b%e4%bb%bb%e5%8b%99/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.che-ya.com</link>
	<description>軟體工程師的技術筆記</description>
	<lastBuildDate>Wed, 08 Apr 2026 08:08:58 +0000</lastBuildDate>
	<language>zh-TW</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://blog.che-ya.com/wp-content/uploads/2021/08/cropped-APP_icon-32x32.png</url>
	<title>排程任務 &#8211; 小人物看世界</title>
	<link>https://blog.che-ya.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>排程任務與自動化工作流</title>
		<link>https://blog.che-ya.com/claude-code-scheduled-tasks-automation/</link>
		
		<dc:creator><![CDATA[ㄚ槌]]></dc:creator>
		<pubDate>Thu, 14 May 2026 01:15:00 +0000</pubDate>
				<category><![CDATA[Claude Code]]></category>
		<category><![CDATA[自動化與 DevOps]]></category>
		<category><![CDATA[AI 編程工具]]></category>
		<category><![CDATA[Anthropic]]></category>
		<category><![CDATA[SKILL.md]]></category>
		<category><![CDATA[排程任務]]></category>
		<category><![CDATA[自動化]]></category>
		<guid isPermaLink="false">https://blog.che-ya.com/?p=913</guid>

					<description><![CDATA[在日常開發中，有許多任務是反覆執行的：每天檢查部署狀態、定期執行程式碼掃描、監控 CI/CD 流程、定時產生報 ... <a title="排程任務與自動化工作流" class="read-more" href="https://blog.che-ya.com/claude-code-scheduled-tasks-automation/" aria-label="Read more about 排程任務與自動化工作流">閱讀全文</a>]]></description>
										<content:encoded><![CDATA[
<p>在日常開發中，有許多任務是反覆執行的：每天檢查部署狀態、定期執行程式碼掃描、監控 CI/CD 流程、定時產生報告等。Claude Code 提供了強大的<strong>排程任務（Scheduled Tasks）</strong>功能，讓你可以將這些重複性工作自動化，從而專注在更有價值的開發工作上。這篇文章將帶你全面了解 Claude Code 的排程任務系統，從基礎設定到進階應用，打造高效的自動化工作流。</p>



<h2 class="wp-block-heading">排程任務概觀：三種排程方式</h2>



<p>Claude Code 提供三種不同的排程方式，各自適用於不同的使用情境。選擇正確的排程方式是建立穩定自動化工作流的第一步。</p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>特性</th><th>Cloud 雲端排程</th><th>Desktop 桌面排程</th><th>/loop 工作階段排程</th></tr></thead><tbody><tr><td>執行環境</td><td>Anthropic 雲端</td><td>本機</td><td>本機</td></tr><tr><td>需要開機</td><td>否</td><td>是</td><td>是</td></tr><tr><td>需要開啟工作階段</td><td>否</td><td>否</td><td>是</td></tr><tr><td>重啟後保留</td><td>是</td><td>是</td><td>否（工作階段範圍）</td></tr><tr><td>存取本機檔案</td><td>否（全新 clone）</td><td>是</td><td>是</td></tr><tr><td>最小間隔</td><td>1 小時</td><td>1 分鐘</td><td>1 分鐘</td></tr></tbody></table></figure>



<p><strong>Cloud 雲端排程</strong>適合不依賴本機環境的自動化任務，即使電腦關機也能可靠執行。<strong>Desktop 桌面排程</strong>適合需要存取本機檔案和工具的任務。<strong>/loop 指令</strong>則適合在開發過程中快速建立臨時性的輪詢任務。</p>



<h2 class="wp-block-heading">使用 /loop 快速建立排程任務</h2>



<p><code>/loop</code> 是 Claude Code 內建的 Skill，也是建立排程任務最快速的方式。只需要指定間隔時間和要執行的提示詞，Claude 就會自動將其轉換為 cron 表達式並在背景執行。</p>



<h3 class="wp-block-heading">基本語法</h3>



<pre class="wp-block-code"><code class=""># 每 5 分鐘檢查部署狀態
/loop 5m check if the deployment finished and tell me what happened

# 每 2 小時檢查建置結果
/loop check the build every 2 hours

# 使用預設間隔（每 10 分鐘）
/loop check the build</code></pre>



<h3 class="wp-block-heading">間隔時間語法</h3>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>寫法</th><th>範例</th><th>解析結果</th></tr></thead><tbody><tr><td>前綴式</td><td><code>/loop 30m check the build</code></td><td>每 30 分鐘</td></tr><tr><td>後綴式（every）</td><td><code>/loop check the build every 2 hours</code></td><td>每 2 小時</td></tr><tr><td>不指定間隔</td><td><code>/loop check the build</code></td><td>預設每 10 分鐘</td></tr></tbody></table></figure>



<p>支援的時間單位包括：<code>s</code>（秒）、<code>m</code>（分鐘）、<code>h</code>（小時）和 <code>d</code>（天）。由於 cron 的最小粒度為一分鐘，秒數會自動無條件進位至最近的分鐘數。</p>



<h3 class="wp-block-heading">串接其他指令與 Skill</h3>



<p><code>/loop</code> 的強大之處在於它可以串接其他指令或 Skill。這讓你可以將已經封裝好的工作流程，以排程方式重複執行。</p>



<pre class="wp-block-code"><code class=""># 每 20 分鐘自動執行 PR Review
/loop 20m /review-pr 1234

# 每 1 小時執行自訂的測試 Skill
/loop 1h /run-tests --suite integration</code></pre>



<h2 class="wp-block-heading">一次性任務與提醒</h2>



<p>除了重複執行的排程任務，Claude Code 也支援<strong>一次性任務</strong>。你可以用自然語言描述想要在特定時間執行的動作，Claude 會自動解析並排程，任務執行完畢後會自動刪除。</p>



<pre class="wp-block-code"><code class=""># 在下午 3 點提醒推送 release 分支
remind me at 3pm to push the release branch

# 45 分鐘後檢查整合測試結果
in 45 minutes, check whether the integration tests passed

# 使用 ISO 8601 格式指定精確時間（適用於 Desktop 排程）
# fireAt: "2026-06-11T14:30:00+08:00"</code></pre>



<p>一次性任務特別適合用在：等待長時間建置完成後的檢查、提醒自己執行特定操作、以及在指定時間自動觸發某個流程。</p>



<h2 class="wp-block-heading">Cron 表達式完整指南</h2>



<p>Claude Code 的排程系統使用標準的<strong>五欄位 cron 表達式</strong>：<code>分鐘 小時 日 月 星期</code>。所有時間都以<strong>本地時區</strong>解析，而非 UTC。這意味著 <code>0 9 * * *</code> 代表的是你所在時區的早上 9 點。</p>



<h3 class="wp-block-heading">常用 Cron 表達式範例</h3>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>Cron 表達式</th><th>說明</th><th>適用情境</th></tr></thead><tbody><tr><td><code>*/5 * * * *</code></td><td>每 5 分鐘</td><td>快速輪詢部署狀態</td></tr><tr><td><code>0 * * * *</code></td><td>每小時整點</td><td>定期健康檢查</td></tr><tr><td><code>0 9 * * *</code></td><td>每天早上 9 點</td><td>每日報告產生</td></tr><tr><td><code>0 9 * * 1-5</code></td><td>週一到週五早上 9 點</td><td>工作日自動化任務</td></tr><tr><td><code>30 14 15 3 *</code></td><td>3 月 15 日下午 2:30</td><td>特定日期的一次性任務</td></tr><tr><td><code>0 0 1 * *</code></td><td>每月 1 日午夜</td><td>月度報告或清理任務</td></tr></tbody></table></figure>



<h3 class="wp-block-heading">Cron 欄位支援語法</h3>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>語法</th><th>說明</th><th>範例</th></tr></thead><tbody><tr><td><code>*</code></td><td>萬用字元（任意值）</td><td><code>* * * * *</code> 每分鐘</td></tr><tr><td><code>5</code></td><td>指定單一值</td><td><code>5 * * * *</code> 每小時第 5 分鐘</td></tr><tr><td><code>*/15</code></td><td>步進值</td><td><code>*/15 * * * *</code> 每 15 分鐘</td></tr><tr><td><code>1-5</code></td><td>範圍</td><td><code>0 9 * * 1-5</code> 週一到週五</td></tr><tr><td><code>1,15,30</code></td><td>逗號分隔列表</td><td><code>0 9,12,18 * * *</code> 9、12、18 點</td></tr></tbody></table></figure>



<p>星期欄位中，<code>0</code> 或 <code>7</code> 代表星期日，<code>1</code> 到 <code>6</code> 分別代表星期一到星期六。注意：Claude Code 不支援 <code>L</code>、<code>W</code>、<code>?</code> 等擴充語法，也不支援 <code>MON</code>、<code>JAN</code> 等名稱別名。</p>



<h2 class="wp-block-heading">任務管理：查詢、更新與刪除</h2>



<p>Claude Code 提供了完整的任務管理功能，你可以使用自然語言或直接呼叫底層工具來管理排程任務。</p>



<h3 class="wp-block-heading">自然語言管理</h3>



<pre class="wp-block-code"><code class=""># 列出所有排程任務
what scheduled tasks do I have?

# 取消特定任務
cancel the deploy check job

# 更新任務的排程時間
change the build check to run every 30 minutes instead</code></pre>



<h3 class="wp-block-heading">底層工具 API</h3>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>工具名稱</th><th>用途</th><th>說明</th></tr></thead><tbody><tr><td><code>CronCreate</code></td><td>建立新任務</td><td>接受 5 欄位 cron 表達式、執行提示詞，以及是否為重複任務</td></tr><tr><td><code>CronList</code></td><td>列出所有任務</td><td>顯示任務 ID、排程和提示詞</td></tr><tr><td><code>CronDelete</code></td><td>刪除任務</td><td>透過 8 字元任務 ID 取消任務</td></tr></tbody></table></figure>



<p>每個排程任務都有一個<strong>唯一的 8 字元 ID</strong>，可以用來精確指定要操作的任務。單一工作階段最多可以同時擁有 <strong>50 個排程任務</strong>。</p>



<h2 class="wp-block-heading">Desktop 排程任務：持久化的自動化</h2>



<p>與 <code>/loop</code> 的工作階段範圍不同，<strong>Desktop 排程任務</strong>會以 SKILL.md 檔案的形式儲存在本機，即使關閉 Claude Code 再重新開啟也會繼續執行。每次任務觸發時會啟動一個全新的工作階段來執行。</p>



<h3 class="wp-block-heading">SKILL.md 任務檔案格式</h3>



<pre class="wp-block-code"><code class=""># 任務檔案儲存路徑
# ~/Documents/Claude/Scheduled/{taskId}/SKILL.md

# SKILL.md 檔案結構範例
---
description: "每日檢查專案依賴更新"
cronExpression: "0 9 * * 1-5"
enabled: true
---

# 每日依賴更新檢查

請檢查目前專案中所有 npm 依賴套件是否有可用更新，
特別注意安全性更新，並產生一份摘要報告。

## 執行步驟
1. 執行 npm outdated 檢查過期套件
2. 執行 npm audit 檢查安全漏洞
3. 整理結果並產生報告</code></pre>



<p>Desktop 排程任務可以透過 <code>/schedule</code> 指令在 CLI 中建立，也可以透過 Cowork 桌面應用的 UI 介面設定。任務支援啟用/停用切換，方便你暫時暫停某個自動化流程而不需要刪除它。</p>



<h2 class="wp-block-heading">排程執行機制與注意事項</h2>



<p>了解排程任務的內部執行機制，可以幫助你設計出更可靠的自動化工作流。</p>



<h3 class="wp-block-heading">執行優先順序</h3>



<p>排程器每秒檢查是否有到期的任務，並將其排入<strong>低優先佇列</strong>。排程任務會在你的對話回合之間觸發，而不會在 Claude 正在回應時中斷。如果任務到期時 Claude 正在忙碌，任務會等到當前回合結束後才執行。</p>



<h3 class="wp-block-heading">Jitter 時間偏移機制</h3>



<p>為了避免所有工作階段在同一時刻集中發送 API 請求，排程器會加入一個<strong>確定性的偏移量（Jitter）</strong>。重複性任務最多會延遲觸發間隔的 10%，上限為 15 分鐘。一次性任務在整點或半點時最多會提前 90 秒觸發。偏移量是根據任務 ID 計算的，因此同一任務的偏移量始終一致。</p>



<p>如果你需要較精確的觸發時間，建議將 cron 的分鐘欄位設為非整點或非半點的時間，例如使用 <code>3 9 * * *</code> 而非 <code>0 9 * * *</code>。</p>



<h3 class="wp-block-heading">七天自動過期機制</h3>



<p>工作階段內的重複性任務會在建立後 <strong>7 天自動過期</strong>並刪除。這個機制防止了被遺忘的排程任務無限期執行。如果你需要長期運行的排程任務，建議使用 Cloud 或 Desktop 排程任務，或者在過期前手動取消並重新建立。</p>



<h2 class="wp-block-heading">與系統排程工具的整合</h2>



<p>除了 Claude Code 內建的排程功能，你也可以將 Claude Code 與作業系統的 cron 或 CI/CD 工具結合，實現更靈活的自動化流程。</p>



<h3 class="wp-block-heading">搭配 Linux/macOS Cron</h3>



<pre class="wp-block-code"><code class=""># 編輯 crontab
crontab -e

# 每天早上 9 點執行 Claude Code 任務
0 9 * * * cd /path/to/project &amp;&amp; claude -p "檢查昨天的部署日誌並產生摘要" --output-format text > /tmp/daily-report.md

# 每週一早上 8:30 執行程式碼品質檢查
30 8 * * 1 cd /path/to/project &amp;&amp; claude -p "執行完整的程式碼品質掃描" --output-format text >> /var/log/code-quality.log 2>&amp;1</code></pre>



<h3 class="wp-block-heading">搭配 GitHub Actions</h3>



<pre class="wp-block-code"><code class=""># .github/workflows/scheduled-review.yml
name: Scheduled Code Review

on:
  schedule:
    # 每天 UTC 01:00（台灣時間早上 9:00）
    - cron: '0 1 * * 1-5'
  workflow_dispatch:  # 允許手動觸發

jobs:
  daily-review:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Run Claude Code Review
        run: |
          npx @anthropic-ai/claude-code -p \
            "Review recent commits and check for potential issues" \
            --output-format text
        env:
          ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}</code></pre>



<h2 class="wp-block-heading">監控自動化任務的執行狀態</h2>



<p>自動化任務的可觀測性至關重要。你需要知道任務是否按時執行、執行結果如何、以及是否有任何錯誤需要處理。</p>



<h3 class="wp-block-heading">內建監控方式</h3>



<pre class="wp-block-code"><code class=""># 在 Claude Code 工作階段中查看任務狀態
what scheduled tasks do I have?

# 查看特定任務的執行歷史
show me the results of the last deployment check

# Desktop 排程任務的通知設定
# 建立任務時設定 notifyOnCompletion: true
# 即可在任務完成時收到通知</code></pre>



<h3 class="wp-block-heading">搭配日誌記錄</h3>



<pre class="wp-block-code"><code class=""># 建立自動化任務的日誌記錄腳本
#!/bin/bash
# scheduled-task-runner.sh

LOG_DIR="$HOME/.claude-tasks/logs"
DATE=$(date +%Y-%m-%d_%H-%M-%S)
TASK_NAME="$1"
LOG_FILE="$LOG_DIR/${TASK_NAME}_${DATE}.log"

mkdir -p "$LOG_DIR"

echo "=== Task: $TASK_NAME ===" >> "$LOG_FILE"
echo "Started: $(date)" >> "$LOG_FILE"

cd /path/to/project &amp;&amp; claude -p "$2" \
  --output-format text >> "$LOG_FILE" 2>&amp;1

EXIT_CODE=$?
echo "Finished: $(date)" >> "$LOG_FILE"
echo "Exit code: $EXIT_CODE" >> "$LOG_FILE"

# 如果任務失敗，發送通知
if [ $EXIT_CODE -ne 0 ]; then
  echo "Task $TASK_NAME failed!" | mail -s "Claude Task Alert" admin@example.com
fi</code></pre>



<h2 class="wp-block-heading">實際應用範例</h2>



<p>以下是幾個常見的排程任務應用場景，展示如何將 Claude Code 的排程功能應用在日常開發工作中。</p>



<h3 class="wp-block-heading">範例一：每日開發報告</h3>



<pre class="wp-block-code"><code class=""># 使用 /loop 在工作階段中設定
/loop 1d generate a daily development report including:
  - git log for today
  - open PR status
  - failing tests summary
  - dependency security alerts

# 或使用 Desktop 排程任務（SKILL.md 格式）
---
description: "每日開發報告"
cronExpression: "0 9 * * 1-5"
enabled: true
---

請產生今日的開發報告，包含以下內容：
1. 今天的 git commit 紀錄摘要
2. 所有開放中的 Pull Request 狀態
3. 失敗的測試案例清單
4. npm audit 安全性警告</code></pre>



<h3 class="wp-block-heading">範例二：自動化程式碼掃描</h3>



<pre class="wp-block-code"><code class=""># 每週一執行完整程式碼品質掃描
---
description: "週度程式碼品質掃描"
cronExpression: "0 8 * * 1"
enabled: true
---

請對整個專案執行程式碼品質掃描：

1. 檢查是否有未使用的變數和 import
2. 找出重複的程式碼區塊
3. 檢查函式的複雜度（Cyclomatic Complexity）
4. 確認所有 TODO/FIXME 註解是否有對應的 Issue
5. 產生一份 Markdown 格式的報告存到 reports/ 目錄</code></pre>



<h3 class="wp-block-heading">範例三：定期備份與環境檢查</h3>



<pre class="wp-block-code"><code class=""># 每天檢查備份狀態和環境健康度
---
description: "環境健康度檢查"
cronExpression: "0 7 * * *"
enabled: true
---

請執行以下環境健康度檢查：

1. 確認資料庫備份是否在過去 24 小時內完成
2. 檢查磁碟空間使用率
3. 驗證 SSL 憑證到期日
4. 確認所有必要的環境變數都已設定
5. 測試外部 API 端點的連通性
6. 如果發現任何異常，整理成警告報告</code></pre>



<h2 class="wp-block-heading">停用排程任務</h2>



<p>如果你需要完全停用排程功能，可以設定環境變數 <code>CLAUDE_CODE_DISABLE_CRON=1</code>。啟用此設定後，cron 工具和 <code>/loop</code> 指令將無法使用，所有已排程的任務也會停止觸發。</p>



<pre class="wp-block-code"><code class=""># 在 shell 設定檔中停用排程功能
export CLAUDE_CODE_DISABLE_CRON=1

# 或在啟動 Claude Code 時臨時停用
CLAUDE_CODE_DISABLE_CRON=1 claude</code></pre>



<h2 class="wp-block-heading">限制與注意事項</h2>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>限制項目</th><th>說明</th><th>建議替代方案</th></tr></thead><tbody><tr><td>工作階段範圍</td><td>/loop 任務僅在 Claude Code 執行期間有效，關閉後全部清除</td><td>改用 Desktop 或 Cloud 排程任務</td></tr><tr><td>不補執行</td><td>如果任務觸發時 Claude 正忙，不會逐一補執行錯過的次數</td><td>設計任務時考慮冪等性</td></tr><tr><td>7 天自動過期</td><td>工作階段內的重複任務 7 天後自動刪除</td><td>使用 Cloud/Desktop 排程或定期重建</td></tr><tr><td>同時任務上限</td><td>單一工作階段最多 50 個排程任務</td><td>合併相關任務或使用外部排程</td></tr><tr><td>Cloud 最小間隔</td><td>Cloud 排程任務的最小間隔為 1 小時</td><td>高頻任務改用 Desktop 或 /loop</td></tr></tbody></table></figure>



<h2 class="wp-block-heading">延伸閱讀</h2>



<ul class="wp-block-list">
<li><a href="https://code.claude.com/docs/en/scheduled-tasks" rel="nofollow noopener" target="_blank">Claude Code 官方文件 &#8211; Scheduled Tasks</a></li>



<li><a href="https://code.claude.com/docs/en/desktop-scheduled-tasks" rel="nofollow noopener" target="_blank">Claude Code 官方文件 &#8211; Desktop Scheduled Tasks</a></li>



<li><a href="https://code.claude.com/docs/en/web-scheduled-tasks" rel="nofollow noopener" target="_blank">Claude Code 官方文件 &#8211; Cloud Scheduled Tasks</a></li>



<li><a href="https://code.claude.com/docs/en/github-actions" rel="nofollow noopener" target="_blank">Claude Code 官方文件 &#8211; GitHub Actions 整合</a></li>



<li><a href="https://code.claude.com/docs/en/skills" rel="nofollow noopener" target="_blank">Claude Code 官方文件 &#8211; Skills 系統</a></li>
</ul>



<p>排程任務是 Claude Code 自動化能力的核心功能之一。從簡單的 <code>/loop</code> 輪詢到持久化的 Desktop 排程，再到與 GitHub Actions 的整合，你可以根據實際需求選擇最合適的方式。善用排程任務，把重複性的開發工作交給 Claude，讓你把時間花在真正需要創造力的地方。</p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author"><div class="saboxplugin-tab"><div class="saboxplugin-gravatar"><img alt='ㄚ槌' src='https://secure.gravatar.com/avatar/9914399915f96350f302945e8ddddee1a9b1995350182f513fd2e1fa816c100a?s=100&#038;d=mm&#038;r=g' srcset='https://secure.gravatar.com/avatar/9914399915f96350f302945e8ddddee1a9b1995350182f513fd2e1fa816c100a?s=200&#038;d=mm&#038;r=g 2x' class='avatar avatar-100 photo' height='100' width='100' itemprop="image"/></div><div class="saboxplugin-authorname"><a href="https://blog.che-ya.com/author/a3230230/" class="vcard author" rel="author"><span class="fn">ㄚ槌</span></a></div><div class="saboxplugin-desc"><div itemprop="description"></div></div><div class="saboxplugin-web "><a href="https://blog.che-ya.com" target="_self">blog.che-ya.com</a></div><div class="clearfix"></div></div></div><p><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fblog.che-ya.com%2Fclaude-code-scheduled-tasks-automation%2F&amp;linkname=%E6%8E%92%E7%A8%8B%E4%BB%BB%E5%8B%99%E8%88%87%E8%87%AA%E5%8B%95%E5%8C%96%E5%B7%A5%E4%BD%9C%E6%B5%81" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_line" href="https://www.addtoany.com/add_to/line?linkurl=https%3A%2F%2Fblog.che-ya.com%2Fclaude-code-scheduled-tasks-automation%2F&amp;linkname=%E6%8E%92%E7%A8%8B%E4%BB%BB%E5%8B%99%E8%88%87%E8%87%AA%E5%8B%95%E5%8C%96%E5%B7%A5%E4%BD%9C%E6%B5%81" title="Line" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Fblog.che-ya.com%2Fclaude-code-scheduled-tasks-automation%2F&amp;linkname=%E6%8E%92%E7%A8%8B%E4%BB%BB%E5%8B%99%E8%88%87%E8%87%AA%E5%8B%95%E5%8C%96%E5%B7%A5%E4%BD%9C%E6%B5%81" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fblog.che-ya.com%2Fclaude-code-scheduled-tasks-automation%2F&#038;title=%E6%8E%92%E7%A8%8B%E4%BB%BB%E5%8B%99%E8%88%87%E8%87%AA%E5%8B%95%E5%8C%96%E5%B7%A5%E4%BD%9C%E6%B5%81" data-a2a-url="https://blog.che-ya.com/claude-code-scheduled-tasks-automation/" data-a2a-title="排程任務與自動化工作流"></a></p>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
