Token导航 LogoToken导航TokenDH.com
研究检索可写文件github未标认证来源可访问许可证需确认审计异常

payload-cms有效负载 CMS

Agent Skill

payload-cms 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

240

周安装

10

GitHub Stars

公开资料未说明

下载量

80
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/amoscicki/aromatt --skill payload-cms

简介

payload-cms 提供 Persistent HTTP server 和 thin CLI client,用于 Payload CMS Local API 交互。

  • 适用于需要通过本地 API 与 Payload CMS 集成的场景。
  • 支持插件根目录自动检测和 payload.js 脚本执行。
  • 安装命令:npx skills add https://github.com/amoscicki/aromatt --skill payload-cms。
  • 使用前请确认 CLAUDE_PLUGIN_ROOT 环境变量设置和项目路径配置。

SKILL.md

Persistent HTTP server + thin CLI client for Payload CMS Local API.

Quick Start

# Resolve plugin root even when CLAUDE_PLUGIN_ROOT is missing
PLUGIN_ROOT="${CLAUDE_PLUGIN_ROOT:-$(node -e "const fs=require('fs');const path=require('path');const os=require('os');const c=['C:/.config/vercel-skills/skills/payload-cms',path.join(os.homedir(),'.claude/skills/payload-cms'),path.join(os.homedir(),'.agents/skills/payload-cms'),'P:/aromatt/payload/skills/payload-cms'];const hit=c.find(p=>fs.existsSync(path.join(p,'scripts','payload.js')));if(!hit){process.exit(1)};process.stdout.write(hit);")}"

# 1. Start the server (from project root)
node "$PLUGIN_ROOT/scripts/payload.js" start

# 2. Query data
node "$PLUGIN_ROOT/scripts/payload.js" find users --limit 5
node "$PLUGIN_ROOT/scripts/payload.js" schema tutors

CLI

node "$PLUGIN_ROOT/scripts/payload.js" $ARGUMENTS

Run with help for full command list. Use $PLUGIN_ROOT from Quick Start in all examples below when CLAUDE_PLUGIN_ROOT is not set.


Server Lifecycle

The server initializes Payload once and serves requests over HTTP. This avoids re-initializing Payload for each query (~10-15s cold start).

CommandDescription
start [flags]Start persistent Payload server (background)
stopGraceful shutdown
statusCheck if server is running + uptime

Start Flags

FlagDefaultDescription
--port8100HTTP port
--idle-timeout1800000Auto-shutdown after idle (ms, default 30min)
--test-db-urlenv TEST_POSTGRES_URLTest database connection string
--test-db-portenv POSTGRES_TEST_PORT or 7357Test database port

Examples

# Start with defaults
node $PLUGIN_ROOT/scripts/payload.js start

# Start with custom port and test DB
node $PLUGIN_ROOT/scripts/payload.js start --port 9000 --test-db-url "postgresql://localhost:7357/test"

# Check status
node $PLUGIN_ROOT/scripts/payload.js status

# Stop server
node $PLUGIN_ROOT/scripts/payload.js stop

Schema & Discovery

CommandDescription
collections listList all collection slugs, field counts, labels
schema <collection>Full field definitions (name, type, required, relationships)

Schema includes recursive field mapping for: text, number, email, relationship, upload, array, group, blocks, select, radio, checkbox, date, point, json, code, richText, tabs, collapsible, row.

Examples

# List all collections
node $PLUGIN_ROOT/scripts/payload.js collections list

# Get schema for a collection
node $PLUGIN_ROOT/scripts/payload.js schema users
node $PLUGIN_ROOT/scripts/payload.js schema calendarEntries

Query Operations

All query commands require a running server (start first).

CommandDescription
find <collection> [flags]Find documents with filters, sort, pagination
find-by-id <collection> --id <id> [flags]Get a single document by ID
count <collection> [flags]Count matching documents

Query Flags

