Skip to content

Instantly share code, notes, and snippets.

View kaaquist's full-sized avatar
💾
Coding

Kasper Aaquist Johansen kaaquist

💾
Coding
  • Denmark
View GitHub Profile
@kaaquist
kaaquist / langgraph_supervisor_w_a2a_agent.md
Last active June 5, 2025 21:23
Langgraph Supervisor with A2A Agent

Langgraph Supervisor with A2A Agent

A2A seems to be a great new way to connect agents. But how do I get an A2A Agent to be part of my already existing Langgraph supervisor setup?

(WIP)
Ever since Google announced the new A2A protocol to communicate between Agents across business or internally between business compartments. I have been trying to find a great way to integrate the A2A into my existing setup of Langgraph supervisor.

In a nutshell, if we take the classic example of a math agent and a research agent that gets “controlled” by a supervisor agent.

image
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active June 24, 2025 05:34
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@massie
massie / KryoRegistrator.scala
Created October 29, 2013 23:59
Here's an example of how to embed Avro objects into a Kryo stream. You only need to register each Avro Specific class in the KryoRegistrator using the AvroSerializer class below and you're ready to go.
/*
* Copyright (c) 2013. Regents of the University of California
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software