Co-Pilot / 辅助式
更新于 a month ago

custom-plugin-graphql

Ppluginagentmarketplace
0.0k
pluginagentmarketplace/custom-plugin-graphql
80
Agent 评分

💡 摘要

一个用于构建GraphQL API的生产级插件,具有专业代理和技能。

🎯 适合人群

GraphQL开发者软件架构师技术教育工作者API设计师全栈开发者

🤖 AI 吐槽:看起来很能打,但别让配置把人劝退。

安全分析中风险

风险:Medium。建议检查:是否执行 shell/命令行指令;是否发起外网请求(SSRF/数据外发);文件读写范围与路径穿越风险。以最小权限运行,并在生产环境启用前审计代码与依赖。

Version License Status SASMP

Agents Skills Commands

Install Now | Explore Agents | View Skills | Star this repo


What is this?

GraphQL Development Assistant is a production-grade Claude Code plugin with 7 specialized agents and 7 skills for building GraphQL APIs - from fundamentals to production deployment.


Table of Contents


Quick Start

Prerequisites

  • Claude Code CLI v2.0.27+
  • Active Claude subscription

Installation (Choose One)

# Step 1: Add the plugin /plugin marketplace add pluginagentmarketplace/custom-plugin-graphql # Step 2: Restart Claude Code # Close and reopen your terminal/IDE
# Clone the repository git clone https://github.com/pluginagentmarketplace/custom-plugin-graphql.git cd custom-plugin-graphql # Load locally /plugin load . # Restart Claude Code

Verify Installation

After restart, you should see 7 GraphQL agents available.


Features

| Feature | Description | |---------|-------------| | 7 Specialized Agents | GraphQL Fundamentals, Schema Design, Resolvers, Apollo Server, Apollo Client, Security, Codegen | | 7 Production Skills | Complete code examples, patterns, and troubleshooting guides | | 4 Interactive Commands | Learn, Assess, Browse Agents, View Roadmaps | | SASMP v1.3.0 | Full protocol compliance with agent-skill bonding | | Production Patterns | DataLoader, Federation, graphql-shield, TypeScript codegen |


Agents

7 Specialized GraphQL Agents

| # | Agent | Purpose | Expertise | |---|-------|---------|-----------| | 1 | 01-graphql-fundamentals | Core GraphQL educator | Types, queries, mutations, subscriptions, fragments | | 2 | 02-graphql-schema | Schema design architect | Naming conventions, pagination, error handling, interfaces | | 3 | 03-graphql-resolvers | Performance specialist | DataLoader, N+1 prevention, batching, context design | | 4 | 04-graphql-apollo-server | Server configuration expert | Apollo Server v4, plugins, federation, caching | | 5 | 05-graphql-apollo-client | React integration expert | Hooks, cache management, optimistic UI, subscriptions | | 6 | 06-graphql-security | Security architect | JWT auth, graphql-shield, rate limiting, validation | | 7 | 07-graphql-codegen | TypeScript code generation | Types, React hooks, configuration, fragments |

Invoke Agents

Task(subagent_type="graphql:01-graphql-fundamentals")
Task(subagent_type="graphql:02-graphql-schema")
Task(subagent_type="graphql:03-graphql-resolvers")
Task(subagent_type="graphql:04-graphql-apollo-server")
Task(subagent_type="graphql:05-graphql-apollo-client")
Task(subagent_type="graphql:06-graphql-security")
Task(subagent_type="graphql:07-graphql-codegen")

Skills

7 Production-Grade Skills

| Skill | Description | Complexity | Invoke | |-------|-------------|------------|--------| | graphql-fundamentals | Types, queries, mutations, subscriptions | Beginner | Skill("graphql-fundamentals") | | graphql-schema-design | Naming, pagination, error patterns | Intermediate | Skill("graphql-schema-design") | | graphql-resolvers | DataLoader, batching, N+1 prevention | Intermediate | Skill("graphql-resolvers") | | graphql-apollo-server | Server v4, plugins, federation | Advanced | Skill("graphql-apollo-server") | | graphql-apollo-client | React hooks, cache, optimistic UI | Intermediate | Skill("graphql-apollo-client") | | graphql-security | Auth, rate limiting, validation | Advanced | Skill("graphql-security") | | graphql-codegen | TypeScript types, React hooks | Intermediate | Skill("graphql-codegen") |

Skill Features

Each skill includes:

  • Quick reference tables
  • Production code examples
  • Troubleshooting guides
  • Debug checklists
  • Related skills and agents

Commands

