← 所有挑戰

Hands-On Agentic AI for Leaders

Shift from chatting with AI to building production agent workflows you can deploy, govern, and reuse across your org.

每週時間
~6 hrs/week
對象
C-suite, leaders, and senior ICs who learn by building, not by watching.
前置
A ChatGPT, Claude, or Gemini subscription. No coding required.
結構
30 天 · 4 個里程碑 · 11 個檢查點 · 47 步
在 mouseover 開始挑戰

在 mouseover 中啟動挑戰;如果還沒安裝,請先 下載

第 1 週

Foundations & Workflow Identification

Audit recurring work, identify high-value workflow candidates, set up your AI builder stack.

本週成果: A ranked list of 3 workflow candidates plus a working builder environment.

檢查點 1 · ~2 hrs

Audit your recurring work

完成後你會有: A ranked list of 3 candidate workflows scored on frequency × pain.

顯示 4 步
  1. 步驟 1 List 10 things you do every week that take more than 20 minutes.
  2. 步驟 2 Score each on frequency (how often) and pain (how draining or error-prone).
  3. 步驟 3 Mark the ones you would describe out loud to a colleague the same way every time. These are workflow candidates.
  4. 步驟 4 Pick the top 3 and write a one-sentence description of each.
檢查點 2 · ~3 hrs

Apply the 7-step workflow lifecycle

完成後你會有: Your top candidate decomposed into a written workflow spec.

顯示 5 步
  1. 步驟 1 Take the top candidate and write out the workflow as a numbered list of steps.
  2. 步驟 2 Mark each step as "decision" (judgment required) or "mechanical" (rule-following).
  3. 步驟 3 Identify which mechanical steps an LLM could do with a clear prompt.
  4. 步驟 4 Identify which decision steps still need human review and what good looks like for each.
  5. 步驟 5 Write a one-page workflow spec: inputs, steps, outputs, review points.
檢查點 3 · ~2 hrs

Set up the builder stack

完成後你會有: A working environment where you can author, version, and test AI workflows.

顯示 4 步
  1. 步驟 1 Install Cursor or VS Code. Get comfortable opening, saving, and committing files.
  2. 步驟 2 Create a GitHub account if you do not have one and make a private repo for your AI assets.
  3. 步驟 3 Pick your primary model: Claude, ChatGPT, or Gemini. Confirm you can access the API or platform of your choice.
  4. 步驟 4 Run one short prompt as a saved file in your repo. Commit it. You now own that asset.
第 2 週

Agent Skills & Deterministic Workflows

Package skills as files you own. Build workflows you can test, version, and hand off.

本週成果: Two production workflows: one deterministic, one human-in-the-loop.

檢查點 1 · ~3 hrs

Build your first agent skill

完成後你會有: A reusable, file-versioned skill that beats raw chat on 5 real inputs.

顯示 5 步
  1. 步驟 1 Pick a skill type from your workflow: research, summarisation, analysis, or drafting.
  2. 步驟 2 Write the skill as a prompt-in-a-file with explicit role, inputs, format, and constraints.
  3. 步驟 3 Run it on 5 real inputs you actually deal with. Capture the outputs.
  4. 步驟 4 Compare against raw "ask ChatGPT" on the same inputs. Note where the skill version wins.
  5. 步驟 5 Iterate the prompt once. Commit the new version. You now version a skill.
檢查點 2 · ~3 hrs

Build a deterministic workflow

完成後你會有: A 2-to-3-skill chain that runs end-to-end on real input with a pass rate you can quote.

顯示 4 步
  1. 步驟 1 Chain 2 or 3 of your skills with explicit handoffs (output of A becomes input of B).
  2. 步驟 2 Define the fixed rules: what runs always, what skips, what triggers a stop.
  3. 步驟 3 Run on 5 real inputs. Log pass and fail for each step.
  4. 步驟 4 Write down the pass rate. This is your baseline.
