Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问clear审计异常

apisix-adcapisix ADC 命令行

Agent Skill

apisix-adc 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

353

周安装

15

GitHub Stars

2

下载量

124
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:apisix-adc(apisix ADC 命令行)
来源仓库:https://github.com/skyeyoung/apisix-skills
仓库路径:skills/apisix-adc
安装命令:
npx skills add https://github.com/skyeyoung/apisix-skills --skill apisix-adc
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/skyeyoung/apisix-skills --skill apisix-adc

简介

Apache APISIX 声明式资源管理工具,通过 YAML 配置统一管理服务、路由、上游和插件等组件。

  • 适合大规模 API 网关管理,支持 SSL 证书、消费者认证和全局规则等高级配置场景。
  • 提供原子化更新和版本控制能力,可与 GitOps 工作流结合实现配置漂移防护。
  • 操作前应验证 YAML 语法正确性,并在非生产环境测试变更对现有流量路由的影响。
  • apisix-adc 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

ADC - APISIX Declarative CLI

ADC (APISIX Declarative CLI) is the official tool to manage all Apache APISIX resources declaratively via YAML configuration files.

Managed Resources:

  • Services - Group routes with shared upstream configuration
  • Routes - Request matching and forwarding rules
  • Upstreams - Backend service definitions with load balancing
  • Consumers - API users with authentication credentials
  • Plugins - Authentication, rate limiting, transformation, observability
  • Global Rules - Plugins applied to all requests
  • SSL Certificates - HTTPS configuration
  • Plugin Configs - Reusable plugin configurations

Quick Start Example

Here's a minimal working example to proxy requests:

