Skip to main content
Run any Skill in Manus
with one click
GitHub repository

LevelUpSpeckit-Plus

LevelUpSpeckit-Plus contains 13 collected skills from MuhammedSuhaib, with repository-level occupation coverage and site-owned skill detail pages.

skills collected
13
Stars
5
updated
2026-02-14
Forks
0
Occupation coverage
4 occupation categories · 100% classified
repository explorer

Skills in this repository

nextjs-seo-optimizer
market-research-analysts-and-marketing-specialists-131161

Guidance for ranking Next.js sites on search engines. Use when Claude needs to: (1) Implement/audit the Metadata API (static or dynamic), (2) Create automated robots.ts or sitemap.ts files, (3) Set canonical URLs, (4) Inject JSON-LD structured data, or (5) Optimize rendering (Server vs. Client Components) for crawlability.

2026-02-14
nextjs-16-async-apis
web-developers

Guide for Next.js 16 fully async APIs. Covers cookies(), headers(), params, and searchParams patterns that must be awaited. Use when accessing server context in Server Components, Route Handlers, or Proxy functions. Essential for Next.js 16 compliance.

2026-01-02
nextjs-16-proxy-patterns
web-developers

Guide for Next.js 16 proxy patterns, replacing the deprecated middleware functionality. Covers the new proxy.ts file convention, async request APIs, and proper request interception. Use when implementing authentication, redirects, headers modification, or request processing at the network boundary level.

2026-01-02
nextjs-dynamic-routes-params
web-developers

Guide for Next.js App Router dynamic routes and pathname parameters. Use when building pages that depend on URL segments (IDs, slugs, nested paths), accessing the `params` prop, or fetching resources by identifier. Helps avoid over-nesting by defaulting to the simplest route structure (e.g., `app/[id]` instead of `app/products/[id]` unless the URL calls for it).

2026-01-02
nextjs-pathname-id-fetch
web-developers

Focused pattern for fetching data using URL parameters in Next.js. Covers creating dynamic routes ([id], [slug]) and accessing route parameters in server components to fetch data from APIs. Use when building pages that display individual items (product pages, blog posts, user profiles) based on a URL parameter. Complements nextjs-dynamic-routes-params with a simplified, common-case pattern.

2026-01-02
nextjs-server-client-components
web-developers

Guide for choosing between Server Components and Client Components in Next.js App Router. CRITICAL for useSearchParams (requires Suspense + 'use client'), navigation (Link, redirect, useRouter), cookies/headers access, and 'use client' directive. Activates when prompt mentions useSearchParams, Suspense, navigation, routing, Link component, redirect, pathname, searchParams, cookies, headers, async components, or 'use client'. Essential for avoiding mixing server/client APIs.

2026-01-02
nextjs-server-navigation
web-developers

Guide for implementing navigation in Next.js Server Components using Link component and redirect() function. Covers the difference between server and client navigation methods. Use when adding links, redirects, or navigation logic in server components without converting them to client components unnecessarily.

2026-01-02
skill-creator
software-developers

Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.

2025-12-27
better-auth-jwt-jwks
information-security-analysts

Expert skill for implementing Better Auth with JWT tokens and JWKS (JSON Web Key Set) for secure authentication between Next.js frontend and FastAPI backend. Handles JWT token generation, verification, JWKS endpoint setup, and secure API communication. Includes setup for database integration, session management, and user isolation. Use when implementing authentication between frontend (Next.js) and backend (FastAPI) services with JWT tokens and JWKS.

2025-12-27
docusaurus-auth
software-developers

Expert skill for implementing authentication in Docusaurus static sites. Handles FastAPI backend setup for authentication, JWT token management, and secure API communication. Includes setup for static site generation, client-side authentication, and user data protection. Use when adding authentication to Docusaurus static sites, implementing FastAPI backend for authentication services, or securing API routes with JWT tokens in static site context.

2025-12-27
fastapi-jwt-auth
software-developers

Expert skill for implementing JWT-based authentication in FastAPI applications. Handles token generation, verification, user authentication, protected routes, and security best practices. Includes setup for password hashing, OAuth2 schemes, and user data isolation. Use when implementing JWT authentication in FastAPI applications, securing API endpoints with token-based authentication, or implementing user registration and login functionality.

2025-12-27
session-management-ssg-ssr
web-developers

Expert skill for implementing session management in SSG (Static Site Generation) and SSR (Server-Side Rendering) contexts. Covers stateless authentication with JWT, database session management, client-side session handling, and security best practices for different rendering strategies. Use when implementing session management in static sites (SSG), handling authentication in server-side rendered applications (SSR), or implementing stateless authentication with JWT tokens.

2025-12-27
qdrant-rag-implementation
software-developers

This skill provides guidance for implementing robust Qdrant vector database integration with RAG (Retrieval Augmented Generation) systems, including proper async client handling, error management, and performance optimization.

2025-12-24