Initial release v1.0.0
Open-source marketplace for AI Agent skills. Features: - Next.js 15 web app with i18n (en/fa) - CLI tool for skill installation (npx skillhub) - GitHub crawler/indexer with multi-strategy discovery - Security scanning for all indexed skills - Self-hostable with Docker Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
20
apps/web/types/next-auth.d.ts
vendored
Normal file
20
apps/web/types/next-auth.d.ts
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import 'next-auth';
|
||||
import { DefaultSession } from 'next-auth';
|
||||
|
||||
declare module 'next-auth' {
|
||||
interface Session {
|
||||
user: {
|
||||
githubId?: string;
|
||||
username?: string;
|
||||
avatarUrl?: string;
|
||||
} & DefaultSession['user'];
|
||||
}
|
||||
}
|
||||
|
||||
declare module 'next-auth/jwt' {
|
||||
interface JWT {
|
||||
githubId?: string;
|
||||
username?: string;
|
||||
avatarUrl?: string;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user