services:
  - name: my-backend
    upstream:
      type: roundrobin
      nodes:
        - host: backend.example.com
          port: 8080
          weight: 1
    routes:
      - name: api-route
        uris:
          - /api/*
        methods:
          - GET
          - POST

Key points:

  • ONLY use top-level keys: services, consumers, global_rules, ssls, plugin_configs
  • DO NOT add name, version, or other fields at the root level
  • Each service must have: name, upstream, and routes

Guided Workflow

When working with APISIX, follow this workflow:

Step 1: Ensure ADC is Installed

Check if ADC is installed:

which adc || adc --version

If not installed, install it:

curl -sL "https://run.api7.ai/adc/install" | sh

Step 2: Configure Connection

Create or update .env file in the working directory with connection details:

ADC_SERVER=http://localhost:9180
ADC_TOKEN=edd1c9f034335f136f87ad84b625c8f1

Note: These are the default APISIX Admin API settings. If the user has custom settings, ask them for:

  • Server URL: Their APISIX Admin API endpoint
  • Admin API Key: Their custom admin key

Export environment variables and verify connection:

export ADC_SERVER=http://localhost:9180
export ADC_TOKEN=edd1c9f034335f136f87ad84b625c8f1
adc ping

If connection fails, help user troubleshoot:

  • Check if APISIX is running: docker ps or systemctl status apisix
  • Verify the server URL and port (Admin API default: 9180)
  • Confirm the Admin API key matches their APISIX configuration
  • Check network connectivity: curl http://localhost:9180/apisix/admin/routes

Step 3: Maintain Configuration File

Maintain an adc.yaml file based on user descriptions. The configuration file location should be in the current working directory or a location specified by the user.

When user describes their API requirements:

  1. Create or update adc.yaml with the appropriate configuration
  2. Use the schema from references/configuration-schema.md for correct YAML structure
  3. Validate the configuration:

IMPORTANT: Always export environment variables before running adc lint:

export ADC_SERVER=http://localhost:9180
export ADC_TOKEN=edd1c9f034335f136f87ad84b625c8f1
adc lint -f adc.yaml

Or use the bundled validation script:

${CLAUDE_PLUGIN_ROOT}/skills/adc/scripts/validate-yaml.sh adc.yaml

Translation guide for user descriptions:

User saysCreate/Update
"I have a backend at host:port"Add upstream node
"Route /api/users to my backend"Add route with uri
"Add rate limiting"Add limit-count plugin
"Require API key"Add key-auth plugin + consumer
"Enable CORS"Add cors plugin
"Add health check"Add upstream.checks configuration

Step 4: Preview and Sync

Before applying changes, always preview:

export ADC_SERVER=http://localhost:9180
export ADC_TOKEN=edd1c9f034335f136f87ad84b625c8f1
adc diff -f adc.yaml

Show the diff output to user and explain what will be created/updated/deleted.

Apply configuration to APISIX:

export ADC_SERVER=http://localhost:9180
export ADC_TOKEN=edd1c9f034335f136f87ad84b625c8f1
adc sync -f adc.yaml

Step 5: Verify

After sync, optionally verify by dumping current config:

adc dump -o current.yaml

Configuration Structure

ADC uses YAML format with these top-level resources:

services:
  - name: my-service
    upstream:
      nodes:
        - host: backend.example.com
          port: 8080
          weight: 1
    routes:
      - name: my-route
        uris:
          - /api/*
        methods:
          - GET
          - POST
        plugins:
          key-auth:
            _meta:
              disable: false

consumers:
  - username: api-user
    plugins:
      key-auth:
        key: my-secret-key

global_rules:
  - id: 1
    plugins:
      prometheus:
        prefer_name: true

APISIX Core Concepts

Routes

Match client requests and forward to upstreams. Support path matching, host matching, and method filtering.

Upstreams

Backend service definitions with load balancing. Support roundrobin, chash, ewma, least_conn algorithms.

Services

Reusable configuration grouping routes with shared upstream and plugins.

Consumers

API users with authentication credentials. Used with auth plugins (key-auth, jwt-auth, basic-auth).

Plugins

Middleware for authentication, rate limiting, transformation, observability. Applied at route, service, or consumer level.

Common Plugin Configurations

Rate Limiting

plugins:
  limit-count:
    count: 100
    time_window: 60
    key: remote_addr
    rejected_code: 429

API Key Authentication

# On route:
plugins:
  key-auth:
    _meta:
      disable: false

# Consumer:
consumers:
  - username: my-user
    plugins:
      key-auth:
        key: secret-api-key

CORS

plugins:
  cors:
    allow_origins: '*'
    allow_methods: 'GET,POST,PUT,DELETE'
    allow_headers: 'Authorization,Content-Type'
    max_age: 3600

Default Ports

ServicePort
Gateway Proxy9080 (HTTP), 9443 (HTTPS)
Admin API9180
etcd2379

Troubleshooting

Common Configuration Errors

Error: "Configuration file contains an unknown key"

Problem: You added invalid fields at the root level of adc.yaml.

# ❌ WRONG - Don't add these at root level
name: my-api
version: 1.0.0
services:
  - name: my-service

Solution: Only use valid root-level keys:

# ✅ CORRECT - Only these keys at root level
services:
  - name: my-service
    # ...
consumers:
  - username: user1
    # ...
global_rules:
  - id: 1
    # ...

Valid root-level keys: services, consumers, global_rules, ssls, plugin_configs

Error: Connection refused or "adc ping" fails

Symptoms: Cannot connect to APISIX Admin API.

Solutions:

  1. Verify APISIX is running: docker ps | grep apisix or systemctl status apisix
  2. Check if Admin API port (9180) is accessible: curl http://localhost:9180/apisix/admin/routes -H "X-API-KEY: edd1c9f034335f136f87ad84b625c8f1"
  3. Ensure environment variables are set: export ADC_SERVER=http://localhost:9180 export ADC_TOKEN=edd1c9f034335f136f87ad84b625c8f1
  4. If using Docker, verify network connectivity between containers

Error: "Invalid route configuration" or validation fails

Common causes:

  • Missing required fields (name, upstream, routes)
  • Invalid plugin configuration
  • Incorrect URI patterns

Solution: Run adc lint -f adc.yaml with detailed output to identify the specific issue.

Environment Variables Not Persisting

Problem: adc commands fail even after setting environment variables.

Solution: Always export variables in the same shell session:

# Add to .env file
echo "ADC_SERVER=http://localhost:9180" >> .env
echo "ADC_TOKEN=edd1c9f034335f136f87ad84b625c8f1" >> .env

# Export in current session
export ADC_SERVER=http://localhost:9180
export ADC_TOKEN=edd1c9f034335f136f87ad84b625c8f1

# Or source .env file
set -a; source .env; set +a

Additional Resources

Scripts

Utility scripts in scripts/:

  • scripts/validate-yaml.sh - Two-step validation (YAML syntax + APISIX schema)

Reference Files

For detailed information, consult:

  • references/adc-commands.md - Complete ADC command reference
  • references/configuration-schema.md - Full YAML schema with all fields

Example Files

Working examples in examples/:

  • examples/basic-route.yaml - Simple route configuration
  • examples/proxy-rewrite.yaml - Route with URI rewriting (strip path prefix)
  • examples/full-api.yaml - Complete API with auth and rate limiting

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.92%
按下载量换算36

windsurf

19.3%
按下载量换算24

OpenCode

17.85%
按下载量换算22

Codex

12.6%
按下载量换算16

Gemini CLI

6.96%
按下载量换算9

trae

3.31%
按下载量换算4

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills