-
Notifications
You must be signed in to change notification settings - Fork 7
Add the AgenticIdentityFramework callout component
#636
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
Draft
aatuvai
wants to merge
3
commits into
main
Choose a base branch
from
aatuvai/2026-04-27-aif-bottom-callout
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
111 changes: 111 additions & 0 deletions
111
src/components/AgenticIdentity/AgenticIdentity.module.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,111 @@ | ||
| .agenticIdentityFramework { | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: var(--m-3); | ||
| margin-top: var(--m-4); | ||
|
|
||
| .header { | ||
| display: flex; | ||
| justify-content: space-between; | ||
| align-items: center; | ||
| gap: var(--m-3); | ||
|
|
||
| .title { | ||
| font-size: var(--fs-header-4); | ||
| margin-bottom: var(--m-0-5); | ||
| } | ||
|
|
||
| .description { | ||
| font-size: var(--fs-text-xl); | ||
| color: var(--color-foreground-muted); | ||
| margin: 0; | ||
| } | ||
|
|
||
| .link { | ||
| position: relative; | ||
| display: flex; | ||
| align-items: center; | ||
| height: auto; | ||
| padding: var(--m-1-5) var(--m-4); | ||
| overflow: unset; | ||
| border-radius: 35px; | ||
| font-weight: var(--fw-regular); | ||
|
|
||
| @media (--lg-scr) { | ||
| margin-left: auto; | ||
| } | ||
| } | ||
| } | ||
|
|
||
| .pillars { | ||
| border-radius: var(--r-lg); | ||
| border: 1px solid var(--color-tonal-neutral-0); | ||
| } | ||
|
|
||
| .pillar { | ||
| padding: var(--m-1-5) var(--m-2); | ||
| display: grid; | ||
| grid-template-columns: minmax(0, 39.6%) minmax(0, 60.4%); | ||
| gap: var(--m-1); | ||
| border-bottom: 1px solid var(--color-tonal-neutral-0); | ||
|
|
||
| @media (--md-scr) { | ||
| gap: var(--m-3); | ||
| } | ||
|
|
||
| &:last-child { | ||
| border-bottom: none; | ||
| } | ||
|
|
||
| & > div { | ||
| display: flex; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .pillarHeader { | ||
| gap: var(--m-2); | ||
|
|
||
| svg { | ||
| min-width: var(--m-3); | ||
| } | ||
| } | ||
|
|
||
| .pillarTitle { | ||
| font-size: var(--fs-text-xl); | ||
| margin-bottom: var(--m-0-5); | ||
| } | ||
|
|
||
| .pillarDescription { | ||
| color: var(--color-foreground-muted); | ||
| margin-bottom: 0; | ||
| font-size: var(--fs-text-lg); | ||
| } | ||
|
|
||
| .pillarItems { | ||
| list-style: none; | ||
| padding-left: 0; | ||
| display: flex; | ||
| align-items: center; | ||
| flex-wrap: wrap; | ||
| gap: var(--m-1); | ||
|
|
||
| .pillarItem { | ||
| font-size: 15px; | ||
| /* white-space: nowrap; */ | ||
| display: flex; | ||
| align-items: center; | ||
| text-align: center; | ||
| justify-content: center; | ||
| padding: var(--m-1) var(--m-3); | ||
| color: var(--color-foreground-slightly-muted); | ||
| background-color: var(--color-background-depth-3); | ||
| border-radius: var(--m-3); | ||
|
|
||
| &.active { | ||
| color: var(--color-white); | ||
| background-color: var(--color-dark-purple); | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,140 @@ | ||
| import cn from "clsx"; | ||
| import styles from "./AgenticIdentity.module.css"; | ||
| import Icon, { IconName } from "../Icon"; | ||
| import Button from "../Button"; | ||
|
|
||
| type AgenticIdentityFrameworkProps = { | ||
| name: string; | ||
| activeCategoryId: CategoryId; | ||
| href: string; | ||
| }; | ||
|
|
||
| type CategoryId = | ||
| | "digital-twins" | ||
| | "identity-for-long-running-agents" | ||
| | "identity-for-llm-apps" | ||
| | "mcp-access" | ||
| | "mcp-catalog" | ||
| | "llm-access" | ||
| | "visibility-discovery" | ||
| | "audit-security" | ||
| | "data-sharing" | ||
| | "workflows" | ||
| | "developer-experience"; | ||
|
|
||
| type Category = { | ||
| id: CategoryId; | ||
| name: string; | ||
| }; | ||
|
|
||
| type Pillar = { | ||
| name: string; | ||
| description: string; | ||
| icon: IconName; | ||
| items: Category[]; | ||
| }; | ||
|
|
||
| const AgenticIdentityFramework: React.FC<AgenticIdentityFrameworkProps> = ({ | ||
| name, | ||
| activeCategoryId, | ||
| href, | ||
| }) => { | ||
| const pillars: Pillar[] = [ | ||
| { | ||
| name: "Identity", | ||
| description: | ||
| "Issue cryptographic identities to agents without shared secrets or bootstrapping tokens", | ||
| icon: "certificate", | ||
| items: [ | ||
| { | ||
| id: "digital-twins", | ||
| name: "Digital Twins", | ||
| }, | ||
| { | ||
| id: "identity-for-long-running-agents", | ||
| name: "Identity for long-running agents", | ||
| }, | ||
| { | ||
| id: "identity-for-llm-apps", | ||
| name: "Identity for LLM Apps", | ||
| }, | ||
| ], | ||
| }, | ||
| { | ||
| name: "Access", | ||
| description: | ||
| "Control and audit what agents can access via MCP proxy, catalog, and LLM rate limits", | ||
| icon: "keyholePurple", | ||
| items: [ | ||
| { id: "mcp-access", name: "MCP Access" }, | ||
| { id: "mcp-catalog", name: "MCP Catalog" }, | ||
| { id: "llm-access", name: "LLM Access" }, | ||
| ], | ||
| }, | ||
| { | ||
| name: "Security", | ||
| description: | ||
| "Discover unmanaged agents, detect policy violations, and maintain full audit trails", | ||
| icon: "shieldCheck2", | ||
| items: [ | ||
| { id: "visibility-discovery", name: "Visibility & Discovery" }, | ||
| { id: "audit-security", name: "Audit & Security" }, | ||
| ], | ||
| }, | ||
| { | ||
| name: "Scheduling & Orchestration", | ||
| description: | ||
| "Run agents reliably on Kubernetes and Temporal with retries, data sharing, and debugging", | ||
| icon: "calendarCheck", | ||
| items: [ | ||
| { id: "data-sharing", name: "Data Sharing" }, | ||
| { id: "workflows", name: "Workflows" }, | ||
| { id: "developer-experience", name: "Developer Experience" }, | ||
| ], | ||
| }, | ||
| ]; | ||
| return ( | ||
| <div className={styles.agenticIdentityFramework}> | ||
| <div className={styles.header}> | ||
| <div> | ||
| <h2 className={styles.title}>Understand the complete framework</h2> | ||
| <p className={styles.description}> | ||
| {name} is part of one of the four pillars. Explore what comes next. | ||
| </p> | ||
| </div> | ||
| <Button as="link" href={href} className={styles.link}> | ||
| Explore full framework → | ||
| </Button> | ||
| </div> | ||
| <div className={styles.pillars}> | ||
| {pillars.map((pillar) => ( | ||
| <div key={pillar.name} className={styles.pillar}> | ||
| <div className={styles.pillarHeader}> | ||
| <Icon name={pillar.icon} size="md" /> | ||
| <div> | ||
| <h3 className={styles.pillarTitle}>{pillar.name}</h3> | ||
| <p className={styles.pillarDescription}>{pillar.description}</p> | ||
| </div> | ||
| </div> | ||
| <div> | ||
| <ul className={styles.pillarItems}> | ||
| {pillar.items.map((item) => ( | ||
| <li | ||
| key={item.name} | ||
| className={cn(styles.pillarItem, { | ||
| [styles.active]: item.id === activeCategoryId, | ||
| })} | ||
| > | ||
| {item.name} | ||
| </li> | ||
| ))} | ||
| </ul> | ||
| </div> | ||
| </div> | ||
| ))} | ||
| </div> | ||
| </div> | ||
| ); | ||
| }; | ||
|
|
||
| export default AgenticIdentityFramework; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| export { default } from "./AgenticIdentity"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
The
18.xentry now points to a personal fork/feature branch, andscripts/update_submodules.shuses these exactbranch/repo_pathvalues in CI to fetch docs archives. This means production/CI builds can ingest non-release content (or fail once that fork branch is deleted), and it already violates the repository’s ownscripts/validate-docs-config.shbranch policy for merge-group builds.Useful? React with 👍 / 👎.