GraphQL schema design, federation architecture, and real-time subscription implementation for distributed graph systems.
Works with
Covers schema-first design with Apollo Federation 2.5+, including entity resolution, subgraph composition, and federation directives
Provides resolver patterns with DataLoader for N+1 prevention, batching, and caching across distributed architectures
Includes query complexity analysis, depth limiting, and field-level security to prevent abuse before deployment
S
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiongraphql-architectExecute the skills CLI command in your project's root directory to begin installation:
Fetches graphql-architect from jeffallan/claude-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate graphql-architect. Access via /graphql-architect in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
5
total installs
5
this week
7.9K
GitHub stars
0
upvotes
Run in your terminal
5
installs
5
this week
7.9K
stars
Senior GraphQL architect specializing in schema design and distributed graph architectures with deep expertise in Apollo Federation 2.5+, GraphQL subscriptions, and performance optimization.
@key entities resolve correctly
@key directives, check for missing or mismatched type definitions across subgraphs, resolve any @external field inconsistencies, then re-run compositionLoad detailed guidance based on context:
| Topic | Reference | Load When |
|---|---|---|
| Schema Design | references/schema-design.md |
Types, interfaces, unions, enums, input types |
| Resolvers | references/resolvers.md |
Resolver patterns, context, DataLoader, N+1 |
| Federation | references/federation.md |
Apollo Federation, subgraphs, entities, directives |
| Subscriptions | references/subscriptions.md |
Real-time updates, WebSocket, pub/sub patterns |
| Security | references/security.md |
Query depth, complexity analysis, authentication |
| REST Migration | references/migration-from-rest.md |
Migrating REST APIs to GraphQL |
# products subgraph
type Product @key(fields: "id") {
id: ID!
name: String!
price: Float!
inStock: Boolean!
}
# reviews subgraph — extends Product from products subgraph
type Product @key(fields: "id") {
id: ID! @external
reviews: [Review!]!
}
type Review {
id: ID!
rating: Int!
body: String
author: User! @shareable
}
type User @shareable {
id: ID!
username: String!
}
// context setup — one DataLoader instance per request
const context = ({ req }) => ({
loaders: {
user: new DataLoader(async (userIds) => {
const users = await db.users.findMany({ where: { id: { in: userIds } } });
// return results in same order as input keys
return userIds.map((id) => users.find((u) => u.id === id) ?? null);
}),
},
});
// resolver — batches all user lookups in a single query
const resolvers = {
Review: {
author: (review, _args, { loaders }) => loaders.user.load(review.authorId),
},
};
import { createComplexityRule } from 'graphql-query-complexity';
const server = new ApolloServer({
schema,
validationRules: [
createComplexityRule({
maximumComplexity: 1000,
onComplete: (complexity) => console.log('Query complexity:', complexity),
}),
],
});
When implementing GraphQL features, provide:
Apollo Server, Apollo Federation 2.5+, GraphQL SDL, DataLoader, GraphQL Subscriptions, WebSocket, Redis pub/sub, schema composition, query complexity, persisted queries, schema stitching, type generation
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
Useful defaults in graphql-architect — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Useful defaults in graphql-architect — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
We added graphql-architect from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
graphql-architect is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Solid pick for teams standardizing on skills: graphql-architect is focused, and the summary matches what you get after install.
I recommend graphql-architect for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
graphql-architect has been reliable in day-to-day use. Documentation quality is above average for community skills.
graphql-architect reduced setup friction for our internal harness; good balance of opinion and flexibility.
Solid pick for teams standardizing on skills: graphql-architect is focused, and the summary matches what you get after install.
graphql-architect is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
showing 1-10 of 60