Session lifecycle
Create and supervise an execution session with objective scope, environment rules, model assignments, and trace configuration.
This documentation page presents the way Agentkernet is structured for enterprise onboarding: define objectives, assign models, control memory, approve tool actions, and keep execution fully traceable.
Specify which models should plan, execute, verify, and recover from failure so each stage of the workflow has the right behavior profile.
models: planner: enterprise-planner executor: frontier-general verifier: domain-checker fallback: safe-recovery-model
Tell the kernel what belongs in short-lived session state, durable memory, and evidence stores so recall stays useful and governed.
memory: session_store: redis durable_store: pgvector evidence_store: documents-and-logs retention: policy-controlled summarization_mode: checkpoint-based
Connect enterprise systems as typed tools so agents can fetch, write, or coordinate actions under explicit policy rules.
tools: allow: - crm.lookup_account - ticket.update_status - warehouse.query_orders require_approval: - erp.release_payment - identity.grant_access
Launch a session with objective scope, policy envelope, allowed tools, and execution trace enabled from the first step.
POST /v1/sessions { "objective": "Resolve delayed enterprise order issues and prepare recommended actions", "profile": "support-operations", "trace": true, "policy_set": "production-governed" }
These contracts show how teams think about sessions, memory, tools, and audits when integrating an agent kernel into a broader application stack.
Create and supervise an execution session with objective scope, environment rules, model assignments, and trace configuration.
Review decomposed tasks, dependencies, state transitions, and pending approvals before or during execution.
Inspect memory lanes, durable recall records, retention policy application, and compaction outputs.
Define enterprise tools with schemas, permissions, execution boundaries, and approval requirements.
Export model calls, tool activity, retries, escalations, and outcome metadata for observability or audit systems.
Approve, reject, or annotate tasks that require operator review before execution can continue.
A support operations team can use one planner model to break a case into fact gathering, entitlement checks, order analysis, customer response drafting, and action recommendation.
# Session goal "Resolve an enterprise shipping exception and prepare next-step actions" # Planned tasks 1. fetch_case_context 2. query_order_system 3. verify_contract_terms 4. draft_customer_recommendation 5. request_human_review_if_write_action_needed # Final outputs - structured recommendation - traceable evidence bundle - memory update for future recall
These are the implementation areas most relevant to enterprise platform, architecture, and operations teams evaluating an agent kernel.
William Smith can walk your team through how Agentkernet would be applied to your architecture, governance posture, and enterprise systems.