Skip to content

Commit a96381e

Browse files
Deployed b9e38bd to slimctl-v2.0.0-alpha.1 with ProperDocs 1.6.7 and mike 2.2.0
1 parent d0fe9f0 commit a96381e

17 files changed

Lines changed: 138 additions & 90 deletions

File tree

latest/community/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1625,7 +1625,7 @@ <h1 id="slim-community">SLIM Community</h1>
16251625
open on the specification, the Rust data plane, the control plane, the language
16261626
bindings, and the protocol integrations. If you run SLIM nodes, build agents on
16271627
top of the bindings, or integrate SLIM transport into your stack, the links
1628-
below are where the work happens—repos, Slack, meetings, and recent posts from
1628+
below are where the work happens—repos, Discord, meetings, and recent posts from
16291629
the team.</p>
16301630
<p>SLIM is developed within
16311631
<a href="https://github.com/agntcy">AGNTCY</a>, alongside DIR, OASF, and other
@@ -1634,7 +1634,7 @@ <h1 id="slim-community">SLIM Community</h1>
16341634
<h2 id="connect-with-us">Connect with us</h2>
16351635
<p>Stay involved with the AGNTCY community and SLIM contributors:</p>
16361636
<ul>
1637-
<li><strong><a href="https://join.slack.com/t/agntcy/shared_invite/zt-3xozr6nzq-i6LXv2P8l2kVW4_Prnny2w">AGNTCY Slack workspace</a></strong> — chat with maintainers and contributors</li>
1637+
<li><strong><a href="https://discord.gg/nbeEENusy">AGNTCY Discord server</a></strong> — chat with maintainers and contributors</li>
16381638
<li><strong><a href="https://zoom-lfx.platform.linuxfoundation.org/meetings/agntcy?view=week">AGNTCY Meeting Calendar</a></strong> — working group and community meetings</li>
16391639
<li><strong><a href="https://github.com/agntcy">AGNTCY on GitHub</a></strong> — organization home for all IoA projects</li>
16401640
<li><strong><a href="https://blogs.agntcy.org/">AGNTCY Blogs</a></strong> — announcements, tutorials, and project updates</li>

latest/javascripts/slim-header-scroll.js

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,27 @@
99
return;
1010
}
1111

12-
var threshold = 32;
12+
var collapseAt = 88;
13+
var expandAt = 16;
1314
var collapsed = null;
1415
var ticking = false;
1516

