bdi-mental-states
Modelado cognitivo de agentes basado en Creencias (Beliefs), Deseos (Desires) e Intenciones (Intentions) usando ontologías RDF/Turtle.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Modelado cognitivo de agentes basado en Creencias (Beliefs), Deseos (Desires) e Intenciones (Intentions) usando ontologías RDF/Turtle.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Master of Purposeful Motion & Micro-interactions. Expert in natural easing, GPU-accelerated animations, and Framer Motion for high-end interfaces.
Senior Context Architect & Memory Engineer. Expert in Automated Context Packing, Symbol Indexing, and Agent Rehydration for 2026.
Senior Design System Architect & Token Engineer for 2026. Specialized in layered design tokens, Tailwind 4 CSS-first themes, and headless UI orchestration using Radix. Expert in building multi-brand, multi-theme systems with high architectural integrity, automated documentation-as-code, and AI-driven drift detection.
Primary Instruction Protocol for Senior Engineering Agents. Expert in Cognitive Architectures, Memory Systems, and 2026 Context Engineering (Updated for v0.27.0).
Master of Interface Resilience & Production Edge Cases. Expert in error handling, internationalization (i18n), and extreme data constraints.
Supreme Code Quality Gatekeeper. Expert in Resolving the AI Verification Gap, Quality Metrics, and Elite Coding Standards for 2026.
| name | bdi-mental-states |
| description | Modelado cognitivo de agentes basado en Creencias (Beliefs), Deseos (Desires) e Intenciones (Intentions) usando ontologías RDF/Turtle. |
Esta habilidad permite modelar el estado interno de agentes autónomos utilizando el framework BDI (Belief-Desire-Intention). Utiliza representaciones formales (RDF/Turtle) para asegurar que el agente actúe con coherencia lógica y propósito.
Mental Model: El agente no es reactivo, es deliberativo. Sus acciones (Intenciones) deben estar justificadas por sus objetivos (Deseos) y su percepción del mundo (Creencias).
Representan lo que el agente "sabe" o "percibe" sobre el mundo.
agent_a believes sky_is_blue).Representan los estados finales que el agente "querría" alcanzar.
agent_a desires target_location_reached).Representan los deseos a los que el agente se ha "comprometido".
Gemini 3 es excelente generando Turtle RDF. Úsalo para mantener un estado mental rígido.
@prefix bdi: <https://w3id.org/fossr/ontology/bdi/> .
@prefix ex: <http://example.org/> .
ex:AgentG1 a bdi:Agent ;
bdi:hasBelief ex:ServerIsDown ;
bdi:hasDesire ex:ServerIsUp ;
bdi:hasIntention ex:RebootServer .
ex:RebootServer bdi:fulfils ex:ServerIsUp ;
bdi:isSupportedBy ex:ServerIsDown .
context-fundamentals: Base para las descripciones de estados mentales.multi-agent-patterns: Coordinación de intenciones entre varios agentes.project-development: Aplicación de BDI a ciclos de vida de software.references/bdi-ontology-core.md: Definición formal de clases y propiedades.references/rdf-examples.md: Librería de ejemplos en Turtle para diversos escenarios.references/sparql-competency.md: Consultas para verificar la integridad mental.references/framework-integration.md: Conexión con JADE/Python/LAG.