mirror of
https://github.com/shareAI-lab/analysis_claude_code.git
synced 2026-09-21 21:03:38 +08:00
95 lines
4.9 KiB
JSON
95 lines
4.9 KiB
JSON
{
|
|
"meta": { "title": "Learn Claude Code", "description": "Build a nano Claude Code-like agent from 0 to 1, one mechanism at a time" },
|
|
"nav": { "home": "Home", "timeline": "Timeline", "compare": "Compare", "layers": "Layers", "github": "GitHub" },
|
|
"home": { "hero_title": "Learn Claude Code", "hero_subtitle": "Build a nano Claude Code-like agent from 0 to 1, one mechanism at a time", "start": "Start Learning", "core_pattern": "The Core Pattern", "core_pattern_desc": "Every AI coding agent shares the same loop: call the model, execute tools, feed results back. The harness adds policy, permissions, memory, coordination, and lifecycle control around it.", "learning_path": "Learning Path", "learning_path_desc": "21 progressive sessions, from a simple loop to deterministic orchestration and goal closure", "layers_title": "Architectural Layers", "layers_desc": "Five orthogonal concerns that compose into a complete agent", "loc": "LOC", "learn_more": "Learn More", "versions_in_layer": "versions", "message_flow": "Message Growth", "message_flow_desc": "Watch the messages array grow as the agent loop executes" },
|
|
"version": { "loc": "lines of code", "tools": "tools", "new": "New", "prev": "Previous", "next": "Next", "view_source": "View Source", "view_diff": "View Diff", "design_decisions": "Design Decisions", "whats_new": "What's New", "tutorial": "Tutorial", "simulator": "Agent Loop Simulator", "execution_flow": "Execution Flow", "architecture": "Architecture", "concept_viz": "Concept Visualization", "alternatives": "Alternatives Considered", "tab_learn": "Learn", "tab_simulate": "Simulate", "tab_code": "Code", "tab_deep_dive": "Deep Dive" },
|
|
"sim": { "play": "Play", "pause": "Pause", "step": "Step", "reset": "Reset", "speed": "Speed", "step_of": "of" },
|
|
"timeline": { "title": "Learning Path", "subtitle": "s01 to s21: Progressive Agent Harness Design", "layer_legend": "Layer Legend", "loc_growth": "LOC Growth", "learn_more": "Learn More" },
|
|
"layers": {
|
|
"title": "Architectural Layers",
|
|
"subtitle": "Five orthogonal concerns that compose into a complete agent",
|
|
"tools": "What the agent CAN do. The foundation: tools give the model capabilities to interact with the world.",
|
|
"planning": "How work is organized. From simple todo lists to dependency-aware task boards shared across agents.",
|
|
"memory": "Keeping context within limits. Compression strategies that let agents work infinitely without losing coherence.",
|
|
"concurrency": "Non-blocking execution. Background threads and notification buses for parallel work.",
|
|
"collaboration": "Multi-agent coordination. Teams, messaging, and autonomous teammates that think for themselves."
|
|
},
|
|
"compare": {
|
|
"title": "Compare Versions",
|
|
"subtitle": "See what changed between any two versions",
|
|
"select_a": "Version A",
|
|
"select_b": "Version B",
|
|
"loc_delta": "LOC Delta",
|
|
"lines": "lines",
|
|
"new_tools_in_b": "New Tools in B",
|
|
"new_classes_in_b": "New Classes in B",
|
|
"new_functions_in_b": "New Functions in B",
|
|
"tool_comparison": "Tool Comparison",
|
|
"only_in": "Only in",
|
|
"shared": "Shared",
|
|
"none": "None",
|
|
"source_diff": "Source Code Diff",
|
|
"empty_hint": "Select two versions above to compare them.",
|
|
"architecture": "Architecture"
|
|
},
|
|
"diff": {
|
|
"new_classes": "New Classes",
|
|
"new_tools": "New Tools",
|
|
"new_functions": "New Functions",
|
|
"loc_delta": "LOC Delta"
|
|
},
|
|
"sessions": {
|
|
"s01": "The Agent Loop",
|
|
"s02": "Tool Use",
|
|
"s03": "Permission",
|
|
"s04": "Hooks",
|
|
"s05": "TodoWrite",
|
|
"s06": "Subagent",
|
|
"s07": "Skills",
|
|
"s08": "Context Compact",
|
|
"s09": "Memory",
|
|
"s10": "Context Assembly",
|
|
"s11": "Error Recovery",
|
|
"s12": "Task System",
|
|
"s13": "Background Tasks",
|
|
"s14": "Cron Scheduler",
|
|
"s15": "Agent Teams",
|
|
"s16": "Autonomous Agents",
|
|
"s17": "Worktree Isolation",
|
|
"s18": "MCP Tools",
|
|
"s19": "Comprehensive Agent",
|
|
"s20": "Workflow Runtime",
|
|
"s21": "Goal Loop"
|
|
},
|
|
"layer_labels": {
|
|
"tools": "Tools & Execution",
|
|
"planning": "Planning & Coordination",
|
|
"memory": "Memory Management",
|
|
"concurrency": "Concurrency",
|
|
"collaboration": "Multi-Agent Platform"
|
|
},
|
|
"viz": {
|
|
"s01": "The Agent While-Loop",
|
|
"s02": "Tool Dispatch Map",
|
|
"s03": "Permission Desk",
|
|
"s04": "Hook Workbench",
|
|
"s05": "TodoWrite Nag System",
|
|
"s06": "Subagent Context Isolation",
|
|
"s07": "On-Demand Skill Loading",
|
|
"s08": "Three-Layer Context Compression",
|
|
"s09": "Memory Library",
|
|
"s10": "Runtime Context Assembly",
|
|
"s11": "Error Recovery Paths",
|
|
"s12": "Task Board Dependencies",
|
|
"s13": "Background Task Lanes",
|
|
"s14": "Cron Scheduler",
|
|
"s15": "Agent Teams and Protocols",
|
|
"s16": "Autonomous Agent Cycle",
|
|
"s17": "Worktree Task Isolation",
|
|
"s18": "MCP Tool Bridge",
|
|
"s19": "Comprehensive Agent Turn",
|
|
"s20": "Workflow Runtime",
|
|
"s21": "Goal Completion Gate"
|
|
}
|
|
}
|