FlagDescriptionExample
--dbDatabase: dev (default) or test--db test
--whereJSON filter object--where '{"status":{"equals":"active"}}'
--sortSort field (prefix - for desc)--sort -createdAt
--limitMax results--limit 10
--pagePage number (1-indexed)--page 2
--depthPopulation depth (default 1)--depth 0
--selectField selection--select '{"name":true,"email":true}'
--timeoutPer-request timeout (ms)--timeout 60000

Where Clause Operators

{ "field": { "equals": "value" } }
{ "field": { "not_equals": "value" } }
{ "field": { "greater_than": 100 } }
{ "field": { "less_than": 100 } }
{ "field": { "like": "partial" } }
{ "field": { "contains": "text" } }
{ "field": { "in": ["a", "b"] } }
{ "field": { "not_in": ["a", "b"] } }
{ "field": { "exists": true } }

Compound:

{ "and": [{ "status": { "equals": "active" } }, { "role": { "equals": "tutor" } }] }
{ "or": [{ "status": { "equals": "active" } }, { "status": { "equals": "pending" } }] }

Query Examples

# Find first 5 users
node $PLUGIN_ROOT/scripts/payload.js find users --limit 5

# Find active tutors sorted by name
node $PLUGIN_ROOT/scripts/payload.js find tutors --where '{"status":{"equals":"active"}}' --sort name

# Find recent calendar entries
node $PLUGIN_ROOT/scripts/payload.js find calendarEntries --sort -createdAt --limit 10

# Count customers
node $PLUGIN_ROOT/scripts/payload.js count customers

# Get user by ID with minimal depth
node $PLUGIN_ROOT/scripts/payload.js find-by-id users --id abc123 --depth 0

# Select specific fields only
node $PLUGIN_ROOT/scripts/payload.js find users --select '{"email":true,"name":true}' --limit 10

# Query test database
node $PLUGIN_ROOT/scripts/payload.js find users --db test --limit 5

Mutate Operations

CommandDescription
create <collection> --data <json> [flags]Create a new document
update <collection> --id <id> --data <json> [flags]Update an existing document
delete <collection> --id <id>Delete a document

Data can be passed via --data flag or piped through stdin.

Mutate Flags

FlagDescription
--dataJSON string with document data
--idDocument ID (required for update/delete)
--dbDatabase: dev (default) or test
--depthPopulation depth in response
--selectField selection in response

Mutate Examples

# Create a document
node $PLUGIN_ROOT/scripts/payload.js create customers --data '{"name":"John","email":"john@example.com"}'

# Create via stdin pipe
echo '{"name":"Jane","email":"jane@example.com"}' | node $PLUGIN_ROOT/scripts/payload.js create customers

# Update a document
node $PLUGIN_ROOT/scripts/payload.js update customers --id abc123 --data '{"name":"John Updated"}'

# Delete a document
node $PLUGIN_ROOT/scripts/payload.js delete customers --id abc123

# Mutate on test database
node $PLUGIN_ROOT/scripts/payload.js create customers --db test --data '{"name":"Test User"}'

Output Format

All commands output JSON to stdout:

// Success
{ "ok": true, "data": { ... } }

// Error
{ "ok": false, "error": { "message": "...", "code": "..." } }

Find results include Payload pagination:

{
  "ok": true,
  "data": {
    "docs": [...],
    "totalDocs": 42,
    "limit": 10,
    "totalPages": 5,
    "page": 1,
    "pagingCounter": 1,
    "hasPrevPage": false,
    "hasNextPage": true,
    "prevPage": null,
    "nextPage": 2
  }
}

Architecture

payload.js (CLI client, CommonJS, zero deps)
    │
    ▼ HTTP
server.ts (persistent, initialized Payload instances)
    │
    ▼ Local API
Payload CMS (dev DB + optional test DB)
  • Server starts once, stays running (30min idle timeout)
  • Each CLI call makes an HTTP request to the running server
  • Server PID + port stored in ${PAYLOAD_CMS_HOME:-~/.payload-cms}/server.json

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.69%
按下载量换算27

Claude

29.56%
按下载量换算24

Cursor

19.59%
按下载量换算16

Gemini CLI

10.38%
按下载量换算8

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills