Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions docs/.index
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ nav:
- Agent Directory Service: https://dir.agntcy.org/latest/
- Secure Low-Latency Interactive Messaging (SLIM): https://slim.agntcy.org/latest/
- Identity: https://spec.identity.agntcy.org/docs/intro
- SHADI: https://shadi.agntcy.org/
- Observability and Evaluation: obs-and-eval
- CSIT: csit
- Getting Started: coffee-agntcy
Expand Down
16 changes: 8 additions & 8 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,14 @@ hide:

[:octicons-arrow-right-24: Identity overview]([[ agntcy.identity_url ]])

- :material-shield-home-outline:{ .lg .middle } **SHADI**

---

Secure Host for Agentic AI Dynamic Instantiation — a hardened runtime with verified identity, gated secrets, OS sandboxing, and encrypted local memory.

[:octicons-arrow-right-24: SHADI docs]([[ agntcy.shadi_url ]])

- :material-chart-line:{ .lg .middle } **Observability and Evaluation**

---
Expand All @@ -106,14 +114,6 @@ hide:

[:octicons-arrow-right-24: Get started](coffee-agntcy/get-started.md)

- :material-book-open-page-variant-outline:{ .lg .middle } **Glossary**

---

Definitions for terms used across AGNTCY documentation.

[:octicons-arrow-right-24: Glossary](glossary.md)

- :material-hand-heart-outline:{ .lg .middle } **How to Contribute**

---
Expand Down
18 changes: 18 additions & 0 deletions docs/stylesheets/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,24 @@ html [data-md-color-primary=black] .md-nav--primary .md-nav__title[for=__drawer]
background-color: rgb(12, 31, 54);
}

/* External site links in the primary nav — external-link indicator */
.md-nav--primary .md-nav__link[href^="http"]::after {
content: "↗";
flex-shrink: 0;
align-self: center;
margin-inline-start: auto;
padding-inline-start: 0.25rem;
font-size: 0.8em;
line-height: 1;
opacity: 0.55;
transition: opacity 125ms;
}

.md-nav--primary .md-nav__link[href^="http"]:hover::after,
.md-nav--primary .md-nav__link[href^="http"]:focus-visible::after {
opacity: 0.85;
}

.md-nav__title {
font-size: 0 !important;
}
Expand Down
41 changes: 41 additions & 0 deletions docs/stylesheets/landing.css
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,35 @@ body:has(.agntcy-landing) .md-footer nav.md-footer__inner {
height: 1em;
}

/* External doc cards — ↗ instead of in-site arrow */
.md-typeset .agntcy-resources .grid.cards > ul > li > p:last-child a[href^="http"] .twemoji {
display: none;
}

.md-typeset .agntcy-resources .grid.cards > ul > li > p:last-child a[href^="http"]::after {
content: "↗";
font-size: 0.85em;
line-height: 1;
opacity: 0.75;
}

.md-typeset
.agntcy-resources
.grid.cards
> ul
> li
> p:last-child
a[href^="http"]:hover::after,
.md-typeset
.agntcy-resources
.grid.cards
> ul
> li
> p:last-child
a[href^="http"]:focus-visible::after {
opacity: 1;
}

/* ----------------------------------------------------------------------------
Connect with AGNTCY
---------------------------------------------------------------------------- */
Expand Down Expand Up @@ -408,3 +437,15 @@ body:has(.agntcy-landing) .md-footer nav.md-footer__inner {
height: 1rem;
flex-shrink: 0;
}

.md-typeset .agntcy-connect__link::after {
content: "↗";
font-size: 0.8em;
line-height: 1;
opacity: 0.65;
}

.md-typeset .agntcy-connect__link:hover::after,
.md-typeset .agntcy-connect__link:focus-visible::after {
opacity: 0.9;
}
1 change: 1 addition & 0 deletions mkdocs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ extra:
dir_url: https://dir.agntcy.org/latest/
slim_url: https://slim.agntcy.org/latest/
identity_url: https://spec.identity.agntcy.org/docs/intro
shadi_url: https://shadi.agntcy.org/
copyright: "© 2026, Agntcy, a Series of LF Projects, LLC. All rights reserved."
analytics:
provider: google
Expand Down
Loading