AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Agentic Kernel

mcp-qredence-agentic-kernel · by Qredence

A flexible foundation AI system for creating A2A-compatible autonomous AI agents that can collaborate, reason, and execute complex tasks through standardized agent-to-agent communication protocols.

No reviews yet
0 installs
16 views
0.0% view→install

Install

$ agentstack add mcp-qredence-agentic-kernel

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-qredence-agentic-kernel)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Agentic Kernel? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Agentic Kernel: A Modular Framework for Autonomous AI Agents

[](https://app.workweave.ai/reports/repository/org_X84uIR347D2freSZkxeu4S9S/959239750) [](https://opensource.org/licenses/MIT) [](https://www.python.org/downloads/) [](https://badge.fury.io/py/agentic-kernel) [](https://github.com/psf/black)

Build, orchestrate, and manage sophisticated multi-agent systems with ease. ---

Agentic Kernel provides a robust and flexible foundation for creating A2A-compatible autonomous AI agents that can collaborate, reason, and execute complex tasks through standardized agent-to-agent communication protocols. Built on Google's A2A standard at its core, and leveraging the ADK (Agent Development Kit) framework, it implements key interoperability features like capability discovery, consensus building, and collaborative memory while offering a modular architecture, dynamic workflow management, and seamless integration capabilities.

✨ Key Features

  • 🤖 Modular Multi-Agent Architecture:

Design systems with specialized agents, dynamic registration, and secure communication.

  • ⚙️ Sophisticated Workflow Engine:

Intelligently decompose tasks, track progress in real-time, handle errors gracefully, and manage concurrent execution.

  • 🧠 Dynamic Planning & Orchestration:

Features a powerful Orchestrator Agent capable of creating, managing, and adapting complex plans using a nested loop architecture.

  • 🔌 Pluggable Components:

Easily extend functionality with custom plugins, tools, and memory systems.

  • 💬 Standardized Communication: Agents interact using a clear and consistent message format, compliant with

Google's A2A (Agent-to-Agent) interoperability standard.

  • 🖥️ Interactive UI: Includes a Chainlit-based interface for real-time interaction, task visualization, and

monitoring.

  • 🛠️ Rich Tooling & Integration: Leverage built-in tools and integrate with external systems (e.g., via MCP).

🚀 Getting Started

Follow these steps to get Agentic Kernel up and running on your local machine.

Prerequisites:

  • Python 3.10 or higher
  • uv (recommended) or pip package manager
  • Git (for cloning the repository)

Installation & Setup:

  1. Clone the Repository (if you haven't already):

``bash git clone https://github.com/qredence/agentic-kernel.git cd agentic-kernel ``

  1. Create and Activate a Virtual Environment:
  • Using uv (Recommended):

``bash # Install uv if you don't have it (e.g., pip install uv) uv venv source .venv/bin/activate ``

  • Using standard venv:

``bash python -m venv .venv source .venv/bin/activate # On Windows use: .venv\Scripts\activate ``

  1. Install Dependencies:

``bash # Using uv uv sync ``

  1. Configure Environment Variables:
  • Copy the example environment file:

``bash cp .env.example .env ``

  • Edit the .env file and add your API keys and endpoints for required services (e.g., Azure OpenAI, specific

tools).

Running the [A2A Agents Orchestrations (ADK Chat)](./src/agentickernel/adkchat/README.md):

  1. Ensure your virtual environment is active.

``bash # Using uv uv venv source .venv/bin/activate ``

Setup

  1. Install Dependencies: From the workspace root (Agentic-Kernel), install the required packages:

``bash uv pip install -r src/agentic_kernel/adk_chat/requirements.txt ``

  1. Configure Environment Variables: Ensure you have the necessary API keys set in your .env file (or the specific .env within the adk_chat directory if you prefer):

``` OPENAIAPIKEY=youropenaiapikey GOOGLEVERTIAIAPIKEY=yourgooglevertaiapikey GEMINIAPIKEY=yourgoogleaistudiokey

# Note: The old GOOGLEAPIKEY is deprecated. Please migrate to GOOGLEVERTIAIAPIKEY and GEMINIAPI_KEY.

```

Running the Example

From the workspace root (Agentic-Kernel), run:

python src/agentic_kernel/adk_chat/main.py

This will start the chat server and client, allowing you to interact with the multi-agent system.

Running with Mesop UI

You can also run the system with a web-based UI using Mesop:

python src/agentic_kernel/adk_chat/main.py --mode mesop

This will start the server and launch the Mesop UI in your default web browser. The UI provides a more user-friendly interface for interacting with the multi-agent system, with features like:

  • Agent information display
  • Chat history with markdown formatting
  • Message input with real-time feedback
  • Visual indicators for processing state

🏛️ System Architecture

Agentic Kernel employs a modular design centered around interacting components:

src/agentic_kernel/
├── agents/         # Specialized agent implementations (e.g.,    Orchestrator, Worker)
├── communication/  # Protocols and message formats for inter-agent communication
├── config/        # Configuration loading and management
├── ledgers/       # State tracking for tasks and progress
├── memory/        # Systems for agent memory and knowledge storage
├── orchestrator/  # Core logic for workflow planning and execution
├── plugins/       # Extensible plugin system for adding capabilities
├── systems/       # Foundational system implementations
├── tools/         # Reusable tools agents can leverage
├── ui/           # User interface components (e.g., Chainlit app)
├── utils/        # Helper functions and utilities
├── workflows/     # Definitions and handlers for specific workflows
└── adk_chat/      # ADK A2A Chat System

A2A Compliance

Agentic Kernel is compliant with Google's A2A (Agent-to-Agent) interoperability standard, which enables seamless communication and collaboration between different agent systems. Key A2A features include:

  • Capability Discovery: Agents can advertise their capabilities and discover the capabilities of other agents.
  • Agent Discovery: Agents can announce their presence and find other agents in the system.
  • Standardized Message Format: All agent communication follows a consistent format with required A2A fields.
  • Consensus Building: Agents can request and build consensus on decisions.
  • Conflict Resolution: The system provides mechanisms for detecting and resolving conflicts between agents.
  • Task Decomposition: Complex tasks can be broken down into subtasks and distributed among agents.
  • Collaborative Memory: Agents can share and access a common memory space.

To test A2A compliance, run the provided test script:

python src/debug/test_a2a_compliance.py

Core Concepts

  • Agents: Autonomous units with specific capabilities (e.g., planning, executing, validating). The

OrchestratorAgent is key for managing complex tasks.

  • Workflows: Sequences of steps managed by the Workflow Engine, involving task decomposition, execution, and

monitoring.

  • Communication Protocol: A standardized JSON format for messages exchanged between agents.
  • Ledgers: Track the state and progress of tasks and workflows.
  • Plugins & Tools: Extend agent functionality by providing access to external capabilities or data.

Refer to the code documentation within each directory for more detailed information.

📚 Examples & Usage

Explore the capabilities of Agentic Kernel through practical examples:

  • Core Feature Examples (docs/examples/): Detailed markdown files demonstrating specific functionalities like:
  • Advanced Plugin Usage
  • Agent Communication Patterns
  • Basic Workflow Definition
  • Memory System Interaction
  • Orchestrator Features (Conditional Steps, Dynamic Planning, Error Recovery)
  • Workflow Optimization
  • Multi-Agent System (examples/adk_multi_agent/): A complete example showcasing collaboration between multiple

agents (Task Manager, Worker, Validator).

  • See the [Multi-Agent Example README](examples/adkmultiagent/README.md) for setup and execution instructions.
  • ADK A2A Chat System (src/agentic_kernel/adk_chat/): A multi-agent chat system using Google's Agent Development Kit (

ADK) and Agent-to-Agent (A2A) communication protocol.

  • Features specialized agents (Orchestrator, Research, Creative, Reasoning) that communicate using the A2A protocol
  • Includes both a command-line interface and a web-based UI using Mesop
  • See the [ADK A2A Chat README](src/agentickernel/adkchat/README.md) for setup and execution instructions

🤝 Contributing

We welcome contributions! Please read our CONTRIBUTING.md guide to learn about our development process, how to propose bug fixes and improvements, and coding standards.

📜 License

This project is licensed under the MIT License. See the [LICENSE](LICENSE.md) file for details.

🐛 Debugging

  • The src/debug/ directory contains scripts useful for isolating and testing specific components of the kernel.

Explore these scripts if you encounter issues or want to understand individual parts better.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.