Skip to content

🌐 日本語

Glossary

LLM Structural Problems

TermDefinition
Context RotDegradation of output quality as input token count increases
Lost in the MiddleReduction in attention to information in the middle of context
Priority SaturationDecrease in compliance with individual instructions as simultaneous instruction count increases
HallucinationGeneration of false content with confidence
SycophancyTendency to agree with users at the expense of accuracy
Knowledge BoundaryInability of LLMs to recognize the limits of their own knowledge
Prompt SensitivityGeneration of different outputs from semantically equivalent prompts
Instruction DecayDecrease in compliance with initial instructions during long conversations

Claude Code Features

TermDefinition
CLAUDE.mdPersistent context file for documenting project knowledge and conventions
.claude/rules/Rule files conditionally injected via glob patterns
SkillsTask-specific procedures deployed on demand
AgentsSub-agents executed in independent context windows
HooksContext-external processing executed at lifecycle events
MCPModel Context Protocol. Connection to external tools and services
settings.jsonConfiguration file for Claude Code runtime (not injected to LLM)
/compactCommand to summarize and compress conversation history
/clearCommand to reset a session
Tool SearchMechanism for lazy-loading MCP tool definitions (automatically enabled when context exceeds 10%)

Technical Terms

TermDefinition
Context WindowMaximum range of input an LLM can process at once (Claude 4.6 series: 1M tokens)
TokenSmallest unit processed by LLM. In Japanese, approximately 1-2 tokens per character
TransformerFoundational architecture of modern LLMs. Features self-attention mechanisms
RLHFReinforcement Learning from Human Feedback
RoPERotary Position Embedding. Method for encoding positional information
Cross-Model QAQuality assurance technique for reviewing outputs across different models
U-CurveAttention distribution pattern in context. High at beginning and end, low in middle

Released under the CC BY 4.0 License.