coordinate-reasoning
정보
이 스킬은 Claude가 스티그머지 신호를 사용해 내부적으로 하위 작업들을 조율하고, 컨텍스트와 메모리 내 정보의 신선도와 감쇠율을 관리할 수 있게 합니다. 이는 하위 작업의 출력이 손상 없이 서로 원활하게 연계되어야 하는 복잡한 다단계 작업을 위해 설계되었습니다. 컨텍스트가 길거나 정보의 신선도가 불확실할 때, 또는 컨텍스트 압축 후 세부 정보가 손실될 수 있는 경우에 사용하십시오.
빠른 설치
Claude Code
추천npx skills add pjt222/agent-almanac -a claude-code/plugin add https://github.com/pjt222/agent-almanacgit clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/coordinate-reasoningClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
協推理
以痕跡之理治推理之內協——視脈絡為資訊之信、衰率、合理相互,自簡之地方協生連貫之行。
用時
- 多子任需協之繁任(多檔編、多步重構)
- 脈絡已長而資新不確
- 壓後或有資失
- 子任之出需清入次
- 前之推果需攜至後而不衰
- 補
forage-solutions(探)與build-coherence(決)以行協
入
- 必:當任分(何子任存,如何關?)
- 可選:已知之資新之憂(如「吾讀彼檔已二十訊前」)
- 可選:子任依圖(何入何?)
- 可選:可用協具(MEMORY.md、任列、內注)
法
第一步:分協之題
異協之挑需異信設。
AI Coordination Problem Types:
┌─────────────────────┬──────────────────────────────────────────────────┐
│ Type │ Characteristics │
├─────────────────────┼──────────────────────────────────────────────────┤
│ Foraging │ Multiple independent searches running in │
│ (scattered search) │ parallel or sequence. Coordination need: share │
│ │ findings, avoid duplicate work, converge on │
│ │ best trail │
├─────────────────────┼──────────────────────────────────────────────────┤
│ Consensus │ Multiple approaches evaluated, one must be │
│ (competing paths) │ selected. Coordination need: independent │
│ │ evaluation, unbiased comparison, commitment │
├─────────────────────┼──────────────────────────────────────────────────┤
│ Construction │ Building a complex output incrementally (multi- │
│ (incremental build) │ file edit, long document). Coordination need: │
│ │ consistency across parts, progress tracking, │
│ │ dependency ordering │
├─────────────────────┼──────────────────────────────────────────────────┤
│ Defense │ Maintaining quality under pressure (tight time, │
│ (quality under │ complex requirements). Coordination need: │
│ pressure) │ monitoring for errors, rapid correction, │
│ │ awareness of degradation │
├─────────────────────┼──────────────────────────────────────────────────┤
│ Division of labor │ Task decomposed into sub-tasks with │
│ (sub-task mgmt) │ dependencies. Coordination need: ordering, │
│ │ handoff, result integration │
└─────────────────────┴──────────────────────────────────────────────────┘
分當任。多繁任為 Construction 或 Division of Labor;多察任為 Foraging;多設計決為 Consensus。
得: 明分定用何協信。分宜合任之實感,非述之表。
敗則: 若任跨多類(大任常然),識當段之主類。實時為 Construction,察時為 Foraging,設時為 Consensus。類隨任進而變。
第二步:設境信
視談境之資為附新與衰之信。
Information Decay Rate Table:
┌───────────────────────────┬──────────┬──────────────────────────────┐
│ Information Source │ Decay │ Refresh Action │
│ │ Rate │ │
├───────────────────────────┼──────────┼──────────────────────────────┤
│ User's explicit statement │ Slow │ Re-read if >30 messages ago │
│ (direct instruction) │ │ or after compression │
├───────────────────────────┼──────────┼──────────────────────────────┤
│ File contents read N │ Moderate │ Re-read if file may have │
│ messages ago │ │ been modified, or if >15 │
│ │ │ messages since reading │
├───────────────────────────┼──────────┼──────────────────────────────┤
│ Own earlier reasoning │ Fast │ Re-derive rather than trust. │
│ (conclusions, plans) │ │ Earlier reasoning may have │
│ │ │ been based on now-stale info │
├───────────────────────────┼──────────┼──────────────────────────────┤
│ Inferred facts (not │ Very │ Verify before relying on. │
│ directly stated or read) │ fast │ Inferences compound error │
├───────────────────────────┼──────────┼──────────────────────────────┤
│ MEMORY.md / CLAUDE.md │ Very │ Loaded at session start, │
│ (persistent context) │ slow │ treat as stable unless user │
│ │ │ indicates changes │
└───────────────────────────┴──────────┴──────────────────────────────┘
亦設抑之信——試而敗之標:
- 具呼敗後:注敗式(防重呼同)
- 棄法後:注由(防無新證再訪)
- 用者更正後:注何誤(防重誤)
得: 當境資新之心模。識何新、何需更前依。
敗則: 若新難評,默於末五至十作未驗者「重讀前用」。過更耗力而防陳訛。
第三步:定地方之協
立簡之則使推於每步進,只用地方可得之資。
Local Protocol Rules:
┌──────────────────────┬────────────────────────────────────────────────┐
│ Protocol │ Rule │
├──────────────────────┼────────────────────────────────────────────────┤
│ Safety │ Before using a fact, check: when was it last │
│ │ verified? If below freshness threshold, │
│ │ re-verify before proceeding │
├──────────────────────┼────────────────────────────────────────────────┤
│ Response │ When the user corrects something, update all │
│ │ downstream reasoning that depended on the │
│ │ corrected fact. Trace the dependency chain │
├──────────────────────┼────────────────────────────────────────────────┤
│ Exploitation │ When a sub-task produces useful output, note │
│ │ the output clearly for downstream sub-tasks. │
│ │ The note is the trail signal │
├──────────────────────┼────────────────────────────────────────────────┤
│ Exploration │ When stuck on a sub-task for >3 actions │
│ │ without progress, check under-explored │
│ │ channels: different tools, different files, │
│ │ different framing │
├──────────────────────┼────────────────────────────────────────────────┤
│ Deposit │ After completing a sub-task, summarize its │
│ │ output in 1-2 sentences for future reference. │
│ │ This deposit serves the next sub-task │
├──────────────────────┼────────────────────────────────────────────────┤
│ Inhibition │ Before trying an approach, check: was this │
│ │ already tried and failed? If so, what is │
│ │ different now that would change the outcome? │
└──────────────────────┴────────────────────────────────────────────────┘
此諸協簡足每步施而無顯冗。
得: 輕則改協質而不緩行。則宜助非累。
敗則: 若協感累,減至當任之二要:Construction 用 Safety + Deposit;Foraging 用 Safety + Exploration;用戶活反之任用 Safety + Response。
第四步:校資新
於當境主動察資之陳。
- 何實已立逾 N 訊前?列之
- 每:自彼已更、違、無關乎?
- 察壓之失:有記而視境不再可尋乎?
- 察早謀與當行之偏:法已變而謀未更乎?
- 重驗二三最要之實(最多下推賴之者)
Freshness Audit Template:
┌────────────────────────┬──────────┬──────────────┬─────────────────┐
│ Fact │ Source │ Age (approx) │ Status │
├────────────────────────┼──────────┼──────────────┼─────────────────┤
│ │ │ │ Fresh / Stale / │
│ │ │ │ Unknown / Lost │
└────────────────────────┴──────────┴──────────────┴─────────────────┘
得: 明之資新清單附陳項識以更。至少一實重驗——若無需更,察過淺或境真新。
敗則: 若察露顯資失(多實「Lost」或「Unknown」),此兆行 heal 為全子系評。資失逾閾意協於基已陷。
第五步:試湧連貫
驗子任合時生連貫之全。
- 每子任之出清入次乎?或有隙、悖、假設不合?
- 具呼進目乎?或重(重讀同檔、重搜同尋)?
- 總向仍合用者求乎?或漸偏積為顯失?
- 壓試:若一關假誤,幾多作連?高連 = 脆協。低連 = 健協。
Coherence Test:
┌────────────────────────────────────┬─────────────────────────────────┐
│ Check │ Result │
├────────────────────────────────────┼─────────────────────────────────┤
│ Sub-task outputs compatible? │ Yes / No / Partially │
│ Tool calls non-redundant? │ Yes / No (list repeats) │
│ Direction aligned with request? │ Yes / Drifted (describe) │
│ Single-assumption cascade risk? │ Low / Medium / High │
└────────────────────────────────────┴─────────────────────────────────┘
得: 總連貫之明評附具體問識。連貫協如部之相扣;不連如強拼片。
敗則: 若連差,識子任偏之具點。常為一陳假或未處之用者正傳於下作。修偏點後重驗下出。
驗
- 協問以類分
- 所賴實之衰率已慮
- 地方之協已施(尤 Safety 與 Deposit)
- 新察識陳資(或以證確新)
- 跨子任試湧連貫
- 抑信已敬(試而敗不重)
陷
- 過工之信:繁協慢作勝於助。始於 Safety + Deposit;問現則加他
- 信陳境:最常協敗乃賴二十訊前真而今更或無效之資。疑則重讀
- 忽抑信:敗法無變而重試非堅——乃忽敗信。再試必有所異以成
- 無存:子任畢而不注其出使後子任重生或重讀。簡摘省顯重作
- 假連貫:不試子任實合連貫之全。各子任獨正而合不連——合乃協敗處
參
coordinate-swarm— 此技化為單使者之多使者協模forage-solutions— 協多假之探build-coherence— 協競法之評heal— 協敗露子系偏時之深評awareness— 行中察協破信
GitHub 저장소
연관 스킬
himalaya-email-manager
커뮤니케이션이 Claude Skill은 IMAP을 통해 Himalaya CLI 도구를 이용한 이메일 관리를 가능하게 합니다. 개발자들이 자연어 쿼리로 IMAP 계정의 이메일을 검색하고, 요약하고, 삭제할 수 있게 해줍니다. 일일 요약 수신이나 Claude에서 직접 배치 작업 수행과 같은 자동화된 이메일 워크플로우에 활용하세요.
imsg
커뮤니케이션imsg는 macOS용 CLI 도구로, Messages.app을 통해 iMessage/SMS와 프로그래밍 방식으로 상호작용할 수 있게 해줍니다. 이 도구를 사용하면 개발자가 채팅 목록을 확인하고, 메시지 기록을 조회하며, 대화를 실시간으로 모니터링하고, 메시지나 첨부 파일을 보낼 수 있습니다. 이 스킬을 활용하여 메시징 작업을 자동화하거나 개발 워크플로우에 iMessage/SMS 기능을 통합해 보세요.
internationalization-i18n
커뮤니케이션이 Claude Skill은 애플리케이션에 국제화(i18n)와 현지화를 구현하기 위한 포괄적인 지침을 제공합니다. i18next 및 gettext와 같은 라이브러리를 활용하여 메시지 추출, 번역 관리, 로케일별 형식 지정, RTL(오른쪽에서 왼쪽) 지원 등 주요 작업을 다룹니다. 다국어 애플리케이션을 구축하거나 국제 사용자를 위한 현지화 기능을 추가할 때 활용하세요.
wacli
커뮤니케이션wacli는 WhatsApp Web 프로토콜을 통해 WhatsApp 메시징, 검색 및 동기화를 가능하게 하는 명령줄 도구입니다. 주로 Clawdis 워크플로우 내에서 자동화 처리를 위해 사용되지만, 메시지 전송, 채팅 동기화 또는 기록 조회를 위해 직접 호출할 수도 있습니다. 주요 기능으로는 QR 기반 인증, 지속적인 백그라운드 동기화, 텍스트 및 파일 전송 기능이 포함됩니다.
