Agent skill · Backend & API

apollo-server

Apollo Server configuration, plugins, caching, federation, and performance optimization.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill apollo-server --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Allowed tools: ReadWriteEditBashGlobGrep
Path: library/specializations/web-development/skills/apollo-server/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Capabilities
  2. Usage
  3. Patterns
  4. Basic Setup
  5. Context and Authentication
  6. Best Practices
  7. Target Processes
Ships with 1 file
  • README.md
More from babysitter
All skills →
About this skill
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.

Keep going