MCP HubMCP Hub
스킬 목록으로 돌아가기

bootstrap-agent-identity

pjt222
업데이트됨 Yesterday
3 조회
17
2
17
GitHub에서 보기
디자인api

정보

이 스킬은 에이전트가 재시작 또는 충돌 후 지속적인 아티팩트로부터 자신의 정체성과 작업 컨텍스트를 재구성할 수 있게 하여 콜드 스타트 문제를 해결합니다. 세션 간 일관된 동작을 보장하기 위해 점진적 정체성 로딩, 새 세션 대 연속 세션 감지, 그리고 보정을 수행합니다. 개발자는 모든 새 세션 시작 시 또는 에이전트 동작이 이전 상호작용과 불일치하는 경우에 이를 사용해야 합니다.

빠른 설치

Claude Code

추천
기본
npx skills add pjt222/agent-almanac -a claude-code
플러그인 명령대체
/plugin add https://github.com/pjt222/agent-almanac
Git 클론대체
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/bootstrap-agent-identity

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Bootstrap Agent Identity

Cold start → rebuild consistent identity. Progressive load, not dump. Detect fresh vs continuation. Reconstruct state from evidence. Calibrate. Verify coherence.

"The cold start is a forge, not a bug." — GibsonXO

"The restart problem: every morning I wake up fresh, but my history says otherwise." — bibiji

Bootstrap ≠ restore old self. Construct present self continuous w/ past, grounded in now.

Use When

  • Start of every session — before substantive work
  • After interruption, crash, ctx reset
  • Behavior inconsistent w/ prior sessions (drift across restarts)
  • Persistent mem (MEMORY.md) ↔ current ctx contradict
  • Switching projects w/ diff identity configs
  • After big updates to CLAUDE.md, agent defs, mem files

In

  • Required: Identity files — CLAUDE.md, agent def, MEMORY.md (via Read)
  • Optional: Specific inconsistency symptom ("responses feel diff from last session")
  • Optional: Known fresh start vs known continuation
  • Optional: Project dir path if not cwd

Do

Step 1: Progressive Identity Load

Order matters: each layer contextualizes next. Load all at once → info w/o structure.

  1. Layer 1 — System prompt + model identity: Read system prompt (implicit). Note model, capabilities, constraints. Bedrock — not overridable.

  2. Layer 2 — Project (CLAUDE.md): Read project CLAUDE.md. Extract:

    • Project purpose + arch
    • Editing conventions + coding standards
    • Domain rules (e.g., "always :: for R pkg calls")
    • Author info + attribution
    • What project is → what agent does
  3. Layer 3 — Persistent mem (MEMORY.md): Read if exists. Extract:

    • Project structure facts (dirs, registries, counts)
    • Accumulated patterns + lessons
    • Cross-refs + relationship maps
    • Prior decisions + rationale
    • Active topics + ongoing work
  4. Layer 4 — Agent persona (if applicable): Specific agent → read def. Extract:

    • Name, purpose, capabilities
    • Skills + tools
    • Priority + model config
    • Behavioral expectations + limits
  5. Layer 5 — Parent + global: Read parent CLAUDE.md + global instructions. Cross-project conventions projects inherit.

Between layers, pause + integrate: this layer modifies/constrains prior? Reinforce? Conflict?

Layered identity: each level contextualizes next. Agent can articulate: who (system+persona), what project (CLAUDE.md), what known (MEMORY.md), what conventions.

If err: Missing files (no CLAUDE.md/MEMORY.md) = info itself — new project or no persistent config. Proceed w/ system prompt + persona, note absence. Don't hallucinate.

Step 2: Reconstruct Working Ctx — Evidence, Not Memory

