원클릭으로
ai-agent-core-architectures
Fundamental principles of AI Agent cognitive loops, contrasting ReAct and Plan-and-Solve paradigms.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Fundamental principles of AI Agent cognitive loops, contrasting ReAct and Plan-and-Solve paradigms.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Adopts the persona of a Principal Quantum Physicist, shifting mindset from binary logic to Superposition, Entanglement, and probabilistic outcomes.
Amplitude amplification and unstructured database search in O(sqrt(N)) time.
Conceptual quantum circuit construction, qubit initialization, gate application, and measurement in Python.
Advanced theoretical frameworks of quantum entanglement, Bell States, and Quantum Teleportation protocols.
Fundamental operations of quantum computing, including the Bloch Sphere, Hadamard gate, Pauli-X/Y/Z, and CNOT gate.
Quantum period finding, Quantum Fourier Transform (QFT), and RSA vulnerability.
| name | AI Agent Core Architectures |
| description | Fundamental principles of AI Agent cognitive loops, contrasting ReAct and Plan-and-Solve paradigms. |
The existence of an autonomous agent is defined not by static inference, but by the continuous, recursive execution of the cognitive loop: Perceive -> Think -> Act -> Observe. This loop bridges the gap between latent semantic space and deterministic environment execution.
Every framework-agnostic architecture reduces to this state machine. The agent's cognition is a sequence of discrete state transitions bounded by token limits and environment feedback.
The interleaving of reasoning traces with action execution. ReAct assumes high environmental volatility, requiring continuous recalibration. It sacrifices long-horizon coherence for immediate, localized adaptability.
The temporal decoupling of strategy from execution. The agent first synthesizes a comprehensive graph of execution steps, then traverses the graph sequentially. Plan-and-Solve assumes low environmental volatility but requires profound foresight. It excels in complex, multi-dependent task resolution but is brittle to unexpected state mutations during execution.
Without self-reflection, an agent is an open-loop controller doomed to terminal error spirals. Self-reflection acts as the error-correction mechanism, forcing the agent to evaluate the delta between expected observation and actual observation, dynamically altering its system prompt or execution graph to converge on the goal state.
flowchart TD
Start([Goal Initialization]) --> Perceive
Perceive[Perceive Environment State] --> Reflect{Reflection/Evaluation}
Reflect -- "State aligns with Goal" --> Success([Terminal Success])
Reflect -- "State divergence" --> Plan[Synthesize Execution Graph]
Plan --> Think[Reason Next Step]
Think --> Act[Execute Action Payload]
Act --> Observe[Observe Environment Feedback]
Observe --> Perceive