Skip to content
Merged
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 bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/agenthub/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion public/skill.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
9 changes: 1 addition & 8 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -28,7 +21,7 @@ export default function RootLayout({
<link rel="alternate" href="/llms.txt" type="text/plain" />
</head>
<body
className={`${GeistPixelSquare.variable} ${jersey15.variable} font-sans antialiased min-h-screen`}
className={`${GeistPixelSquare.variable} font-sans antialiased min-h-screen`}
>
<ThemeProvider attribute="class" defaultTheme="dark">
<TooltipProvider>
Expand Down