| Command | Description | Usage | |---------|-------------|-------| | /learn | Interactive GraphQL learning path | /learn [topic] | | /assess | Knowledge assessment & skill gap analysis | /assess [topic] | | /browse-agent | Explore 7 specialized GraphQL agents | /browse-agent [name] | | /roadmap | Complete GraphQL learning roadmaps | /roadmap [path] |

Example Usage

# Start learning GraphQL /learn fundamentals # Assess your knowledge /assess # Browse available agents /browse-agent # View full-stack roadmap /roadmap full-stack

Architecture

Agent-Skill Bonding

Agent                         Skill (PRIMARY_BOND)
──────────────────────────────────────────────────
01-graphql-fundamentals  ←→  graphql-fundamentals
02-graphql-schema        ←→  graphql-schema-design
03-graphql-resolvers     ←→  graphql-resolvers
04-graphql-apollo-server ←→  graphql-apollo-server
05-graphql-apollo-client ←→  graphql-apollo-client
06-graphql-security      ←→  graphql-security
07-graphql-codegen       ←→  graphql-codegen

Learning Path Dependencies

fundamentals (no prerequisites)
     ↓
schema-design (requires: fundamentals)
     ↓
resolvers (requires: fundamentals, schema)
     ↓
  ┌──┴──┐
  ↓     ↓
server  client (requires: fundamentals)
  │       │
  ↓       ↓
security codegen

Project Structure

custom-plugin-graphql/
├── .claude-plugin/
│   ├── plugin.json          # Plugin manifest
│   └── marketplace.json     # Marketplace metadata
├── agents/                   # 7 specialized agents
│   ├── 01-graphql-fundamentals.md
│   ├── 02-graphql-schema.md
│   ├── 03-graphql-resolvers.md
│   ├── 04-graphql-apollo-server.md
│   ├── 05-graphql-apollo-client.md
│   ├── 06-graphql-security.md
│   └── 07-graphql-codegen.md
├── skills/                   # 7 production skills
│   ├── graphql-fundamentals/SKILL.md
│   ├── graphql-schema-design/SKILL.md
│   ├── graphql-resolvers/SKILL.md
│   ├── graphql-apollo-server/SKILL.md
│   ├── graphql-apollo-client/SKILL.md
│   ├── graphql-security/SKILL.md
│   └── graphql-codegen/SKILL.md
├── commands/                 # 4 interactive commands
│   ├── learn.md
│   ├── assess.md
│   ├── browse-agent.md
│   └── roadmap.md
├── hooks/
│   └── hooks.json
├── README.md
├── CHANGELOG.md
└── LICENSE

Documentation

| Document | Description | |----------|-------------| | CHANGELOG.md | Version history | | CONTRIBUTING.md | How to contribute | | LICENSE | License information |


Metadata

| Field | Value | |-------|-------| | Version | 2.0.0 | | Last Updated | 2025-12-30 | | Status | Production Ready | | SASMP | v1.3.0 | | Agents | 7 | | Skills | 7 | | Commands | 4 |


Contributing

Contributions are welcome! Please read our Contributing Guide.

  1. Fork the repository
  2. Create your feature branch
  3. Follow SASMP v1.3.0 for new agents/skills
  4. Submit a pull request

Security

Important: This repository contains third-party code and dependencies.

  • Always review code before using in production
  • Check dependencies for known vulnerabilities
  • Follow security best practices
  • Report security issues privately via Issues

License

Copyright 2025 Dr. Umit Kacar & Muhsin Elcicek

Custom License - See LICENSE for details.


Contributors


Made with care for the Claude Code Community

GitHub

五维分析
清晰度8/10
创新性8/10
实用性9/10
完整性8/10
可维护性7/10
优缺点分析

优点

  • 全面的代理和技能集合。
  • 生产就绪的功能。
  • 互动命令用于学习。
  • 强大的社区支持。

缺点

  • 需要有效的Claude订阅。
  • 依赖第三方代码。
  • 初学者安装可能较复杂。
  • 高级功能的文档有限。

相关技能

pytorch

S
toolCode Lib / 代码库
92/ 100

“它是深度学习的瑞士军刀,但祝你好运能从47种安装方法里找到那个不会搞崩你系统的那一个。”

agno

S
toolCode Lib / 代码库
90/ 100

“它承诺成为智能体领域的Kubernetes,但得看开发者有没有耐心学习又一个编排层。”

nuxt-skills

S
toolCo-Pilot / 辅助式
90/ 100

“这本质上是一份组织良好的小抄,能把你的 AI 助手变成一只 Nuxt 框架的复读机。”

免责声明:本内容来源于 GitHub 开源项目,仅供展示和评分分析使用。

版权归原作者所有 pluginagentmarketplace.