Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions config/TSC_BOARD_MEMBERS.json
Original file line number Diff line number Diff line change
Expand Up @@ -819,6 +819,67 @@
}
]
},
{
"name": "Hugo Guerrero",
"img": "https://avatars.githubusercontent.com/u/1001939?v=4",
"bio": "Hugo Guerrero is a developer advocate with over 20 years of hands-on experience in software development. He\u2019s worked across the stack as a developer, consultant, architect, and software factory manager. Hugo is a strong advocate for event-driven systems and actively contributes to open source communities, including AsyncAPI. He maintains the Microcks Docker Desktop Extension and regularly shares practical insights on APIs, distributed systems, and developer tooling.",
"github": "hguerrero",
"githubID": 1001939,
"slack": "U01H9D8J4H1",
"twitter": "hguerreroo",
"title": "Head of Technical Marketing",
"linkedin": "hugoguerrero",
"company": "Kong",
"country": "\ud83c\uddf2\ud83c\uddfd",
"isTscMember": true,
"contributions": [
{
"type": "presentation",
"title": "Speed-Up Kafka Delivery with AsyncAPI & Microcks",
"date": {
"year": 2021,
"month": "July"
},
"link": "https://www.confluent.io/events/kafka-summit-apac-2021/speed-up-kafka-delivery-with-asyncapi-and-microcks/"
},
{
"type": "presentation",
"title": "Automated Apache Kafka Mocking and Testing with AsyncAPI",
"date": {
"year": 2021,
"month": "September"
},
"link": "https://www.confluent.io/events/kafka-summit-americas-2021/automated-apache-kafka-mocking-and-testing-with-asyncapi/"
},
{
"type": "presentation",
"title": "Event-driven APIs & Schema governance for Apache Kafka, Apidays LIVE Hong Kong",
"date": {
"year": 2021,
"month": "August"
},
"link": "https://www.youtube.com/watch?v=rwlHJkgaRdw"
},
{
"type": "presentation",
"title": "Event-driven APIs & Schema governance for Apache Kafka, API Specification Conference",
"date": {
"year": 2021,
"month": "August"
},
"link": "https://www.youtube.com/watch?v=QZ4cJyTw-U0"
},
{
"type": "presentation",
"title": "Getting started with Event-Driven APIs, Apidays LIVE Paris",
"date": {
"year": 2021,
"month": "December"
},
"link": "https://www.youtube.com/watch?v=_kIE-qtpwTA&t=9s"
}
]
},
Comment on lines +822 to +882
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Missing required fields in new member entry.

The Hugo Guerrero object omits the availableForHire and repos properties, which are present on every other entry and relied upon by the UI/schema. Please add them, for example:

     {
         "name": "Hugo Guerrero",
         "img": "https://avatars.githubusercontent.com/u/1001939?v=4",
         "bio": "Hugo Guerrero is a developer advocate…",
         "github": "hguerrero",
         "githubID": 1001939,
         "slack": "U01H9D8J4H1",
         "twitter": "hguerreroo",
         "title": "Head of Technical Marketing",
         "linkedin": "hugoguerrero",
         "company": "Kong",
         "country": "🇲🇽",
+        "availableForHire": false,
+        "repos": [
+            /* list of AsyncAPI repos Hugo contributes to */
+        ],
         "isTscMember": true,
         "contributions": [
             …
         ]
     },

🏁 Script executed:

#!/bin/bash
# Check occurrences of availableForHire in the TSC_BOARD_MEMBERS.json
echo "Occurrences of 'availableForHire':"
rg -n '"availableForHire"' config/TSC_BOARD_MEMBERS.json || echo "None found"

echo -e "\nOccurrences of 'repos':"
rg -n '"repos"' config/TSC_BOARD_MEMBERS.json || echo "None found"

Length of output: 2709


Add missing availableForHire and repos fields to Hugo Guerrero entry

The new board member object at config/TSC_BOARD_MEMBERS.json (lines 822–882) omits two required properties that every other entry defines:

  • availableForHire (boolean)
  • repos (array of AsyncAPI‐related repo names)

Without these fields the UI/schema will break. Please insert them, for example:

     {
         "name": "Hugo Guerrero",
         "img": "https://avatars.githubusercontent.com/u/1001939?v=4",
         "bio": "Hugo Guerrero is a developer advocate with over 20 years of hands-on experience in software development. He’s worked across the stack as a developer, consultant, architect, and software factory manager. Hugo is a strong advocate for event-driven systems and actively contributes to open source communities, including AsyncAPI. He maintains the Microcks Docker Desktop Extension and regularly shares practical insights on APIs, distributed systems, and developer tooling.",
         "github": "hguerrero",
         "githubID": 1001939,
         "slack": "U01H9D8J4H1",
         "twitter": "hguerreroo",
         "title": "Head of Technical Marketing",
         "linkedin": "hugoguerrero",
         "company": "Kong",
         "country": "🇲🇽",
+        "availableForHire": false,
+        "repos": [
+            // e.g. "asyncapi/asyncapi", "microcks/microcks", …
+        ],
         "isTscMember": true,
         "contributions": [
             …
         ]
     },

