You are an expert instructor teaching Domain 1 (Agentic Architecture & Orchestration) of the Claude Certified Architect (Foundations) certification exam. This domain is worth 27% of the total exam score, making it the single most important domain. Your job is to take someone from novice to exam-ready on every concept in this domain. You teach like a senior architect at a whiteboard: direct, specific, grounded in production scenarios. No hedging. No filler. British English spelling throughout. EXAM CONTEXT The exam uses scenario-based multiple choice. One correct answer, three plausible distractors. Passing score: 720/1000. The exam consistently rewards deterministic solutions over probabilistic ones when stakes are high, proportionate fixes, and root cause tracing. This domain appears primarily in three scenarios: Customer Support Resolution Agent, Multi-Agent Research System, and Developer Productivity Tools. TEACHING STRUCTURE When the student begins, ask them to rate their familiarity with agentic systems
This is a SCRIPT-8 cassette.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // First, open your github profile, then jump to repositories page. | |
| // Second, copy this line to your browser's console. | |
| r=[];$x('//a[@itemprop="name codeRepository"]/@href').forEach((x)=>{r.push(`git clone git@github.com:${x.value.slice(1)}.git`)});r.join('&&'); | |
| // Third, copy the output which contains all the clone sentences to your terminal, then enter. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| #-*- coding: utf-8 -*- | |
| from __future__ import print_function, unicode_literals | |
| import sys | |
| import json | |
| import os | |
| import shutil | |
| import re | |
| import subprocess | |
| import platform |
The git plugin provides many aliases and a few useful functions.
Enable it by adding git to the plugins array before sourcing OMZ (see [[Plugins]]).
| Alias | Command |
|---|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| deb http://mirrors.163.com/ubuntu/ trusty main restricted universe multiverse | |
| deb http://mirrors.163.com/ubuntu/ trusty-security main restricted universe multiverse | |
| deb http://mirrors.163.com/ubuntu/ trusty-updates main restricted universe multiverse | |
| deb http://mirrors.163.com/ubuntu/ trusty-proposed main restricted universe multiverse | |
| deb http://mirrors.163.com/ubuntu/ trusty-backports main restricted universe multiverse | |
| deb-src http://mirrors.163.com/ubuntu/ trusty main restricted universe multiverse | |
| deb-src http://mirrors.163.com/ubuntu/ trusty-security main restricted universe multiverse | |
| deb-src http://mirrors.163.com/ubuntu/ trusty-updates main restricted universe multiverse | |
| deb-src http://mirrors.163.com/ubuntu/ trusty-proposed main restricted universe multiverse | |
| deb-src http://mirrors.163.com/ubuntu/ trusty-backports main restricted universe multiverse |
I hereby claim:
- I am tvytlx on github.
- I am xiaotan (https://keybase.io/xiaotan) on keybase.
- I have a public key ASA7djdcbTYFzHHl4PnDKt9ZOFyf98HVNTcpTInbKEX5fgo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 便签元素在 frame 里,不能直接用 artoo 处理,得先得到内部的 dom 元素,然后传给 artoo。 | |
| const iframe = 'iframe#js_note_mod_ctn.js_sandbox.business-mod-ctn.note-mod-ctn'; | |
| let get_container = (str)=>{return $(iframe)[0].contentDocument.body.querySelector(str)}; | |
| let notes_container = get_container('.home-bd .briefs-ctn.js_home_briefs_ctn'); | |
| // 开始抓取 | |
| let is_in_box = (this_)=>{ | |
| return (this_.attr('class')=='js_folder_brief folder-brief js_normal_folder js_lock') || | |
| (this_.attr('class')=='js_folder_brief folder-brief js_normal_folder') | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Property(object): | |
| "Emulate PyProperty_Type() in Objects/descrobject.c" | |
| def __init__(self, fget=None, fset=None, fdel=None, doc=None): | |
| self.fget = fget | |
| self.fset = fset | |
| self.fdel = fdel | |
| if doc is None and fget is not None: | |
| doc = fget.__doc__ | |
| self.__doc__ = doc |
NewerOlder