-
-
Notifications
You must be signed in to change notification settings - Fork 995
docs(community): update latest Board and TSC members list #4163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs(community): update latest Board and TSC members list #4163
Conversation
WalkthroughA new entry for Hugo Guerrero has been added to the TSC board members JSON configuration. The entry includes personal, professional, and contribution details, specifically listing presentations. No existing data was altered or removed. Changes
Poem
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
✅ Deploy Preview for asyncapi-website ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
📜 Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
config/TSC_BOARD_MEMBERS.json(1 hunks)
⏰ Context from checks skipped due to timeout of 180000ms (2)
- GitHub Check: Automerge PR autoapproved by a bot
- GitHub Check: Lighthouse CI
| { | ||
| "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" | ||
| } | ||
| ] | ||
| }, |
There was a problem hiding this comment.
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.
| { | |
| "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.
Updated board and TSC members list is available; please review the pull request that introduces new board members to the list.
Summary by CodeRabbit