{"id":4637,"date":"2026-09-03T16:16:00","date_gmt":"2026-09-03T16:16:00","guid":{"rendered":"https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/"},"modified":"2026-09-03T21:59:20","modified_gmt":"2026-09-03T21:59:20","slug":"ai-driven-development-lifecycle-using-amazon-bedrock-agentcore","status":"publish","type":"post","link":"https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/","title":{"rendered":"AI-driven improvement lifecycle utilizing Amazon Bedrock AgentCore"},"content":{"rendered":"<p><br \/>\n<\/p>\n<div id=\"\">\n<p>Engineering groups adopting the AI-Pushed Improvement Lifecycle (AI-DLC) with Amazon Bedrock AgentCore and coding brokers like Kiro typically battle with the hole between conceptual frameworks and dealing code. Amazon Bedrock AgentCore is a service for constructing, connecting, and optimizing brokers at scale with any framework or mannequin. AI-DLC positions AI as a central collaborator throughout the software program improvement lifecycle, dealing with routine execution whereas people retain oversight of essential selections. This submit closes that hole with working reference implementations.<\/p>\n<p>This submit walks by way of the structure, design selections, and key code patterns behind two reference implementations that show AI-DLC building section patterns utilizing Amazon Bedrock AgentCore, Kiro, and native agentic coding instruments. The primary generates Mermaid entity relationship diagrams from SQL schemas utilizing AgentCore runtime, a functionality of Amazon Bedrock AgentCore. The second supplies automated code safety evaluation by way of a multi-agent structure that makes use of AgentCore Gateway, a functionality of Amazon Bedrock AgentCore, and AgentCore reminiscence, a functionality of Amazon Bedrock AgentCore, together with exterior device integrations. Collectively, they illustrate the way to construction AI-driven workflows that keep human-in-the-loop governance whereas accelerating supply. Each implementations hyperlink to finish deployment directions of their respective GitHub repositories.<\/p>\n<h2 id=\"ai-dlc-construction-patterns-in-practice\">AI-DLC building patterns in apply<\/h2>\n<p>The AI-DLC building section positions AI to suggest structure, generate implementation plans, produce code, and create deployment artifacts, with group members offering clarification on technical selections in actual time. The implementations described right here map on to this sample:<\/p>\n<p>        Automated artifact technology: An agent receives structured enter (SQL schema information), creates an in depth plan, generates output (Mermaid ER diagrams), and shops outcomes for human overview.<br \/>\n        Steady code high quality enforcement: A multi-agent system analyzes code pushed by way of steady integration and steady supply (CI\/CD) pipelines, producing safety assessments, Widespread Vulnerabilities and Exposures (CVE) checks, and coverage compliance studies that inform human decision-making.<\/p>\n<p>Each methods share a typical architectural basis constructed on AgentCore, demonstrating how groups can compose AI-driven workflows from modular, manageable parts.<\/p>\n<h2 id=\"solution-1-sql-schema-to-er-diagram-generation\">Resolution 1: SQL schema to ER diagram technology<\/h2>\n<p>This AWS Samples venture auto-generates Mermaid ER diagrams from SQL schema information utilizing an agentic AI workflow on Amazon Bedrock AgentCore. After SQL code is checked in by builders, the Amazon Easy Storage Service (Amazon S3) set off and AWS Lambda function-based workflow invokes the AgentCore runtime, which parses the info definition language (DDL) to supply an .mmd diagram saved again to Amazon S3. It reads solely schema metadata (tables, constraints, and overseas keys), by no means row information, making it a clear reference for schema-to-diagram automation.<\/p>\n<h3 id=\"business-challenge\">Enterprise problem<\/h3>\n<p>Database groups managing evolving SQL schemas want present entity relationship documentation. Guide creation of ER diagrams is time-intensive and documentation ceaselessly drifts from the precise schema. When schema modifications land by way of pull requests, groups want up to date diagrams with out including guide documentation steps to the event workflow.<\/p>\n<h3 id=\"architecture\">Structure<\/h3>\n<p>The system makes use of a serverless, event-driven structure with the next parts:<\/p>\n<div style=\"width: 810px\" class=\"wp-caption alignnone\">\n        <img decoding=\"async\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-1.png\" alt=\"An Amazon S3 upload triggers a Lambda function that invokes an AgentCore agent to generate a Mermaid ER diagram\" width=\"800\"\/><\/p>\n<p class=\"wp-caption-text\">Determine 1: Occasion-driven structure for SQL schema to ER diagram technology<\/p>\n<\/p><\/div>\n<p>        S3 occasion set off: SQL information uploaded to an Amazon S3 bucket set off an AWS Lambda operate that initiates the evaluation workflow.<br \/>\n        Authentication: Amazon Cognito supplies OAuth2 machine-to-machine (M2M) authentication. Shopper credentials are saved in AWS Programs Supervisor Parameter Retailer.<br \/>\n        AgentCore runtime: A containerized agent constructed with the Strands framework runs on AgentCore runtime. The agent makes use of Claude Sonnet 4 by way of Amazon Bedrock to parse SQL DDL statements and generate Mermaid ER diagram syntax. (For mannequin availability by AWS Area, see Regional availability by fashions.)<br \/>\n        AgentCore reminiscence: Gives persistent session context with a 90-day expiry, and helps semantic search throughout earlier analyses and incremental schema understanding.<br \/>\n        Output storage: Generated .mmd diagram information are saved to Amazon S3 below a devoted prefix, with metadata monitoring the supply file and technology timestamp.<\/p>\n<p>The workflow proceeds as follows:<\/p>\n<p>        A SQL file is uploaded to Amazon S3 (manually or by way of a CI\/CD pipeline).<br \/>\n        The Lambda set off reads the file content material and authenticates by way of Cognito OAuth.<br \/>\n        The set off invokes the AgentCore runtime agent with the SQL content material because the payload.<br \/>\n        The agent analyzes the schema and identifies tables, columns, constraints, and overseas key relationships. It then generates an entire Mermaid erDiagram.<br \/>\n        The diagram is saved to Amazon S3 and the evaluation session is saved in AgentCore reminiscence.<\/p>\n<h3 id=\"implementation-details\">Implementation particulars<\/h3>\n<p>The agent implementation makes use of the BedrockAgentCoreApp runtime wrapper with the @app.entrypoint decorator to register the handler:<\/p>\n<div class=\"hide-language\">\n        from bedrock_agentcore.runtime import BedrockAgentCoreApp<br \/>\nfrom bedrock_agentcore.reminiscence import MemoryClient<br \/>\nfrom strands import Agent<br \/>\nfrom strands.fashions import BedrockModel<\/p>\n<p>app = BedrockAgentCoreApp()<br \/>\nmannequin = BedrockModel(model_id=&#8221;us.anthropic.claude-sonnet-4-5-20250929-v1:0&#8243;, region_name=&#8221;us-west-2&#8243;)<br \/>\nerdiagram_agent = Agent(mannequin=mannequin)<br \/>\nmemory_client = MemoryClient(region_name=&#8221;us-west-2&#8243;)<\/p>\n<p>@app.entrypoint<br \/>\nasync def generate_er_diagram(payload: Dict[str, Any]) -&gt; Dict[str, Any]:<br \/>\n    sql_content = payload.get(&#8220;sql_content&#8221;, &#8220;&#8221;)<br \/>\n    file_name = payload.get(&#8220;file_name&#8221;, &#8220;unknown_file.sql&#8221;)<br \/>\n    # Generate diagram, retailer in reminiscence, save to S3<br \/>\n    &#8230;\n       <\/p><\/div>\n<p>Key design selections embrace:<\/p>\n<p>        Chunked processing: Giant SQL information are break up into manageable segments, analyzed independently, then consolidated right into a unified diagram. This handles schemas with lots of of tables with out exceeding context limits.<br \/>\n        Structured prompting: The agent makes use of a scientific evaluation immediate that extracts tables, columns, information varieties, main keys, and overseas key relationships earlier than producing diagram syntax.<br \/>\n        OpenTelemetry tracing: Each step is instrumented with spans and attributes, offering observability into processing length, chunk counts, and error attribution.<\/p>\n<p>The entire implementation, together with OpenAI Codex abilities and MCP server integration, is obtainable within the sample-to-create-mermaid-entity-diagrams-from-sql-using-agentic-ai-on-agentcore repository.<\/p>\n<h2 id=\"solution-2-secure-software-handoffs\">Resolution 2: Safe software program handoffs<\/h2>\n<p>This serverless code safety evaluation resolution makes use of Amazon Bedrock AgentCore to routinely scan Python or Java code for safety vulnerabilities, CVE dangers in dependencies, and coverage violations. The evaluation is triggered when code is pushed from a GitLab pipeline to Amazon S3. A Strands-based agent then evaluates the code utilizing Anthropic Claude Sonnet fashions on Amazon Bedrock. It calls Mannequin Context Protocol (MCP) instruments that run on AWS Lambda for CVE and coverage checks. (For mannequin availability by Area, see Regional availability by fashions.) Outcomes, together with high quality scores from 1 to 10 and suggestions, are saved in AgentCore reminiscence with semantic search and surfaced by way of a real-time, session-based internet dashboard. Amazon Cognito supplies authentication, and AgentCore Observability, a functionality of Amazon Bedrock AgentCore, and Amazon CloudWatch present monitoring.<\/p>\n<h3 id=\"business-challenge-1\">Enterprise problem<\/h3>\n<p>Code opinions for safety compliance require specialised data throughout CVE databases, organizational coding insurance policies, and language-specific safety patterns. Guide safety opinions create bottlenecks in supply pipelines, and inconsistent utility of requirements throughout groups results in variable code high quality.<\/p>\n<h3 id=\"architecture-1\">Structure<\/h3>\n<p>This resolution supplies automated code safety evaluation by way of a multi-agent structure for safe software program handoffs between improvement levels:<\/p>\n<div style=\"width: 810px\" class=\"wp-caption alignnone\">\n        <img decoding=\"async\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-2.png\" alt=\"Uploaded code is analyzed by an AgentCore agent that calls policy-check and CVE-scanner tools through AgentCore Gateway\" width=\"800\"\/><\/p>\n<p class=\"wp-caption-text\">Determine 2: Multi-agent structure for automated code safety evaluation<\/p>\n<\/p><\/div>\n<p>        Code information are uploaded to an Amazon S3 bucket (manually or by way of a CI\/CD pipeline). An AWS Lambda set off detects new uploads and initiates the AgentCore evaluation workflow with OAuth2 authentication.<br \/>\n        AgentCore Gateway with MCP instruments: The gateway orchestrates calls to exterior device integrations: <\/p>\n<p>          Coverage Verify Lambda: Validates code towards organization-specific safety insurance policies.<br \/>\n          CVE Database Verify Lambda: Scans dependency information for recognized vulnerabilities.<\/p>\n<p>        AgentCore runtime (Strands framework): The core evaluation agent performs deep code overview, together with construction evaluation, logic high quality analysis, reminiscence and efficiency evaluation, safety subject detection, and finest practices compliance.<br \/>\n        AgentCore reminiscence: Shops evaluation outcomes with semantic search capabilities, supporting historic comparability and development evaluation.<br \/>\n        Dashboard Lambda: Serves an online UI that gives session-based outcomes with search and multi-tab navigation throughout information, violations, and high quality metrics.<\/p>\n<h3 id=\"key-capabilities\">Key capabilities<\/h3>\n<p>The evaluation agent follows the identical AgentCore runtime sample as Resolution 1, with the addition of MCP device calls routed by way of AgentCore Gateway:<\/p>\n<div class=\"hide-language\">\n        from bedrock_agentcore.runtime import BedrockAgentCoreApp<br \/>\nfrom bedrock_agentcore.reminiscence import AgentCoreMemory<br \/>\nfrom strands import Agent<br \/>\nfrom strands.fashions import BedrockModel<\/p>\n<p>app = BedrockAgentCoreApp()<br \/>\nmannequin = BedrockModel(model_id=&#8221;us.anthropic.claude-sonnet-4-5-20250929-v1:0&#8243;, region_name=&#8221;us-west-2&#8243;)<br \/>\nanalysis_agent = Agent(mannequin=mannequin, instruments=[analyze_code, check_quality])<br \/>\nreminiscence = AgentCoreMemory(namespace=&#8221;code-analysis&#8221;)<\/p>\n<p>@app.entrypoint<br \/>\nasync def analyze_uploaded_code(payload: Dict[str, Any]) -&gt; Dict[str, Any]:<br \/>\n    file_content = payload.get(&#8220;file_content&#8221;, &#8220;&#8221;)<br \/>\n    file_name = payload.get(&#8220;file_name&#8221;, &#8220;unknown.py&#8221;)<br \/>\n    session_id = payload.get(&#8220;session_id&#8221;, &#8220;&#8221;)<br \/>\n    # Analyze code, retailer leads to reminiscence, return high quality rating<br \/>\n    &#8230;\n       <\/p><\/div>\n<p>The agent receives code content material from the AWS Lambda set off, performs multi-dimensional evaluation utilizing the inspiration mannequin (FM), then invokes exterior instruments (coverage checker, CVE scanner) by way of AgentCore Gateway as wanted. Outcomes are endured to AgentCore reminiscence for dashboard retrieval and historic comparability.<\/p>\n<p>Key design selections embrace:<\/p>\n<p>        Multi-agent separation: The code evaluation agent focuses solely on high quality evaluation. Coverage checking and CVE scanning are delegated to devoted AWS Lambda capabilities invoked by way of AgentCore Gateway, holding every element single-purpose and independently updatable.<br \/>\n        Session-based outcome persistence: Every evaluation run creates a singular session in AgentCore reminiscence. The dashboard retrieves outcomes by session ID, permitting builders to match high quality scores throughout a number of code submissions.<br \/>\n        Gateway-mediated device invocation: Exterior instruments are registered by way of AgentCore Gateway utilizing MCP relatively than direct invocation. This decouples the agent from device implementation particulars and permits new instruments to be added with out modifying agent code.<\/p>\n<p>The entire implementation is obtainable within the sample-agentic-secure-software-handoffs repository.<\/p>\n<p>Whereas AgentCore supplies the cloud runtime for deployed, event-driven agent workloads, the event workflow itself advantages from native agentic instruments that implement AI-DLC patterns on the developer\u2019s workstation.<\/p>\n<h3 id=\"kiro-agents-and-skills\">Kiro brokers and abilities<\/h3>\n<p>Kiro helps the AI-DLC inception and building phases by way of structured specs and customized agent abilities:<\/p>\n<p>        Spec-driven improvement: Kiro transforms pure language necessities into structured specs with acceptance standards, then generates implementation plans from these specs. This maps on to the AI-DLC sample of AI creating plans and looking for human validation earlier than execution.<br \/>\n        Customized abilities: Groups can outline reusable Kiro agent abilities that encode organizational requirements (coding patterns, safety necessities, architectural pointers), in order that AI-generated code constantly meets enterprise high quality bars.<br \/>\n        Agentic activity execution: Kiro\u2019s agent mode handles multi-file implementation duties with autonomous device use (file creation, terminal instructions, search) whereas sustaining the human-in-the-loop overview at every specification checkpoint.<\/p>\n<h3 id=\"openai-chatgpt-codex-mcp-server-and-skills\">OpenAI ChatGPT Codex (MCP server and abilities)<\/h3>\n<p>The repository additionally consists of an OpenAI Codex integration that demonstrates how the identical ER diagram technology workflow extends to extra coding brokers by way of MCP and customized abilities:<\/p>\n<p>        MCP server for reside database schema entry: An area stdio-based MCP server connects Codex to MySQL or Amazon Aurora MySQL databases by way of INFORMATION_SCHEMA. The server exposes three instruments (schema_summary, generate_er_markdown, and generate_mermaid) that permit Codex to question desk buildings, columns, indexes, and overseas key relationships with out accessing desk row information.<br \/>\n        Customized Codex ability: A SKILL.md file encodes the ER diagram technology workflow as a reusable Codex ability, guiding the agent by way of schema evaluation and diagram creation with constant high quality.<br \/>\n        Safe credential administration: Database credentials are retrieved from AWS Secrets and techniques Supervisor with TLS verification enforced, following the identical safety patterns used within the AgentCore implementation.<\/p>\n<h3 id=\"claude-code-local-agent\">Claude Code (native agent)<\/h3>\n<p>Claude Code operates as an area command-line agent that enhances AgentCore deployments:<\/p>\n<p>        Speedy prototyping: Earlier than deploying to AgentCore runtime, builders use Claude Code to iterate on agent logic, check prompts, and validate device integration patterns regionally.<br \/>\n        Infrastructure-as-code technology: Claude Code generates deployment scripts, Dockerfiles, AWS Id and Entry Administration (IAM) insurance policies, and AWS CloudFormation templates. These artifacts comply with architectural specs produced throughout the AI-DLC building section.<br \/>\n        Code overview and refactoring: Native brokers carry out first-pass opinions towards venture guidelines and customized directions, catching points earlier than code enters the CI\/CD pipeline the place the safe software program handoff system supplies the authoritative safety evaluation.<\/p>\n<h3 id=\"the-combined-workflow\">The mixed workflow<\/h3>\n<p>A typical AI-DLC bolt (brief, intense work cycle) utilizing these instruments follows this sample:<\/p>\n<p>        Inception (Kiro): Remodel enterprise necessities into specs with acceptance standards. The group validates AI-generated specs in a mob elaboration session.<br \/>\n        Building (Claude Code and Kiro): Generate implementation code, deployment scripts, and check suites. Native brokers deal with file technology and iterative refinement whereas Kiro manages activity orchestration.<br \/>\n        Validation (AgentCore): Code pushed by way of CI\/CD triggers automated safety evaluation. The multi-agent system supplies a top quality evaluation earlier than merge.<br \/>\n        Operations (AgentCore): Manufacturing brokers (just like the ER diagram generator) run repeatedly on AgentCore runtime, triggered by occasions, processing workloads at scale with full observability.<\/p>\n<h2 id=\"best-practices\">Finest practices<\/h2>\n<p>Primarily based on implementing these methods, we advocate the next practices:<\/p>\n<p>        Separate agent issues: Design every agent with a single, well-defined duty. The ER diagram agent solely generates ER diagrams. Composability comes from orchestration, not from overloading particular person brokers.<br \/>\n        Use AgentCore reminiscence for context continuity: Persistent reminiscence permits brokers to be taught from earlier interactions, examine present evaluation with historic baselines, and keep state throughout periods with out reprocessing.<br \/>\n        Instrument with OpenTelemetry from day one: Tracing supplies visibility into agent habits, processing length, and failure modes. That is important for debugging immediate effectiveness and figuring out efficiency bottlenecks.<br \/>\n        Retailer configuration in Parameter Retailer: Decouple configuration from code. Cognito credentials, reminiscence IDs, mannequin alternatives, and bucket names ought to all be retrievable at runtime.<br \/>\n        Implement chunked processing for big inputs: Design brokers to deal with inputs that exceed mannequin context home windows by splitting, analyzing independently, and consolidating outcomes.<br \/>\n        Safe with Cognito M2M authentication: Use OAuth2 shopper credentials stream for service-to-service communication. Keep away from hardcoded credentials or long-lived tokens.<br \/>\n        Combine by way of CI\/CD, not guide add: In manufacturing, join brokers to repository occasions (merge requests, pipeline levels) relatively than requiring guide file uploads. The S3 set off sample proven right here interprets on to GitLab webhook or GitHub Actions integration.<br \/>\n        Apply Amazon Bedrock Guardrails for manufacturing agent outputs: Configure content material filtering insurance policies, denied subject detection, and grounding validation to ensure agent-generated responses meet accountable AI requirements. For code evaluation brokers, guardrails can block outputs containing insecure code patterns or hallucinated CVE references. For diagram technology brokers, grounding checks validate that outputs precisely replicate the supply schema. Mix guardrails with automated analysis pipelines to repeatedly monitor agent habits and flag drift from anticipated output high quality.<\/p>\n<h2 id=\"conclusion\">Conclusion<\/h2>\n<p>The AI-DLC methodology turns into sensible when backed by concrete implementation patterns. Amazon Bedrock AgentCore supplies the runtime infrastructure (containerized brokers, persistent reminiscence, safe gateways, and exterior device integration) whereas native instruments like Kiro and Claude Code speed up the event workflow itself.<\/p>\n<p>Begin with the SQL-to-ER-Diagram pattern to deploy your first AgentCore agent. Observe the deployment scripts in sequence, then prolong the sample with multi-agent coordination, MCP device integrations, and CI\/CD-driven triggers utilizing the Safe software program handoffs pattern.<\/p>\n<p>To go deeper, see Transfer your AI brokers from proof of idea to manufacturing with Amazon Bedrock AgentCore for a complementary walkthrough of taking brokers to manufacturing scale. For full-service particulars, API references, and configuration steerage, discuss with the Amazon Bedrock AgentCore documentation.<\/p>\n<h2>Concerning the authors<\/h2>\n<div class=\"blog-author-box\">\n<div class=\"blog-author-image\">\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignleft size-full\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-3.jpeg\" alt=\"Arghya Banerjee\" width=\"100\" height=\"100\"\/><\/p>\n<\/p><\/div>\n<h3 class=\"lb-h4\">Arghya Banerjee<\/h3>\n<p>Arghya is a Sr.\u00a0Options Architect at AWS within the San Francisco Bay Space, targeted on serving to prospects undertake and use the AWS Cloud for giant information, information lakes, streaming and batch analytics, generative AI and agentic AI options.<\/p>\n<\/p><\/div>\n<div class=\"blog-author-box\">\n<div class=\"blog-author-image\">\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignleft size-full\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-4.png\" alt=\"Ram Pathangi\" width=\"100\" height=\"100\"\/><\/p>\n<\/p><\/div>\n<h3 class=\"lb-h4\">Ram Pathangi<\/h3>\n<p>Ram is a Sr.\u00a0Options Architect at AWS within the San Francisco Bay Space. He has helped prospects in Agriculture, Insurance coverage, Banking, Retail, Well being Care &amp; Life Sciences, Hospitality, and Hello-Tech verticals to run their enterprise efficiently on AWS cloud. He focuses on Databases, Analytics and ML.<\/p>\n<\/p><\/div>\n<div class=\"blog-author-box\">\n<div class=\"blog-author-image\">\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignleft size-full\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-5.jpeg\" alt=\"Kunal Ghosh\" width=\"100\" height=\"100\"\/><\/p>\n<\/p><\/div>\n<h3 class=\"lb-h4\">Kunal Ghosh<\/h3>\n<p>Kunal is a Sr.\u00a0Options Architect at AWS. He&#8217;s obsessed with constructing environment friendly and efficient options on AWS, particularly involving generative AI, analytics, information science, and machine studying. In addition to household time, he likes studying, swimming, biking, and watching motion pictures.<\/p>\n<\/p><\/div>\n<div class=\"blog-author-box\">\n<div class=\"blog-author-image\">\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignleft size-full\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-6.jpg\" alt=\"Ananth Kommuri\" width=\"100\" height=\"100\"\/><\/p>\n<\/p><\/div>\n<h3 class=\"lb-h4\">Ananth Kommuri<\/h3>\n<p>Ananth is a Sr.\u00a0Options Architect at AWS primarily based within the San Francisco bay space. Ananth helps prospects obtain operational effectivity with Information analytics, AI\/ML, and IoT options on AWS.<\/p>\n<\/p><\/div><\/div>\n<p><br \/>\n<br \/><a href=\"https:\/\/aws.amazon.com\/blogs\/machine-learning\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/\">Source link <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Engineering groups adopting the AI-Pushed Improvement Lifecycle (AI-DLC) with Amazon Bedrock AgentCore and coding brokers like Kiro typically battle with the hole between conceptual frameworks and dealing code. Amazon Bedrock AgentCore is a service for constructing, connecting, and optimizing brokers at scale with any framework or mannequin. AI-DLC positions AI as a central collaborator throughout [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":4639,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"fifu_image_url":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-featured-image.png","fifu_image_alt":"","jnews-multi-image_gallery":[],"jnews_single_post":[],"jnews_primary_category":[],"jnews_override_bookmark_settings":[],"jnews_social_meta":[],"jnews_override_counter":[],"footnotes":""},"categories":[7],"tags":[1753,4780,83,267,761,1100],"class_list":["post-4637","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-data-science-mlops","tag-agentcore","tag-aidriven","tag-amazon","tag-bedrock","tag-development","tag-lifecycle"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>AI-driven improvement lifecycle utilizing Amazon Bedrock AgentCore - Future News 24<\/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:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"AI-driven improvement lifecycle utilizing Amazon Bedrock AgentCore - Future News 24\" \/>\n<meta property=\"og:description\" content=\"Engineering groups adopting the AI-Pushed Improvement Lifecycle (AI-DLC) with Amazon Bedrock AgentCore and coding brokers like Kiro typically battle with the hole between conceptual frameworks and dealing code. Amazon Bedrock AgentCore is a service for constructing, connecting, and optimizing brokers at scale with any framework or mannequin. AI-DLC positions AI as a central collaborator throughout [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/\" \/>\n<meta property=\"og:site_name\" content=\"Future News 24\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-03T16:16:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-03T21:59:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-featured-image.png\" \/><meta property=\"og:image\" content=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-featured-image.png\" \/>\n<meta name=\"author\" content=\"Future News 24\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-featured-image.png\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Future News 24\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"13 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/09\\\/03\\\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/09\\\/03\\\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\\\/\"},\"author\":{\"name\":\"Future News 24\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/person\\\/cecad1bde21cfc357cf70128144d6c83\"},\"headline\":\"AI-driven improvement lifecycle utilizing Amazon Bedrock AgentCore\",\"datePublished\":\"2026-09-03T16:16:00+00:00\",\"dateModified\":\"2026-09-03T21:59:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/09\\\/03\\\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\\\/\"},\"wordCount\":2706,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/09\\\/03\\\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/d2908q01vomqb2.cloudfront.net\\\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\\\/2026\\\/08\\\/31\\\/ML-21366-featured-image.png\",\"keywords\":[\"AgentCore\",\"AIdriven\",\"Amazon\",\"Bedrock\",\"development\",\"Lifecycle\"],\"articleSection\":[\"Data Science &amp; MLOps\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/09\\\/03\\\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/09\\\/03\\\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\\\/\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/09\\\/03\\\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\\\/\",\"name\":\"AI-driven improvement lifecycle utilizing Amazon Bedrock AgentCore - Future News 24\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/09\\\/03\\\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/09\\\/03\\\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/d2908q01vomqb2.cloudfront.net\\\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\\\/2026\\\/08\\\/31\\\/ML-21366-featured-image.png\",\"datePublished\":\"2026-09-03T16:16:00+00:00\",\"dateModified\":\"2026-09-03T21:59:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/09\\\/03\\\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/09\\\/03\\\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/09\\\/03\\\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\\\/#primaryimage\",\"url\":\"https:\\\/\\\/d2908q01vomqb2.cloudfront.net\\\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\\\/2026\\\/08\\\/31\\\/ML-21366-featured-image.png\",\"contentUrl\":\"https:\\\/\\\/d2908q01vomqb2.cloudfront.net\\\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\\\/2026\\\/08\\\/31\\\/ML-21366-featured-image.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/09\\\/03\\\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/futurenews24.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"AI-driven improvement lifecycle utilizing Amazon Bedrock AgentCore\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#website\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/\",\"name\":\"Future News 24\",\"description\":\"The Smart Hub for AI and Next-Gen Innovation\",\"publisher\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/futurenews24.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#organization\",\"name\":\"Future News 24\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/fn24-favicon.png\",\"contentUrl\":\"https:\\\/\\\/futurenews24.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/fn24-favicon.png\",\"width\":250,\"height\":250,\"caption\":\"Future News 24\"},\"image\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/person\\\/cecad1bde21cfc357cf70128144d6c83\",\"name\":\"Future News 24\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g\",\"caption\":\"Future News 24\"},\"sameAs\":[\"https:\\\/\\\/futurenews24.com\"],\"url\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/author\\\/mridulpahuja20\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"AI-driven improvement lifecycle utilizing Amazon Bedrock AgentCore - Future News 24","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:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/","og_locale":"en_US","og_type":"article","og_title":"AI-driven improvement lifecycle utilizing Amazon Bedrock AgentCore - Future News 24","og_description":"Engineering groups adopting the AI-Pushed Improvement Lifecycle (AI-DLC) with Amazon Bedrock AgentCore and coding brokers like Kiro typically battle with the hole between conceptual frameworks and dealing code. Amazon Bedrock AgentCore is a service for constructing, connecting, and optimizing brokers at scale with any framework or mannequin. AI-DLC positions AI as a central collaborator throughout [&hellip;]","og_url":"https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/","og_site_name":"Future News 24","article_published_time":"2026-09-03T16:16:00+00:00","article_modified_time":"2026-09-03T21:59:20+00:00","og_image":[{"url":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-featured-image.png","type":"","width":"","height":""},{"url":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-featured-image.png","type":"","width":"","height":""}],"author":"Future News 24","twitter_card":"summary_large_image","twitter_image":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-featured-image.png","twitter_misc":{"Written by":"Future News 24","Est. reading time":"13 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/#article","isPartOf":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/"},"author":{"name":"Future News 24","@id":"https:\/\/futurenews24.com\/#\/schema\/person\/cecad1bde21cfc357cf70128144d6c83"},"headline":"AI-driven improvement lifecycle utilizing Amazon Bedrock AgentCore","datePublished":"2026-09-03T16:16:00+00:00","dateModified":"2026-09-03T21:59:20+00:00","mainEntityOfPage":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/"},"wordCount":2706,"commentCount":0,"publisher":{"@id":"https:\/\/futurenews24.com\/#organization"},"image":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/#primaryimage"},"thumbnailUrl":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-featured-image.png","keywords":["AgentCore","AIdriven","Amazon","Bedrock","development","Lifecycle"],"articleSection":["Data Science &amp; MLOps"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/","url":"https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/","name":"AI-driven improvement lifecycle utilizing Amazon Bedrock AgentCore - Future News 24","isPartOf":{"@id":"https:\/\/futurenews24.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/#primaryimage"},"image":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/#primaryimage"},"thumbnailUrl":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-featured-image.png","datePublished":"2026-09-03T16:16:00+00:00","dateModified":"2026-09-03T21:59:20+00:00","breadcrumb":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/#primaryimage","url":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-featured-image.png","contentUrl":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/31\/ML-21366-featured-image.png"},{"@type":"BreadcrumbList","@id":"https:\/\/futurenews24.com\/index.php\/2026\/09\/03\/ai-driven-development-lifecycle-using-amazon-bedrock-agentcore\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/futurenews24.com\/"},{"@type":"ListItem","position":2,"name":"AI-driven improvement lifecycle utilizing Amazon Bedrock AgentCore"}]},{"@type":"WebSite","@id":"https:\/\/futurenews24.com\/#website","url":"https:\/\/futurenews24.com\/","name":"Future News 24","description":"The Smart Hub for AI and Next-Gen Innovation","publisher":{"@id":"https:\/\/futurenews24.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/futurenews24.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/futurenews24.com\/#organization","name":"Future News 24","url":"https:\/\/futurenews24.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/futurenews24.com\/#\/schema\/logo\/image\/","url":"https:\/\/futurenews24.com\/wp-content\/uploads\/2026\/06\/fn24-favicon.png","contentUrl":"https:\/\/futurenews24.com\/wp-content\/uploads\/2026\/06\/fn24-favicon.png","width":250,"height":250,"caption":"Future News 24"},"image":{"@id":"https:\/\/futurenews24.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/futurenews24.com\/#\/schema\/person\/cecad1bde21cfc357cf70128144d6c83","name":"Future News 24","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g","caption":"Future News 24"},"sameAs":["https:\/\/futurenews24.com"],"url":"https:\/\/futurenews24.com\/index.php\/author\/mridulpahuja20\/"}]}},"_links":{"self":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts\/4637","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/comments?post=4637"}],"version-history":[{"count":1,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts\/4637\/revisions"}],"predecessor-version":[{"id":4638,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts\/4637\/revisions\/4638"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/media\/4639"}],"wp:attachment":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/media?parent=4637"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/categories?post=4637"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/tags?post=4637"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}