apollo-server
Apollo Server configuration, plugins, caching, federation, and performance optimization.
npx skills add a5c-ai/babysitter --skill apollo-server --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Apollo Server Skill Expert assistance for implementing GraphQL APIs with Apollo Server. ## Capabilities - Configure Apollo Server with Express/Fastify - Implement plugins for logging and metrics - Set up caching strategies - Build Apollo Federation gateways - Handle authentication context - Optimize performance with persisted queries ## Usage Invoke this skill when you need to: - Set up Apollo Server - Implement caching - Build federated services - Add custom plugins - Configure subscriptions ## Patterns ### Basic Setup ```typescript import { ApolloServer } from '@apollo/server'; import { expressMiddleware } from '@apollo/server/express4'; import { ApolloServerPluginDrainHttpServer } from '@apollo/server/plugin/drainHttpServer'; import express from 'express'; import http from 'http'; import cors from 'cors'; import { typeDefs } from './schema'; import { resolvers } from './resolvers'; import { createContext } from './context'; async function startServer() { const app = express(); const httpServer = http.createServer(app); const server = new ApolloServer({ typeDefs, resolvers, plugins: [ApolloServerPluginDrainHttpServer({ httpServer })], }); await server.start(); app.use( '/graphq
- Capabilities
- Usage
- Patterns
- Basic Setup
- Context and Authentication
- Best Practices
- Target Processes
What does the apollo-server skill do?
Apollo Server configuration, plugins, caching, federation, and performance optimization.
How do I install it?
Run `npx skills add a5c-ai/babysitter --skill apollo-server --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
