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
6 changes: 4 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,12 @@ <h2 class="section-header">Roadmap &amp; Community</h2>
<div class="community-cols">

<div class="community-col">
<h3 class="community-col-label">Community meetings</h3>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

suggestion: this iframe has a fixed width="800". The page sets a mobile viewport (width=device-width) and the rest of the layout is responsive, so on narrow screens this will overflow horizontally. Consider dropping the fixed width in favor of style="border:0; max-width:100%" (or wrapping it in a responsive container) so it scales down on mobile.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

nit: consider adding title="Kagenti community calendar" to the <iframe> — screen readers announce the title, and it's a small accessibility win.

<p>We meet on Wednesdays. See the <a href="https://calendar.google.com/calendar/embed?src=kagenti%40kagenti.io&amp;ctz=America%2FNew_York" rel="noopener noreferrer">Kagenti community calendar</a> for the schedule — calendar invites include a Google Meet link.</p>
<iframe src="https://calendar.google.com/calendar/embed?src=kagenti%40kagenti.io&amp;ctz=America%2FNew_York" style="border: 0" width="800" height="600" frameborder="0" scrolling="no"></iframe>
<h3 class="community-col-label">Become a contributor</h3>
<p>We're building in public and want to hear from platform engineers, security teams, and AI infrastructure builders.</p>
<p>Start a thread on <a href="https://github.com/kagenti/kagenti/discussions" rel="noopener noreferrer">GitHub Discussions</a>, find us on <a href="https://kagenti.slack.com/join/shared_invite/zt-3uqttqbgm-HlrQ6gezs0E8AFYOCZ~wVw#/shared-invite/email" rel="noopener noreferrer">Slack</a>, <a href="https://groups.google.com/g/kagenti-contributors/" rel="noopener noreferrer">join the mailing list</a>, or <a href="mailto:kagenti-maintainers@googlegroups.com">email the core team</a>.</p>
<p>Find us on <a href="https://kagenti.slack.com/join/shared_invite/zt-3uqttqbgm-HlrQ6gezs0E8AFYOCZ~wVw#/shared-invite/email" rel="noopener noreferrer">Slack</a>, <a href="https://groups.google.com/g/kagenti-contributors/" rel="noopener noreferrer">join the mailing list</a>, or <a href="mailto:kagenti-maintainers@googlegroups.com">email the core team</a>.</p>
<h3 class="community-col-label">Contributors</h3>
<div class="contributor-avatars">
<a href="https://github.com/pdettori" rel="noopener noreferrer"><img src="https://avatars.githubusercontent.com/u/6678093?v=4&s=48" alt="pdettori" width="36" height="36" loading="lazy"></a>
Expand Down Expand Up @@ -421,7 +424,6 @@ <h3 class="community-col-label">Contributors</h3>
<h3 class="community-col-label">What's next</h3>
<p>The next phase of Kagenti is built around persistent, long-running agents — agents that maintain context across sessions and operate autonomously over time, like <a href="https://github.com/openclaw/openclaw" rel="noopener noreferrer">OpenClaw</a>.</p>
<p>Getting there means building the right foundations. We're working on the core pieces: memory, sandboxing, an Agent Development Kit, and improved developer experience.</p>
<p><a href="https://github.com/kagenti/kagenti/discussions" rel="noopener noreferrer">Become a contributor →</a></p>
</div>

</div><!-- /.community-cols -->
Expand Down
Loading