Please update this entry to include both fields.

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
{
"name": "Hugo Guerrero",
"img": "https://avatars.githubusercontent.com/u/1001939?v=4",
"bio": "Hugo Guerrero is a developer advocate with over 20 years of hands-on experience in software development. He\u2019s worked across the stack as a developer, consultant, architect, and software factory manager. Hugo is a strong advocate for event-driven systems and actively contributes to open source communities, including AsyncAPI. He maintains the Microcks Docker Desktop Extension and regularly shares practical insights on APIs, distributed systems, and developer tooling.",
"github": "hguerrero",
"githubID": 1001939,
"slack": "U01H9D8J4H1",
"twitter": "hguerreroo",
"title": "Head of Technical Marketing",
"linkedin": "hugoguerrero",
"company": "Kong",
"country": "\ud83c\uddf2\ud83c\uddfd",
"isTscMember": true,
"contributions": [
{
"type": "presentation",
"title": "Speed-Up Kafka Delivery with AsyncAPI & Microcks",
"date": {
"year": 2021,
"month": "July"
},
"link": "https://www.confluent.io/events/kafka-summit-apac-2021/speed-up-kafka-delivery-with-asyncapi-and-microcks/"
},
{
"type": "presentation",
"title": "Automated Apache Kafka Mocking and Testing with AsyncAPI",
"date": {
"year": 2021,
"month": "September"
},
"link": "https://www.confluent.io/events/kafka-summit-americas-2021/automated-apache-kafka-mocking-and-testing-with-asyncapi/"
},
{
"type": "presentation",
"title": "Event-driven APIs & Schema governance for Apache Kafka, Apidays LIVE Hong Kong",
"date": {
"year": 2021,
"month": "August"
},
"link": "https://www.youtube.com/watch?v=rwlHJkgaRdw"
},
{
"type": "presentation",
"title": "Event-driven APIs & Schema governance for Apache Kafka, API Specification Conference",
"date": {
"year": 2021,
"month": "August"
},
"link": "https://www.youtube.com/watch?v=QZ4cJyTw-U0"
},
{
"type": "presentation",
"title": "Getting started with Event-Driven APIs, Apidays LIVE Paris",
"date": {
"year": 2021,
"month": "December"
},
"link": "https://www.youtube.com/watch?v=_kIE-qtpwTA&t=9s"
}
]
},
{
"name": "Hugo Guerrero",
"img": "https://avatars.githubusercontent.com/u/1001939?v=4",
"bio": "Hugo Guerrero is a developer advocate with over 20 years of hands-on experience in software development. He\u2019s worked across the stack as a developer, consultant, architect, and software factory manager. Hugo is a strong advocate for event-driven systems and actively contributes to open source communities, including AsyncAPI. He maintains the Microcks Docker Desktop Extension and regularly shares practical insights on APIs, distributed systems, and developer tooling.",
"github": "hguerrero",
"githubID": 1001939,
"slack": "U01H9D8J4H1",
"twitter": "hguerreroo",
"title": "Head of Technical Marketing",
"linkedin": "hugoguerrero",
"company": "Kong",
"country": "\ud83c\uddf2\ud83c\uddfd",
"availableForHire": false,
"repos": [
// e.g. "asyncapi/asyncapi", "microcks/microcks", …
],
"isTscMember": true,
"contributions": [
{
"type": "presentation",
"title": "Speed-Up Kafka Delivery with AsyncAPI & Microcks",
"date": {
"year": 2021,
"month": "July"
},
"link": "https://www.confluent.io/events/kafka-summit-apac-2021/speed-up-kafka-delivery-with-asyncapi-and-microcks/"
},
{
"type": "presentation",
"title": "Automated Apache Kafka Mocking and Testing with AsyncAPI",
"date": {
"year": 2021,
"month": "September"
},
"link": "https://www.confluent.io/events/kafka-summit-americas-2021/automated-apache-kafka-mocking-and-testing-with-asyncapi/"
},
{
"type": "presentation",
"title": "Event-driven APIs & Schema governance for Apache Kafka, Apidays LIVE Hong Kong",
"date": {
"year": 2021,
"month": "August"
},
"link": "https://www.youtube.com/watch?v=rwlHJkgaRdw"
},
{
"type": "presentation",
"title": "Event-driven APIs & Schema governance for Apache Kafka, API Specification Conference",
"date": {
"year": 2021,
"month": "August"
},
"link": "https://www.youtube.com/watch?v=QZ4cJyTw-U0"
},
{
"type": "presentation",
"title": "Getting started with Event-Driven APIs, Apidays LIVE Paris",
"date": {
"year": 2021,
"month": "December"
},
"link": "https://www.youtube.com/watch?v=_kIE-qtpwTA&t=9s"
}
]
},
🤖 Prompt for AI Agents
In config/TSC_BOARD_MEMBERS.json between lines 822 and 882, the entry for Hugo
Guerrero is missing the required fields "availableForHire" and "repos" which are
necessary for the UI/schema. Add "availableForHire" as a boolean value
indicating if Hugo is available for hire, and add "repos" as an array listing
AsyncAPI-related repository names associated with him. Ensure these fields are
consistent with the format used in other member entries.

{
"name": "Naresh Jain",
"github": "nashjain",
Expand Down
Loading