檢查點 3 · ~2 hrs

Add a human review checkpoint

完成後你會有: A collaborative workflow where a human approves before the final step ships.

顯示 4 步
  1. 步驟 1 Identify the one step in your workflow where human judgment matters most.
  2. 步驟 2 Design the handoff: what does the human see, what do they decide, where do they signal "approved"?
  3. 步驟 3 Run the collaborative version with a real colleague on a real input.
  4. 步驟 4 Note what the colleague pushed back on. Update the prompt so the AI catches it next time.
第 3 週

Autonomous Systems

Deploy single-agent and multi-agent workflows for your highest-value work.

本週成果: A deployed single-agent workflow running unattended and a multi-agent design tested in dev.

檢查點 1 · ~3 hrs

Deploy a single-agent workflow

完成後你會有: A workflow that runs unattended on a real input and produces a real output.

顯示 4 步
  1. 步驟 1 Pick the platform that fits your use case: Claude Projects, custom GPT, M365 Copilot, or Gemini.
  2. 步驟 2 Deploy your workflow with all the skills and rules from week 2.
  3. 步驟 3 Trigger it on a real input. Measure how long it took, what it produced, where it diverged.
  4. 步驟 4 Document the trigger, expected inputs, and expected outputs.
檢查點 2 · ~3 hrs

Design a multi-agent system

完成後你會有: A documented 3-agent handoff with a tested failure recovery path.

顯示 5 步
  1. 步驟 1 Pick a workflow too big for one agent. Often: research → synthesis → output.
  2. 步驟 2 Design 3 agents with explicit roles, handoffs, and inputs/outputs.
  3. 步驟 3 Implement the handoffs. Could be as simple as file passes or as rich as a tool-call chain.
  4. 步驟 4 Run on one real input. Inject a known failure midway. Document the recovery path.
  5. 步驟 5 Decide which workflows are worth this complexity and which are not.
第 4 週

AI Registry & Governance

Make your skills, prompts, and agents discoverable, reusable team assets.

本週成果: A living AI Registry in Notion with a 30-day team rollout plan.

檢查點 1 · ~3 hrs

Build the AI Registry

完成後你會有: A Notion database listing all your skills, prompts, and agents with status, owner, and use.

顯示 4 步
  1. 步驟 1 Create a Notion database with columns: name, type (skill/prompt/agent), status, owner, use case, link to file.
  2. 步驟 2 Import every asset you built in weeks 1 through 3.
  3. 步驟 3 Tag each by maturity: draft, tested, production.
  4. 步驟 4 Add a "last reviewed" date column so quality stays current.
檢查點 2 · ~2 hrs

Make it discoverable

完成後你會有: A team-facing landing page on the registry with 3 example usages.

顯示 4 步
  1. 步驟 1 Write a one-page intro to the registry: what is here, when to use it, who owns it.
  2. 步驟 2 Add 3 example usages with the exact inputs and outputs.
  3. 步驟 3 Share with 2 colleagues. Ask them to find a specific asset. Note what they fail to find.
  4. 步驟 4 Fix the discoverability gaps you observed.
檢查點 3 · ~2 hrs

Plan the team rollout

完成後你會有: A 30-day rollout plan with 3 candidate workflows and first office hours scheduled.

顯示 4 步
  1. 步驟 1 Pick 3 workflows from your registry that are ready for team adoption.
  2. 步驟 2 For each, write: target team, value sentence, expected adoption blockers.
  3. 步驟 3 Draft a 30-day rollout plan: week 1 announce, week 2 train, week 3 use, week 4 retro.
  4. 步驟 4 Schedule your first office hours session and post it.

準備好開始了嗎?

計畫已經攤開,剩下的就是把第一步點開。

在 mouseover 開始挑戰

在 mouseover 中啟動挑戰;如果還沒安裝,請先 下載

看看其他 30 天挑戰 ← 回到所有挑戰