{"id":15543,"date":"2025-10-01T14:00:00","date_gmt":"2025-10-01T14:00:00","guid":{"rendered":"https:\/\/hederav2stg.wpenginepowered.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/"},"modified":"2025-12-08T18:03:58","modified_gmt":"2025-12-08T18:03:58","slug":"deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows","status":"publish","type":"post","link":"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/","title":{"rendered":"Deep Dive into the Hedera Agent Kit: Plugins, Tools, and Practical Workflows"},"content":{"rendered":"<div class=\"body-text BodyCopy mb-40 style-1\">\n<p dir=\"ltr\">The <a href=\"https:\/\/github.com\/hashgraph\/hedera-agent-kit-js\" target=\"_blank\">Hedera Agent Kit<\/a> is an open-source toolkit that brings intelligent agent workflows to the Hedera network. It\u2019s designed for developers who want to integrate Hedera Consensus Service (HCS), Hedera Token Service (HTS), and account management into agent-driven applications, either running in human-in-the-loop (HITL) mode or fully autonomous mode. This means agents can do more than process information; they can also send tokens, manage accounts, and coordinate workflows directly on a public ledger.<\/p>\n<p dir=\"ltr\">In this blog, we walk through the Agent Kit architecture, highlight its plugin system, and showcase real-world examples where agents interact with Hedera services, opening the door to new possibilities for AI-driven applications on decentralized networks.<\/p>\n<h4 class=\"color-ultraviolet\" dir=\"ltr\">1. What is the Hedera Agent Kit?<\/h4>\n<p dir=\"ltr\">The Hedera Agent Kit bridges the gap between <strong>AI-driven agents<\/strong> (such as those built with LangChain or LLM-powered assistants) and <strong>Hedera\u2019s services<\/strong>. It comes with:<\/p>\n<ul>\n<li dir=\"ltr\"><strong>Plugins<\/strong>: modular components that extend what your agent can do. There are two types of plugins available:\n<ul>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Hedera plugins:\u00a0<\/strong>core, officially supported plugins maintained by the Hedera team.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Third-party plugins:<\/strong> community-built plugins that add functionality on top of the core plugins, like integrations with oracles, bridges, or DeFi applications.<\/p>\n<\/li>\n<\/ul>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Tools<\/strong>: wrappers around Hedera SDK functions for tasks like HCS messaging, token operations, and account management.<\/p>\n<\/li>\n<li dir=\"ltr\"><strong>Modes of operation<\/strong>:\n<ul>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Human-in-the-loop<\/strong>: prompts require the user to sign before executing transactions. This mode is ideal for user-facing apps where security and transparency are critical. The agent proposes actions, and the human confirms them.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Autonomous<\/strong>: agents execute commands without human approval. This mode is best suited for backend agents performing repetitive tasks like monitoring HCS topics, redistributing tokens, or managing account updates.<\/p>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h4 class=\"color-ultraviolet\" dir=\"ltr\">2. Plugins and Tools Overview<\/h4>\n<p dir=\"ltr\">At the heart of the Hedera Agent Kit is a modular plugin system. Plugins act as building blocks that give agents access to specific Hedera services, while query plugins provide read-only access to ledger data. This separation makes it easy to design secure, flexible workflows.<\/p>\n<p dir=\"ltr\">Here\u2019s a breakdown of the <a href=\"https:\/\/github.com\/hashgraph\/hedera-agent-kit-js\/blob\/main\/docs\/HEDERAPLUGINS.md\" target=\"_blank\">core plugins<\/a> included in the kit:<\/p>\n<ul>\n<li dir=\"ltr\"><strong>Account Plugins<\/strong>\n<ul>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Core Account Plugin<\/strong>: tools for creating and managing Hedera accounts.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Core Account Query Plugin<\/strong>: tools for querying account-related data (balances, properties, associations).<\/p>\n<\/li>\n<\/ul>\n<\/li>\n<li dir=\"ltr\"><strong>Consensus Service (HCS) Plugins<\/strong>\n<ul>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Core Consensus Plugin<\/strong>: tools for publishing messages and managing topics on HCS.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Core Consensus Query Plugin<\/strong>: tools for retrieving and filtering HCS messages.\u00a0<\/p>\n<\/li>\n<\/ul>\n<\/li>\n<li dir=\"ltr\"><strong>Token Service (HTS) Plugins<\/strong>\n<ul>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Core Token Plugin<\/strong>: tools for creating and managing fungible\/non-fungible tokens.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Core Token Query Plugin<\/strong>: tools for checking token information, supply, and balances.<\/p>\n<\/li>\n<\/ul>\n<\/li>\n<li dir=\"ltr\"><strong>EVM Plugins<\/strong>\n<ul>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Core EVM Plugin<\/strong>: tools for interacting with Hedera smart contracts (ERC-20 and ERC-721).<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Core EVM Query Plugin<\/strong>: tools for querying contract data and state.<\/p>\n<\/li>\n<\/ul>\n<\/li>\n<li dir=\"ltr\"><strong>Transaction Plugins<\/strong>\n<ul>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Core Transactions Plugin<\/strong>: tools for handling Hedera transaction lifecycle operations (construction, signing, submission).<\/p>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p dir=\"ltr\">Beyond these core offerings, developers can also browse <a href=\"https:\/\/github.com\/hashgraph\/hedera-agent-kit-js\/blob\/main\/docs\/PLUGINS.md#available-third-party-plugins\" target=\"_blank\"><strong>community-contributed plugins<\/strong><\/a> or <a href=\"https:\/\/github.com\/hashgraph\/hedera-agent-kit-js\/blob\/main\/docs\/PLUGINS.md#creating-a-plugin\" target=\"_blank\"><strong>create their own plugin<\/strong><\/a>. The plugin architecture is designed for extensibility, making it possible to integrate oracles, bridges, monitoring tools, or domain-specific automations into the agent workflow.<\/p>\n<h4 class=\"color-ultraviolet\" dir=\"ltr\">3. Example Workflows with Hedera Agent Kit<\/h4>\n<p dir=\"ltr\">Let\u2019s explore practical workflows for HCS, token management, and accounts. Each workflow can be executed in the Next.js <a href=\"https:\/\/github.com\/hashgraph\/hedera-agent-kit-js\/tree\/main\/typescript\/examples\/nextjs\" target=\"_blank\">Hedera Agent Chat example<\/a>. <\/p>\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>A. Consensus Messaging (HCS)<\/strong><\/h4>\n<p dir=\"ltr\"><strong>Example Chat Flow<\/strong>:<\/p>\n<ol>\n<li dir=\"ltr\">\n<p dir=\"ltr\">Create a new topic.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\">Submit a message &#8220;hello&#8221; to the topic.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\">Query all messages from that topic.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\">Retrieve the message sequence ID for the &#8220;hello&#8221; message.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\">Submit another message &#8220;hi&#8221;.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\">Filter messages by sequence number (&gt;= 2).<\/p>\n<\/li>\n<\/ol>\n<figure><img fetchpriority=\"high\" decoding=\"async\" data-image=\"gmgbu0yuagcu\" height=\"444\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/blog1.png\" width=\"624\"\/><\/figure>\n<ul><\/ul>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>B. Token Management<\/strong><\/h4>\n<p dir=\"ltr\">The Hedera Agent Kit simplifies token creation and transfers through a conversational flow.<\/p>\n<p dir=\"ltr\"><strong>Example Chat Flow<\/strong>:<\/p>\n<ul>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Create a token<\/strong> called Chips (CHI), supply 1000 and finite, 1 decimal, and set the treasury to my operator account<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Query details<\/strong> for the new token<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\">What is a supply key, and why is it not set? (You can ask clarifying questions)<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Query the balance<\/strong> of the Chips token for my treasury (operator) account<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Transfer<\/strong> 1 unit of the Chips token from my treasury account to 0.0.6883658<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"><strong>Query the token balance <\/strong>of 0.0.6883658 for Chips token<\/p>\n<\/li>\n<\/ul>\n<figure \"droid=\"\" \"fira=\"\" \"helvetica=\"\" \"segoe=\"\" -apple-system,=\"\" -webkit-text-stroke-width:=\"\" 0px;=\"\" 16px;=\"\" 252,=\"\" 254);=\"\" 2;=\"\" 400;=\"\" background-color:=\"\" cantarell,=\"\" font-size:=\"\" font-style:=\"\" font-variant-caps:=\"\" font-variant-ligatures:=\"\" font-weight:=\"\" initial;=\"\" initial;\"=\"\" letter-spacing:=\"\" neue\",=\"\" none;=\"\" normal;=\"\" orphans:=\"\" oxygen,=\"\" rgb(251,=\"\" roboto,=\"\" sans\",=\"\" sans-serif;=\"\" start;=\"\" style=\"--tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: rgba(59,130,246,.5); --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; border: 0px solid rgb(229, 231, 235); box-sizing: inherit; margin: 0px 0px 1em; outline: none !important; position: relative; padding: 0px; clear: both; color: rgb(63, 77, 90); font-family: system-ui, \" system-ui\",=\"\" text-align:=\"\" text-decoration-color:=\"\" text-decoration-style:=\"\" text-decoration-thickness:=\"\" text-indent:=\"\" text-transform:=\"\" ubuntu,=\"\" ui\",=\"\" white-space:=\"\" widows:=\"\" word-spacing:=\"\"><img decoding=\"async\" data-image=\"hz6zszi5rmu6\" height=\"444\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/blog2.png\" width=\"624\"\/><\/figure>\n<ul><\/ul>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>C. Account Management<\/strong><\/h4>\n<p dir=\"ltr\">Agents help streamline account creation and balance tracking.<\/p>\n<p dir=\"ltr\"><strong>Example Chat Flow<\/strong>:<\/p>\n<ul>\n<li dir=\"ltr\">\n<p dir=\"ltr\">Create a new account with memo: &#8220;operator account&#8221;, balance = 10 HBAR, max auto associations = 1.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\">Update account 0.0.6888420 to unlimited max auto associations.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\">Transfer 1 HBAR from the 0.0.6888420 account to the operator account.<\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\">Query balances to verify both transfers.<\/p>\n<\/li>\n<\/ul>\n<figure><img decoding=\"async\" data-image=\"s14k0s0lxmem\" height=\"444\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/blog3.png\" width=\"624\"\/><\/figure>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\" dir=\"ltr\"><strong>Start Building with the Hedera Agent Kit<\/strong><\/h4>\n<p dir=\"ltr\">The Hedera Agent Kit makes it easier to bring <strong>AI-driven workflows<\/strong> onto the Hedera network. Whether you\u2019re experimenting with human-in-the-loop agents or deploying fully autonomous agents, the plugin architecture gives you the flexibility to create powerful, domain-specific applications.<\/p>\n<p dir=\"ltr\">Ready to dive in? Explore the resources below to start building your AI agent:<\/p>\n<ul>\n<li dir=\"ltr\">\n<p dir=\"ltr\"> <a href=\"https:\/\/github.com\/hashgraph\/hedera-agent-kit-js\" target=\"_blank\"> Hedera Agent Kit on GitHub<\/a><\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\"> <a href=\"https:\/\/github.com\/hashgraph\/hedera-agent-kit-js\/blob\/main\/docs\/PLUGINS.md\" target=\"_blank\"> Plugins &amp; Tools Documentation<\/a><\/p>\n<\/li>\n<li dir=\"ltr\">\n<p dir=\"ltr\">  <a href=\"https:\/\/docs.hedera.com\/hedera\/open-source-solutions\/ai-studio-on-hedera\/hedera-ai-agent-kit\" target=\"_blank\">Hedera AI Studio Documentation<\/a><\/p>\n<\/li>\n<\/ul>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>The Hedera Agent Kit is an open-source toolkit that brings intelligent agent workflows to the Hedera network. It\u2019s designed for developers who want to integrate Hedera Consensus Service (HCS), Hedera Token Service (HTS), and account management into agent-driven applications, either running in human-in-the-loop (HITL) mode or fully autonomous mode. This means agents can do more than process information; they can also send tokens, manage accounts, and coordinate workflows directly on a public ledger.<\/p>\n","protected":false},"author":10,"featured_media":16618,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"categories":[1],"tags":[],"ppma_author":[43],"class_list":["post-15543","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Deep Dive into the Hedera Agent Kit: Plugins, Tools, and Practical Workflows | Hedera<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deep Dive into the Hedera Agent Kit: Plugins, Tools, and Practical Workflows | Hedera\" \/>\n<meta property=\"og:description\" content=\"The Hedera Agent Kit is an open-source toolkit that brings intelligent agent workflows to the Hedera network. It\u2019s designed for developers who want to integrate Hedera Consensus Service (HCS), Hedera Token Service (HTS), and account management into agent-driven applications, either running in human-in-the-loop (HITL) mode or fully autonomous mode. This means agents can do more than process information; they can also send tokens, manage accounts, and coordinate workflows directly on a public ledger.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/\" \/>\n<meta property=\"og:site_name\" content=\"Hedera\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-01T14:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-08T18:03:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/ai_agent_deep_dive_seo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Hedera Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/\"},\"author\":{\"name\":\"Hedera Team\",\"@id\":\"https:\/\/hedera.com\/#\/schema\/person\/2dc6146f9f20a44d3de58c834d52e9f4\"},\"headline\":\"Deep Dive into the Hedera Agent Kit: Plugins, Tools, and Practical Workflows\",\"datePublished\":\"2025-10-01T14:00:00+00:00\",\"dateModified\":\"2025-12-08T18:03:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/\"},\"wordCount\":663,\"publisher\":{\"@id\":\"https:\/\/hedera.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/ai_agent_deep_dive_seo.png\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/\",\"url\":\"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/\",\"name\":\"Deep Dive into the Hedera Agent Kit: Plugins, Tools, and Practical Workflows | Hedera\",\"isPartOf\":{\"@id\":\"https:\/\/hedera.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/ai_agent_deep_dive_seo.png\",\"datePublished\":\"2025-10-01T14:00:00+00:00\",\"dateModified\":\"2025-12-08T18:03:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/#primaryimage\",\"url\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/ai_agent_deep_dive_seo.png\",\"contentUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/ai_agent_deep_dive_seo.png\",\"width\":1200,\"height\":675},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hedera.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Deep Dive into the Hedera Agent Kit: Plugins, Tools, and Practical Workflows\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hedera.com\/#website\",\"url\":\"https:\/\/hedera.com\/\",\"name\":\"Hedera\",\"description\":\"Hello future\",\"publisher\":{\"@id\":\"https:\/\/hedera.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hedera.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/hedera.com\/#organization\",\"name\":\"Hedera\",\"url\":\"https:\/\/hedera.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hedera.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png\",\"contentUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png\",\"width\":500,\"height\":375,\"caption\":\"Hedera\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Deep Dive into the Hedera Agent Kit: Plugins, Tools, and Practical Workflows | Hedera","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/","og_locale":"en_US","og_type":"article","og_title":"Deep Dive into the Hedera Agent Kit: Plugins, Tools, and Practical Workflows | Hedera","og_description":"The Hedera Agent Kit is an open-source toolkit that brings intelligent agent workflows to the Hedera network. It\u2019s designed for developers who want to integrate Hedera Consensus Service (HCS), Hedera Token Service (HTS), and account management into agent-driven applications, either running in human-in-the-loop (HITL) mode or fully autonomous mode. This means agents can do more than process information; they can also send tokens, manage accounts, and coordinate workflows directly on a public ledger.","og_url":"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/","og_site_name":"Hedera","article_published_time":"2025-10-01T14:00:00+00:00","article_modified_time":"2025-12-08T18:03:58+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/ai_agent_deep_dive_seo.png","type":"image\/png"}],"author":"Hedera Team","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/#article","isPartOf":{"@id":"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/"},"author":{"name":"Hedera Team","@id":"https:\/\/hedera.com\/#\/schema\/person\/2dc6146f9f20a44d3de58c834d52e9f4"},"headline":"Deep Dive into the Hedera Agent Kit: Plugins, Tools, and Practical Workflows","datePublished":"2025-10-01T14:00:00+00:00","dateModified":"2025-12-08T18:03:58+00:00","mainEntityOfPage":{"@id":"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/"},"wordCount":663,"publisher":{"@id":"https:\/\/hedera.com\/#organization"},"image":{"@id":"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/#primaryimage"},"thumbnailUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/ai_agent_deep_dive_seo.png","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/","url":"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/","name":"Deep Dive into the Hedera Agent Kit: Plugins, Tools, and Practical Workflows | Hedera","isPartOf":{"@id":"https:\/\/hedera.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/#primaryimage"},"image":{"@id":"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/#primaryimage"},"thumbnailUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/ai_agent_deep_dive_seo.png","datePublished":"2025-10-01T14:00:00+00:00","dateModified":"2025-12-08T18:03:58+00:00","breadcrumb":{"@id":"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/#primaryimage","url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/ai_agent_deep_dive_seo.png","contentUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/ai_agent_deep_dive_seo.png","width":1200,"height":675},{"@type":"BreadcrumbList","@id":"https:\/\/hedera.com\/blog\/deep-dive-into-the-hedera-agent-kit-plugins-tools-and-practical-workflows\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hedera.com\/"},{"@type":"ListItem","position":2,"name":"Deep Dive into the Hedera Agent Kit: Plugins, Tools, and Practical Workflows"}]},{"@type":"WebSite","@id":"https:\/\/hedera.com\/#website","url":"https:\/\/hedera.com\/","name":"Hedera","description":"Hello future","publisher":{"@id":"https:\/\/hedera.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hedera.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/hedera.com\/#organization","name":"Hedera","url":"https:\/\/hedera.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hedera.com\/#\/schema\/logo\/image\/","url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png","contentUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png","width":500,"height":375,"caption":"Hedera"},"image":{"@id":"https:\/\/hedera.com\/#\/schema\/logo\/image\/"}}]}},"featured_image_src":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/ai_agent_deep_dive_seo-600x400.png","featured_image_src_square":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/ai_agent_deep_dive_seo-600x600.png","author_info":{"display_name":"Hedera Team","author_link":"https:\/\/hedera.com\/blog\/author\/hedera-team\/"},"authors":[{"term_id":43,"user_id":10,"is_guest":0,"slug":"hedera-team","display_name":"Hedera Team","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/7ed01931dc9498365746508c4ca49ed0507ef65e04e0b82ffe88c50ef9242b1d?s=96&d=mm&r=g","0":null,"1":"","2":"","3":"","4":"","5":"","6":""}],"_links":{"self":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/posts\/15543","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/comments?post=15543"}],"version-history":[{"count":0,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/posts\/15543\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/media\/16618"}],"wp:attachment":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/media?parent=15543"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/categories?post=15543"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/tags?post=15543"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/ppma_author?post=15543"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}