Get Started
Playbooks: Agent Integration
This document provides step-by-step playbooks for integrating AgenticCognition into agent workflows. Each playbook includes setup instructions and usage patterns.
This document provides step-by-step playbooks for integrating AgenticCognition into agent workflows. Each playbook includes setup instructions and usage patterns.
Playbook 1: Personal Assistant Agent
Connect cognition to a personal assistant to provide responses calibrated to the user's belief system, decision patterns, and growth trajectory.
Setup:
- Install AgenticCognition and configure the MCP server for your client
- Create a living user model:
acog model create - Add initial beliefs based on onboarding conversation
Usage pattern:
- On each interaction, call
cognition_model_heartbeatwith the conversation topic - Before giving advice, call
cognition_predictto check alignment with user values - Periodically call
cognition_model_portraitto refresh the assistant's understanding - When the user faces a choice, call
cognition_simulateto evaluate options
Playbook 2: Coaching Agent
Use shadow psychology and drift tracking to build a coaching agent that surfaces blindspots, tracks growth over time, and provides personalized guidance based on self-concept topology.
Setup:
- Create a dedicated coaching model with
acog model create --name coaching - Add beliefs across multiple domains: values, relationships, work, growth
- Build initial belief graph with entanglement links
Usage pattern:
- Call
cognition_shadow_mapmonthly to check for new projections or blindspots - Use
cognition_drift_trackto show the user how their values have shifted - Call
cognition_self_topologyto identify defended regions that may limit growth - Present shadow insights tentatively, giving the user agency over engagement
- Track growth rings to celebrate progress over time
Playbook 3: Decision Support Agent
Combine decision simulation with belief graph analysis to help users make better decisions.
Setup:
- Ensure the model has beliefs in the relevant decision domain
- Build entanglement links between related beliefs (support, tension, opposition)
- Establish keystone beliefs that anchor the domain
Usage pattern:
- When the user presents a decision, call
cognition_simulatewith the scenario and options - Display per-option alignment scores showing how each choice relates to core values
- Call
cognition_belief_graphto visualize which beliefs support or oppose each option - Use
cognition_pattern_fingerprintto show the user their decision-making tendencies - After the decision is made, record the outcome to refine future predictions
Playbook 4: Multi-Agent Ecosystem
In a multi-agent setup, AgenticCognition serves as the shared understanding layer.
Setup:
- Create a single model that all agents share via the same
.acogfile - Configure each agent's MCP server to point to the same storage directory
- Use file locking to prevent concurrent write conflicts
Usage pattern:
- Each agent calls
cognition_model_heartbeatto record its interactions - Agents call
cognition_predictbefore making decisions on behalf of the user - The coordination agent calls
cognition_model_vitalsto monitor model health - All agents benefit from the accumulated understanding of every other agent
- Use
cognition_soul_reflectas a shared context briefing for new agents
Playbook 5: Team Context Agent
Use per-project .acog files to maintain separate user models for different work contexts.
Setup:
- Set
ACOG_STORAGEto a project-local directory:export ACOG_STORAGE=./.acog - Create a project-specific model:
acog model create --name "project-x" - Add beliefs relevant to the project context
Usage pattern:
- The agent automatically loads the correct model based on the active project directory
- Work-domain beliefs are kept separate from personal beliefs
- When switching projects, the agent's understanding switches with it
- Use
cognition_drift_trackto monitor how the user's relationship with a project evolves - Archive completed project models for future reference