mirror of
https://github.com/agentrhq/authsome.git
synced 2026-09-19 01:34:19 +08:00
df165b8b42
Update docs.json to match the Authsome Secure Console design system: - colors.primary: #83CA16 (lime) → #10B981 (Deep Emerald) - colors.light: #A3E635 → #4EDEA3 (emerald tint) - colors.dark: #65A30D → #059669 (deep emerald) - background.dark: #0A0A0A → #09090B (Obsidian) - font: add Hanken Grotesk for headings and body (matches DESIGN.md typography spec) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
303 lines
8.7 KiB
JSON
303 lines
8.7 KiB
JSON
{
|
|
"$schema": "https://mintlify.com/docs.json",
|
|
"theme": "mint",
|
|
"name": "Authsome",
|
|
"logo": {
|
|
"light": "/logo/light.svg",
|
|
"dark": "/logo/dark.svg"
|
|
},
|
|
"favicon": "/favicon.svg",
|
|
"description": "Local credential broker for AI agents. Log in once via OAuth2 or API key. Authsome keeps tokens fresh and injects them at runtime.",
|
|
"colors": {
|
|
"primary": "#10B981",
|
|
"light": "#4EDEA3",
|
|
"dark": "#059669"
|
|
},
|
|
"background": {
|
|
"color": {
|
|
"light": "#FFFFFF",
|
|
"dark": "#09090B"
|
|
}
|
|
},
|
|
"appearance": {
|
|
"default": "dark",
|
|
"strict": false
|
|
},
|
|
"font": {
|
|
"headings": {
|
|
"family": "Hanken Grotesk"
|
|
},
|
|
"body": {
|
|
"family": "Hanken Grotesk"
|
|
}
|
|
},
|
|
"banner": {
|
|
"content": "Authsome is in active development. [Star us on GitHub](https://github.com/agentrhq/authsome) to follow along.",
|
|
"dismissible": true
|
|
},
|
|
"seo": {
|
|
"indexing": "all",
|
|
"metatags": {
|
|
"canonical": "https://authsome.ai/docs",
|
|
"title-template": "%s · Authsome",
|
|
"og:site_name": "Authsome Docs",
|
|
"og:type": "website",
|
|
"og:description": "Local credential broker for AI agents. Log in once via OAuth2 or API key. Authsome keeps tokens fresh and injects them at runtime.",
|
|
"og:locale": "en_US",
|
|
"twitter:card": "summary_large_image",
|
|
"twitter:site": "@agentrhq",
|
|
"twitter:creator": "@agentrhq"
|
|
}
|
|
},
|
|
"navigation": {
|
|
"tabs": [
|
|
{
|
|
"tab": "Documentation",
|
|
"icon": "book-open",
|
|
"groups": [
|
|
{
|
|
"group": "Get started",
|
|
"icon": "rocket",
|
|
"pages": [
|
|
"index",
|
|
"installation",
|
|
"quickstart"
|
|
]
|
|
},
|
|
{
|
|
"group": "Concepts",
|
|
"icon": "lightbulb",
|
|
"pages": [
|
|
"concepts/architecture",
|
|
"concepts/credential-storage",
|
|
"concepts/proxy-injection",
|
|
"concepts/provider-registry",
|
|
"concepts/principal-vault-identity",
|
|
"concepts/the-daemon"
|
|
]
|
|
},
|
|
{
|
|
"group": "Security",
|
|
"icon": "shield-halved",
|
|
"pages": [
|
|
"security/threat-model",
|
|
"security/encryption",
|
|
"security/daemon-trust-boundary",
|
|
"security/disclosure"
|
|
]
|
|
},
|
|
{
|
|
"group": "Project",
|
|
"icon": "compass",
|
|
"pages": [
|
|
"roadmap",
|
|
"changelog",
|
|
"compared"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "Guides",
|
|
"icon": "book",
|
|
"groups": [
|
|
{
|
|
"group": "Guides",
|
|
"icon": "book",
|
|
"pages": [
|
|
"guides/login-with-oauth",
|
|
"guides/use-api-keys",
|
|
"guides/run-agents-with-proxy",
|
|
"guides/headless-device-code",
|
|
"guides/multiple-connections",
|
|
"guides/custom-providers"
|
|
]
|
|
},
|
|
{
|
|
"group": "Troubleshooting",
|
|
"icon": "stethoscope",
|
|
"pages": [
|
|
"troubleshooting/doctor",
|
|
"troubleshooting/auth-errors",
|
|
"troubleshooting/oauth-callbacks",
|
|
"troubleshooting/token-refresh",
|
|
"troubleshooting/proxy-networking",
|
|
"troubleshooting/daemon-issues"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "Reference",
|
|
"icon": "code",
|
|
"groups": [
|
|
{
|
|
"group": "Reference",
|
|
"icon": "code",
|
|
"pages": [
|
|
"reference/cli",
|
|
"reference/environment-variables",
|
|
"reference/bundled-providers",
|
|
"reference/python-library",
|
|
"reference/daemon-api",
|
|
"reference/audit-log"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "Integrations",
|
|
"icon": "plug",
|
|
"groups": [
|
|
{
|
|
"group": "Agent frameworks",
|
|
"icon": "robot",
|
|
"pages": [
|
|
"integrations/agents/index",
|
|
"integrations/agents/claude-code",
|
|
"integrations/agents/codex",
|
|
"integrations/agents/cursor",
|
|
"integrations/agents/opencode",
|
|
"integrations/agents/cowork",
|
|
"integrations/agents/nanoclaw",
|
|
"integrations/agents/hermes",
|
|
"integrations/agents/langchain",
|
|
"integrations/agents/llamaindex",
|
|
"integrations/agents/openai-agents-sdk",
|
|
"integrations/agents/anthropic-sdk",
|
|
"integrations/agents/python"
|
|
]
|
|
},
|
|
{
|
|
"group": "OAuth providers",
|
|
"icon": "right-to-bracket",
|
|
"pages": [
|
|
"integrations/oauth/index",
|
|
"integrations/oauth/atlassian",
|
|
"integrations/oauth/discord",
|
|
"integrations/oauth/github",
|
|
"integrations/oauth/gitlab",
|
|
"integrations/oauth/google",
|
|
"integrations/oauth/hubspot",
|
|
"integrations/oauth/klaviyo-oauth",
|
|
"integrations/oauth/linear",
|
|
"integrations/oauth/microsoft",
|
|
"integrations/oauth/notion",
|
|
"integrations/oauth/notion-dcr",
|
|
"integrations/oauth/postiz",
|
|
"integrations/oauth/slack",
|
|
"integrations/oauth/x"
|
|
]
|
|
},
|
|
{
|
|
"group": "API-key providers",
|
|
"icon": "key",
|
|
"pages": [
|
|
"integrations/api-key/index",
|
|
"integrations/api-key/ahrefs",
|
|
"integrations/api-key/apollo",
|
|
"integrations/api-key/ashby",
|
|
"integrations/api-key/beehiiv",
|
|
"integrations/api-key/brevo",
|
|
"integrations/api-key/buffer",
|
|
"integrations/api-key/calendly",
|
|
"integrations/api-key/clearbit",
|
|
"integrations/api-key/dub",
|
|
"integrations/api-key/g2",
|
|
"integrations/api-key/hunter",
|
|
"integrations/api-key/instantly",
|
|
"integrations/api-key/intercom",
|
|
"integrations/api-key/keywords-everywhere",
|
|
"integrations/api-key/klaviyo",
|
|
"integrations/api-key/lemlist",
|
|
"integrations/api-key/livestorm",
|
|
"integrations/api-key/mailchimp",
|
|
"integrations/api-key/mention-me",
|
|
"integrations/api-key/openai",
|
|
"integrations/api-key/optimizely",
|
|
"integrations/api-key/postmark",
|
|
"integrations/api-key/resend",
|
|
"integrations/api-key/rewardful",
|
|
"integrations/api-key/savvycal",
|
|
"integrations/api-key/semrush",
|
|
"integrations/api-key/sendgrid",
|
|
"integrations/api-key/tolt",
|
|
"integrations/api-key/typeform",
|
|
"integrations/api-key/wistia",
|
|
"integrations/api-key/zapier"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"navbar": {
|
|
"links": [
|
|
{
|
|
"label": "Discord",
|
|
"href": "https://discord.gg/9YP2C9tvMp",
|
|
"icon": {
|
|
"name": "discord",
|
|
"style": "brands"
|
|
}
|
|
},
|
|
{
|
|
"label": "PyPI",
|
|
"href": "https://pypi.org/project/authsome/",
|
|
"icon": {
|
|
"name": "python",
|
|
"style": "brands"
|
|
}
|
|
}
|
|
],
|
|
"primary": {
|
|
"type": "github",
|
|
"href": "https://github.com/agentrhq/authsome"
|
|
}
|
|
},
|
|
"contextual": {
|
|
"options": [
|
|
"copy",
|
|
"view",
|
|
"chatgpt",
|
|
"claude",
|
|
"cursor"
|
|
]
|
|
},
|
|
"feedback": {
|
|
"thumbsRating": true,
|
|
"suggestEdit": true
|
|
},
|
|
"footer": {
|
|
"socials": {
|
|
"github": "https://github.com/agentrhq/authsome",
|
|
"discord": "https://discord.gg/9YP2C9tvMp"
|
|
},
|
|
"links": [
|
|
{
|
|
"header": "Product",
|
|
"items": [
|
|
{ "label": "Home", "href": "https://authsome.ai" },
|
|
{ "label": "GitHub", "href": "https://github.com/agentrhq/authsome" },
|
|
{ "label": "PyPI", "href": "https://pypi.org/project/authsome/" }
|
|
]
|
|
},
|
|
{
|
|
"header": "Docs",
|
|
"items": [
|
|
{ "label": "Quickstart", "href": "/docs/quickstart" },
|
|
{ "label": "CLI reference", "href": "/docs/reference/cli" },
|
|
{ "label": "Architecture", "href": "/docs/concepts/architecture" },
|
|
{ "label": "llms.txt", "href": "/docs/llms.txt" }
|
|
]
|
|
},
|
|
{
|
|
"header": "Company",
|
|
"items": [
|
|
{ "label": "Agentr", "href": "https://agentr.dev" }
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|