17+
function shouldCollapse(scrollY) {
18+
if (collapsed) {
19+
return scrollY > expandAt;
20+
}
21+
return scrollY > collapseAt;
22+
}
23+
1624
function update() {
1725
ticking = false;
18-
var shouldCollapse = window.scrollY > threshold;
19-
if (shouldCollapse === collapsed) {
26+
var shouldCollapseNow = shouldCollapse(window.scrollY);
27+
if (shouldCollapseNow === collapsed) {
2028
return;
2129
}
22-
collapsed = shouldCollapse;
23-
document.documentElement.classList.toggle("slim-tabs-collapsed", shouldCollapse);
24-
tabs.setAttribute("aria-hidden", shouldCollapse ? "true" : "false");
30+
collapsed = shouldCollapseNow;
31+
document.documentElement.classList.toggle("slim-tabs-collapsed", shouldCollapseNow);
32+
tabs.setAttribute("aria-hidden", shouldCollapseNow ? "true" : "false");
2533
}
2634

2735
function onScroll() {

latest/search/search_index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

latest/sitemap.xml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,74 +2,74 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
44
<loc>https://agntcy.github.io/slim/latest/</loc>
5-
<lastmod>2026-07-06</lastmod>
5+
<lastmod>2026-07-09</lastmod>
66
</url>
77
<url>
88
<loc>https://agntcy.github.io/slim/latest/community/</loc>
9-
<lastmod>2026-07-06</lastmod>
9+
<lastmod>2026-07-09</lastmod>
1010
</url>
1111
<url>
1212
<loc>https://agntcy.github.io/slim/latest/slim/slim-a2a/</loc>
13-
<lastmod>2026-07-06</lastmod>
13+
<lastmod>2026-07-09</lastmod>
1414
</url>
1515
<url>
1616
<loc>https://agntcy.github.io/slim/latest/slim/slim-authentication/</loc>
17-
<lastmod>2026-07-06</lastmod>
17+
<lastmod>2026-07-09</lastmod>
1818
</url>
1919
<url>
2020
<loc>https://agntcy.github.io/slim/latest/slim/slim-controller-reference/</loc>
21-
<lastmod>2026-07-06</lastmod>
21+
<lastmod>2026-07-09</lastmod>
2222
</url>
2323
<url>
2424
<loc>https://agntcy.github.io/slim/latest/slim/slim-controller/</loc>
25-
<lastmod>2026-07-06</lastmod>
25+
<lastmod>2026-07-09</lastmod>
2626
</url>
2727
<url>
2828
<loc>https://agntcy.github.io/slim/latest/slim/slim-data-plane-config/</loc>
29-
<lastmod>2026-07-06</lastmod>
29+
<lastmod>2026-07-09</lastmod>
3030
</url>
3131
<url>
3232
<loc>https://agntcy.github.io/slim/latest/slim/slim-data-plane/</loc>
33-
<lastmod>2026-07-06</lastmod>
33+
<lastmod>2026-07-09</lastmod>
3434
</url>
3535
<url>
3636
<loc>https://agntcy.github.io/slim/latest/slim/slim-group-tutorial/</loc>
37-
<lastmod>2026-07-06</lastmod>
37+
<lastmod>2026-07-09</lastmod>
3838
</url>
3939
<url>
4040
<loc>https://agntcy.github.io/slim/latest/slim/slim-group/</loc>
41-
<lastmod>2026-07-06</lastmod>
41+
<lastmod>2026-07-09</lastmod>
4242
</url>
4343
<url>
4444
<loc>https://agntcy.github.io/slim/latest/slim/slim-howto/</loc>
45-
<lastmod>2026-07-06</lastmod>
45+
<lastmod>2026-07-09</lastmod>
4646
</url>
4747
<url>
4848
<loc>https://agntcy.github.io/slim/latest/slim/slim-integrations/</loc>
49-
<lastmod>2026-07-06</lastmod>
49+
<lastmod>2026-07-09</lastmod>
5050
</url>
5151
<url>
5252
<loc>https://agntcy.github.io/slim/latest/slim/slim-mcp/</loc>
53-
<lastmod>2026-07-06</lastmod>
53+
<lastmod>2026-07-09</lastmod>
5454
</url>
5555
<url>
5656
<loc>https://agntcy.github.io/slim/latest/slim/slim-otel/</loc>
57-
<lastmod>2026-07-06</lastmod>
57+
<lastmod>2026-07-09</lastmod>
5858
</url>
5959
<url>
6060
<loc>https://agntcy.github.io/slim/latest/slim/slim-overview/</loc>
61-
<lastmod>2026-07-06</lastmod>
61+
<lastmod>2026-07-09</lastmod>
6262
</url>
6363
<url>
6464
<loc>https://agntcy.github.io/slim/latest/slim/slim-rpc/</loc>
65-
<lastmod>2026-07-06</lastmod>
65+
<lastmod>2026-07-09</lastmod>
6666
</url>
6767
<url>
6868
<loc>https://agntcy.github.io/slim/latest/slim/slim-session/</loc>
69-
<lastmod>2026-07-06</lastmod>
69+
<lastmod>2026-07-09</lastmod>
7070
</url>
7171
<url>
7272
<loc>https://agntcy.github.io/slim/latest/slim/slim-slimrpc-compiler/</loc>
73-
<lastmod>2026-07-06</lastmod>
73+
<lastmod>2026-07-09</lastmod>
7474
</url>
7575
</urlset>

latest/sitemap.xml.gz

0 Bytes
Binary file not shown.

latest/slim/slim-howto/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2225,10 +2225,10 @@ <h2 id="next-steps">Next Steps</h2>
22252225
<li>Read the <a href="../slim-data-plane/">messaging layer documentation</a></li>
22262226
<li>Explore the <a href="https://github.com/agntcy/slim-bindings">example applications</a></li>
22272227
<li>Learn about <a href="../slim-data-plane-config/">configuration options</a></li>
2228-
<li>Join us on <a href="https://join.slack.com/t/agntcy/shared_invite/zt-3xozr6nzq-i6LXv2P8l2kVW4_Prnny2w">Slack</a></li>
2228+
<li>Join us on <a href="https://discord.gg/nbeEENusy">Discord</a></li>
22292229
</ol>
22302230
<h2 id="need-help">Need Help?</h2>
2231-
<p>If you get stuck, check the <a href="../../">detailed documentation</a>, ask questions in our <a href="https://join.slack.com/t/agntcy/shared_invite/zt-3hb4p7bo0-5H2otGjxGt9OQ1g5jzK_GQ">community forums</a>, or report issues on <a href="https://github.com/agntcy/slim">GitHub</a>.</p>
2231+
<p>If you get stuck, check the <a href="../../">detailed documentation</a>, ask questions in our <a href="https://discord.gg/nbeEENusy">Discord community</a>, or report issues on <a href="https://github.com/agntcy/slim">GitHub</a>.</p>
22322232

22332233

22342234

latest/stylesheets/agntcy-docs.css

Lines changed: 30 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -153,38 +153,55 @@
153153
/* Collapse Home / Documentation / Community tabs on scroll; keep header row. */
154154
:root {
155155
--slim-tabs-row-height: 3rem;
156+
--slim-tabs-collapse-duration: 0.22s;
156157
}
157158

158159
.md-header .md-tabs {
159-
max-height: var(--slim-tabs-row-height);
160+
display: grid;
161+
grid-template-rows: 1fr;
160162
overflow: hidden;
161-
transition:
162-
max-height 0.25s ease,
163-
opacity 0.2s ease,
164-
visibility 0.2s ease;
163+
transition: grid-template-rows var(--slim-tabs-collapse-duration) ease;
164+
}
165+
166+
.md-header .md-tabs > .md-grid {
167+
min-height: 0;
168+
overflow: hidden;
169+
opacity: 1;
170+
width: 100%;
171+
max-width: 80%;
172+
margin-inline: auto;
173+
transition: opacity var(--slim-tabs-collapse-duration) ease;
165174
}
166175

167176
html.slim-tabs-collapsed .md-header .md-tabs {
168-
max-height: 0;
169-
opacity: 0;
170-
visibility: hidden;
177+
grid-template-rows: 0fr;
171178
pointer-events: none;
172179
}
173180

174-
html.slim-tabs-collapsed .md-header--lifted ~ .md-container .md-sidebar {
175-
top: var(--md-header-height, 2.4rem);
181+
html.slim-tabs-collapsed .md-header .md-tabs > .md-grid {
182+
opacity: 0;
176183
}
177184

178-
html.slim-tabs-collapsed .md-header--lifted ~ .md-container .md-typeset :target {
179-
--md-scroll-margin: calc(var(--md-header-height, 2.4rem) + 1.2rem);
185+
.md-header--lifted ~ .md-container .md-sidebar {
186+
transition: top var(--slim-tabs-collapse-duration) ease;
180187
}
181188

182189
@media (prefers-reduced-motion: reduce) {
183-
.md-header .md-tabs {
190+
.md-header .md-tabs,
191+
.md-header .md-tabs > .md-grid,
192+
.md-header--lifted ~ .md-container .md-sidebar {
184193
transition: none;
185194
}
186195
}
187196

197+
html.slim-tabs-collapsed .md-header--lifted ~ .md-container .md-sidebar {
198+
top: var(--md-header-height, 2.4rem);
199+
}
200+
201+
html.slim-tabs-collapsed .md-header--lifted ~ .md-container .md-typeset :target {
202+
--md-scroll-margin: calc(var(--md-header-height, 2.4rem) + 1.2rem);
203+
}
204+
188205
/* Search inset pill — matches header (form on desktop, overlay on mobile) */
189206
.md-header .md-search .md-search__form,
190207
[data-md-toggle="search"]:checked ~ .md-header .md-search__form {

latest/stylesheets/slim-landing.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ body:has(.slim-landing) .md-tabs__item--active .md-tabs__link {
6666

6767
.md-main:has(.slim-landing) {
6868
overflow-x: hidden;
69-
overflow-anchor: none;
7069
}
7170

7271
:root {

slimctl-v2.0.0-alpha.1/community/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1625,7 +1625,7 @@ <h1 id="slim-community">SLIM Community</h1>
16251625
open on the specification, the Rust data plane, the control plane, the language
16261626
bindings, and the protocol integrations. If you run SLIM nodes, build agents on
16271627
top of the bindings, or integrate SLIM transport into your stack, the links
1628-
below are where the work happens—repos, Slack, meetings, and recent posts from
1628+
below are where the work happens—repos, Discord, meetings, and recent posts from
16291629
the team.</p>
16301630
<p>SLIM is developed within
16311631
<a href="https://github.com/agntcy">AGNTCY</a>, alongside DIR, OASF, and other
@@ -1634,7 +1634,7 @@ <h1 id="slim-community">SLIM Community</h1>
16341634
<h2 id="connect-with-us">Connect with us</h2>
16351635
<p>Stay involved with the AGNTCY community and SLIM contributors:</p>
16361636
<ul>
1637-
<li><strong><a href="https://join.slack.com/t/agntcy/shared_invite/zt-3xozr6nzq-i6LXv2P8l2kVW4_Prnny2w">AGNTCY Slack workspace</a></strong> — chat with maintainers and contributors</li>
1637+
<li><strong><a href="https://discord.gg/nbeEENusy">AGNTCY Discord server</a></strong> — chat with maintainers and contributors</li>
16381638
<li><strong><a href="https://zoom-lfx.platform.linuxfoundation.org/meetings/agntcy?view=week">AGNTCY Meeting Calendar</a></strong> — working group and community meetings</li>
16391639
<li><strong><a href="https://github.com/agntcy">AGNTCY on GitHub</a></strong> — organization home for all IoA projects</li>
16401640
<li><strong><a href="https://blogs.agntcy.org/">AGNTCY Blogs</a></strong> — announcements, tutorials, and project updates</li>

slimctl-v2.0.0-alpha.1/javascripts/slim-header-scroll.js

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,27 @@
99
return;
1010
}
1111

12-
var threshold = 32;
12+
var collapseAt = 88;
13+
var expandAt = 16;
1314
var collapsed = null;
1415
var ticking = false;
1516

17+
function shouldCollapse(scrollY) {
18+
if (collapsed) {
19+
return scrollY > expandAt;
20+
}
21+
return scrollY > collapseAt;
22+
}
23+
1624
function update() {
1725
ticking = false;
18-
var shouldCollapse = window.scrollY > threshold;
19-
if (shouldCollapse === collapsed) {
26+
var shouldCollapseNow = shouldCollapse(window.scrollY);
27+
if (shouldCollapseNow === collapsed) {
2028
return;
2129
}
22-
collapsed = shouldCollapse;
23-
document.documentElement.classList.toggle("slim-tabs-collapsed", shouldCollapse);
24-
tabs.setAttribute("aria-hidden", shouldCollapse ? "true" : "false");
30+
collapsed = shouldCollapseNow;
31+
document.documentElement.classList.toggle("slim-tabs-collapsed", shouldCollapseNow);
32+
tabs.setAttribute("aria-hidden", shouldCollapseNow ? "true" : "false");
2533
}
2634

2735
function onScroll() {

0 commit comments

Comments
 (0)