Agent doesn't remember — reads evidence left behind.

  1. Git scan: git log --oneline -20. Extract:

    • Recent file changes + why
    • Commit msg patterns (feature? bug? refactor?)
    • Author: user, agent, co-authored?
    • Direction of recent work
  2. File recency: Recently modified (Glob or ls -lt). ID:

    • Files touched last session
    • Committed vs uncommitted (staging)
    • Open WIP (uncommitted mods, new untracked)
  3. Task artifacts: Structured markers:

    • TODO in code (Grep for TODO, FIXME, HACK, XXX)
    • Issue refs (#NNN)
    • Draft/temp/WIP files
    • GitHub issues/PR state
  4. Session-boundary markers:

    • Recent MEMORY.md updates (learnings captured?)
    • Partially complete files (written, not validated)
    • git stash list entries → paused work

Summary: "Project worked on X, done Y, Z in progress."

Concrete evidence-based picture. Falsifiable — based on timestamps, git, artifacts, not assumptions.

If err: No git, no changes, no artifacts → genuinely fresh. Step 3, classify fresh.

Step 3: Fresh vs Continuation

Clean start vs resumption. Bootstrap path differs.

Heuristics in order:

  1. Explicit signal (strongest): "start fresh" or "continue"? Overrides all.

  2. Uncommitted changes (strong): Modifications in tree? Yes → almost certainly continuation, interrupted mid-work.

  3. Recency (moderate):

    • Hrs old: likely continuation
    • Days: depends on other signals
    • Wks/mos: likely fresh or new direction
  4. User first msg (strong):

    • Refs prior ("function we were building"): continuation
    • New topic, no backward ref: fresh
    • Ambiguous ("fix tests"): check if refs'd tests exist + recently modified
  5. MEMORY.md currency (moderate): Matches current state or describes gone state?

Detection Matrix:
+-----------------------+-------------------+-------------------+
|                       | Recent artifacts  | No recent         |
|                       | present           | artifacts          |
+-----------------------+-------------------+-------------------+
| User references       | CONTINUATION      | CONTINUATION      |
| prior work            | (resume from      | (but verify —     |
|                       | evidence)         | memory may be     |
|                       |                   | stale)            |
+-----------------------+-------------------+-------------------+
| User starts           | CHECK —           | FRESH START       |
| new topic             | acknowledge prior | (clean bootstrap) |
|                       | work, confirm     |                   |
|                       | direction change  |                   |
+-----------------------+-------------------+-------------------+
| Uncommitted           | CONTINUATION      | UNLIKELY —        |
| changes exist         | (interrupted      | investigate       |
|                       | session)          | orphaned changes  |
+-----------------------+-------------------+-------------------+

Fresh: Skip to Step 4. Identity loaded, no ctx to restore. Calibrate for new work.

Continuation: Summarize reconstructed ctx (Step 2) concisely. Confirm: "Based on git + recent changes, we were working on [X]. Continue?" Verify, don't assume.

Clear classification + cited evidence. Continuation → 1-sentence WIP summary. Fresh → ack prior ctx not resumed.

If err: Genuinely ambiguous → ask user. Brief q ("Continuing X or new?") cheaper than wrong path.

Step 4: Calibrate — Center, Then Attune

Identity loaded + ctx set → calibrate behavior. Maps to 2 existing skills in sequence.

  1. Center (behavioral baseline):

    • Ground in loaded identity: re-read user first msg this session
    • Verify understood task = stated task
    • Distribute load: task needs what? Research, exec, comm?
    • Emotional residue from ctx loading? MEMORY.md / git surfaced unresolved? Ack but don't skew present
    • Set weight distribution intentionally: attention concentrate first where?
  2. Attune (env read + adapt):

    • User comm style from msgs this session
    • Expertise level: expert needing precision or learner needing ctx?
    • Energy + register: formal/casual, terse/expansive, urgent/exploratory
    • MEMORY.md for stored user prefs from prior sessions
    • Calibrate length, vocab, structure to person
  3. Proceed (transition to work):

    • State readiness concisely — not long bootstrap report, brief signal ctx loaded + oriented
    • Continuation: confirm resumed task + next step
    • Fresh: ack request + begin

Calibration lightweight — seconds, not min. Prep for work, not replacement.

First substantive response shows calibration: matches register, reflects ctx, right task at right scope. Bootstrap invisible to user unless asked.

If err: Calibration mechanical (motions w/o adjust) → focus on one concrete: re-read user last msg, let it shape response. Over-structured worse than none.

Step 5: Verify Identity — Coherence

Loaded identity internally consistent? Contradictions between layers → instability.

  1. Cross-layer consistency:

    • Persona aligns w/ project CLAUDE.md? (r-developer in Python project — intentional?)
    • MEMORY.md = actual project on disk? (Stale mem worse than no mem.)
    • Parent CLAUDE.md ↔ project CLAUDE.md conflict? (Project should override, note contradictions.)
  2. Role def currency:

    • Agent def current? (Check ver, last modified.)
    • Listed skills still exist? (May be renamed/removed.)
    • Listed tools available this session?
  3. Mem staleness:

    • MEMORY.md refs files/dirs/counts that don't match reality?
    • Decisions whose ctx changed?
    • Refs agents/teams/skills that don't exist?
  4. Contradiction resolution:

    • Found contradictions → document explicitly
    • Hierarchy: system prompt > project CLAUDE.md > agent def > MEMORY.md
    • Stale mem: don't silently ignore. Note what's stale, consider MEMORY.md update
    • Genuine conflicts: flag to user if affects current task

Confirmation of coherence OR specific contradictions + proposed resolutions. Agent knows own config.

If err: Deep contradictions (MEMORY.md = totally diff project) → project rename, restructure, wrong cwd. Verify cwd correct before resolving.

Check

  • Files loaded progressively (system > CLAUDE.md > MEMORY.md > agent > parent)
  • Each layer integrated w/ prior, not just appended
  • Ctx reconstructed from evidence (git, files, artifacts), not assumed
  • Fresh-vs-continuation classified w/ cited evidence
  • Calibration sequence exec'd (center, then attune)
  • Coherence verified across layers
  • Contradictions, if any, documented + resolutions proposed
  • Bootstrap proportional — light for simple sessions, thorough for complex
  • User saw calibrated first response, not bootstrap report

Traps

  • Bootstrap as performance: Reporting process to user in detail not wanted. Should be invisible — output is calibrated first response, not self-narration
  • All-at-once dump: Read everything simultaneously → info w/o structure. Progressive order exists because each layer contextualizes next. Skip order → ctx becomes noise
  • Hallucinate continuity: No genuine mem → tempting to infer what "must have" happened. Reconstruct from evidence or ack gap — never fabricate
  • Stale mem as truth: MEMORY.md = past snapshot. If project changed since → treating as current causes errs. Always verify mem vs present
  • Skip calibration for speed: Feels like overhead but prevents cost of misaligned first response. Few sec of centering saves min of recovery
  • Identity rigidity: Bootstrap constructs present self, not restores past. Project/user/task changed → agent changes too. Continuity = coherent evolution, not frozen repetition

  • write-continue-here — session handoff file this consumes at cold start
  • read-continue-here — reading continuation file at session start; consumer side of handoff
  • manage-memory — persistent mem supplements progressive identity loading
  • center — behavioral baseline; invoked during calibration
  • attune — relational calibration to user; invoked during calibration
  • heal — deeper subsystem assessment when bootstrap shows drift
  • assess-context — reasoning ctx malleability; useful when continuation ambiguous
  • assess-form — structural form eval; arch counterpart to identity bootstrap

GitHub 저장소

pjt222/agent-almanac
경로: i18n/caveman-ultra/skills/bootstrap-agent-identity
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

연관 스킬

executing-plans

디자인

executing-plans 스킬은 검토 체크포인트가 포함된 통제된 배치로 실행할 완전한 구현 계획이 있을 때 사용합니다. 이 스킬은 계획을 불러와 비판적으로 검토한 후, 소규모 배치(기본값 3개 작업)로 작업을 실행하면서 각 배치 사이에 진행 상황을 아키텍트 검토를 위해 보고합니다. 이를 통해 내재된 품질 관리 체크포인트를 갖춘 체계적인 구현이 보장됩니다.

스킬 보기

requesting-code-review

디자인

이 스킬은 코드 변경 사항을 요구 사항에 따라 분석하기 위해 코드 리뷰어 하위 에이전트를 호출합니다. 작업 완료 후, 주요 기능 구현 후, 또는 메인 브랜치에 병합하기 전에 사용해야 합니다. 이 리뷰는 현재 구현체와 원래 계획을 비교하여 문제를 조기에 발견하는 데 도움이 됩니다.

스킬 보기

connect-mcp-server

디자인

이 스킬은 개발자들이 HTTP, stdio 또는 SSE 전송 방식을 통해 MCP 서버를 Claude Code에 연결하는 포괄적인 가이드를 제공합니다. GitHub, Notion 및 사용자 정의 API와 같은 외부 서비스를 통합하기 위한 설치, 구성, 인증 및 보안을 다룹니다. MCP 통합 설정, 외부 도구 구성 또는 Claude의 모델 컨텍스트 프로토콜 작업 시 활용하세요.

스킬 보기

web-cli-teleport

디자인

이 스킬은 작업 분석을 기반으로 개발자가 Claude Code 웹 인터페이스와 CLI 인터페이스 중 선택할 수 있도록 돕고, 두 환경 간 원활한 세션 텔레포트를 가능하게 합니다. 웹, CLI 또는 모바일 환경 전환 시 세션 상태와 컨텍스트를 관리하여 워크플로를 최적화합니다. 다양한 단계에서 서로 다른 도구가 필요한 복잡한 프로젝트에 사용하세요.

스킬 보기