payload-cli

Payload CMS 콘텐츠를 CLI로 다룰 때 사용하는 스킬이다. 인증/컬렉션 조회/문서 생성·조회·상태변경·내보내기와, Markdown 기반 작성/내보내기(create --md --input, export --md --output)를 빠르게 수행해야 할 때 사용한다.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "payload-cli" with this command: npx skills add unlimiting-studio/payload-cli/unlimiting-studio-payload-cli-payload-cli

payload-cli

payload CLI를 사용자 관점의 콘텐츠 작업 흐름으로 실행한다.

기본 흐름

  1. 인증 상태 확인: payload auth status
  2. 컬렉션 파악: payload collections list, payload schema <collection>
  3. 작업 실행: create/list/publish/unpublish/export
  4. Markdown 작업 시 --md와 파일 입출력 옵션 사용

핵심 명령

payload auth login --domain https://your-payload-domain.com --email you@example.com
payload auth status

payload collections list
payload schema posts

payload create posts --title "제목" --content "본문"
payload list posts --page 1 --limit 20

payload publish posts 1
payload unpublish posts 1

payload export posts 1
payload export posts 1 -o ./post-1.json
payload export posts 1 --md --output ./post-1.md

Markdown 작성/내보내기

작성:

payload create posts --md --input ./post.md

내보내기:

payload export posts 1 --md --output ./post-1.md

frontmatter 예시:

---
title: 글 제목
slug: my-post
excerpt: 요약
publishedAt: 2026-02-22T13:00:00.000Z
_status: draft
coverImage: ./cover.png
coverAlt: 커버 이미지 설명
---

본문 단락

![본문 이미지](./body.png)

노트:

  • coverImage는 cover 전용이며, 본문 이미지와 분리된다.
  • --md 모드에서 본문 첫 이미지를 cover로 자동 지정하지 않는다.
  • 본문의 로컬 이미지(![alt](./file.png))는 자동 업로드되어 본문 upload 노드로 변환된다.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

ugen

No summary provided by upstream source.

Repository SourceNeeds Review
General

psc

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

openclaw-version-monitor

监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明

Archived SourceRecently Updated
Coding

ask-claude

Delegate a task to Claude Code CLI and immediately report the result back in chat. Supports persistent sessions with full context memory. Safe execution: no data exfiltration, no external calls, file operations confined to workspace. Use when the user asks to run Claude, delegate a coding task, continue a previous Claude session, or any task benefiting from Claude Code's tools (file editing, code analysis, bash, etc.).

Archived SourceRecently Updated