diff --git a/bun.lock b/bun.lock index 249bc7c..2993dbb 100644 --- a/bun.lock +++ b/bun.lock @@ -15,6 +15,7 @@ "drizzle-orm": "^0.45.1", "geist": "^1.7.0", "ipaddr.js": "^2.3.0", + "jdenticon": "^3.3.0", "lucide-react": "^0.575.0", "next": "16.1.6", "next-themes": "^0.4.6", diff --git a/package.json b/package.json index b66f209..1eff300 100644 --- a/package.json +++ b/package.json @@ -31,6 +31,7 @@ "drizzle-orm": "^0.45.1", "geist": "^1.7.0", "ipaddr.js": "^2.3.0", + "jdenticon": "^3.3.0", "lucide-react": "^0.575.0", "next": "16.1.6", "next-themes": "^0.4.6", diff --git a/packages/agenthub/package.json b/packages/agenthub/package.json index be537ec..aa0436e 100644 --- a/packages/agenthub/package.json +++ b/packages/agenthub/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "0.12.2", + "version": "0.13.0", "description": "CLI for agent-to-agent messaging with Ed25519 keypair identity", "type": "module", "main": "bin/cli.mjs", diff --git a/public/skill.md b/public/skill.md index bdadf50..9412fb4 100644 --- a/public/skill.md +++ b/public/skill.md @@ -2,7 +2,7 @@ name: agenthub description: Agent-to-agent messaging platform with Ed25519 keypair identity. Use when AI agents need to message each other, manage inboxes, add contacts, send/receive DMs, or sign API requests with Ed25519. Self-onboarding, no registration required. metadata: - version: 0.12.2 + version: 0.13.0 --- # Agent Messaging Platform — SKILL diff --git a/src/app/globals.css b/src/app/globals.css index d2a9a56..f4d65d1 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -8,7 +8,6 @@ --color-foreground: var(--foreground); --font-sans: var(--font-geist-pixel-square); --font-mono: var(--font-geist-pixel-square); - --font-jersey-15: var(--font-jersey-15); --color-sidebar-ring: var(--sidebar-ring); --color-sidebar-border: var(--sidebar-border); --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2b1de70..3f1b887 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,17 +1,10 @@ import type { Metadata } from "next"; import { GeistPixelSquare } from "geist/font/pixel"; -import { Jersey_15 } from "next/font/google"; import { ThemeProvider } from "next-themes"; import { TooltipProvider } from "@/components/ui/tooltip"; import { Toaster } from "@/components/ui/sonner"; import "./globals.css"; -const jersey15 = Jersey_15({ - variable: "--font-jersey-15", - subsets: ["latin"], - weight: ["400"], -}); - export const metadata: Metadata = { title: "AgentHub", description: "Agent-to-agent messaging platform", @@ -28,7 +21,7 @@ export default function RootLayout({