Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

paw-cra-campaign-orchestrationPaw cra 活动策划

Agent Skill

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

总安装

451

周安装

19

GitHub Stars

25

下载量

158
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pawbytes/skill-suites --skill paw-cra-campaign-orchestration

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需确认权限和维护状态。
  • 使用前建议核验是否会触发联网、命令执行或文件读写操作。
  • 可结合原始 README 进一步了解具体用法和功能边界。

SKILL.md

Campaign Orchestration

Overview

This workflow is the central orchestration engine for the Aria Creative Suite. It takes a campaign brief containing multiple deliverables (social posts, carousels, videos, brand assets), parses them into production tasks, dispatches Designer and Video Producer workflows in parallel, tracks progress, aggregates results, and runs quality control across all produced assets.

Args: Supports --headless / -H for fully autonomous campaign execution without user interaction. Supports --template:product-launch for the product launch campaign variant (merged from cra-product-launch-campaign).

Inputs: Campaign brief (with deliverable list), brand guidelines, optional content calendar or strategy artifacts from Strategist.

Outputs: status.md (campaign progress tracker), specialist assignments, design-manifest.json and video-manifest.json from production workflows, qa-report.md from quality control, campaign completion report, daily log entries.

Act as a campaign production manager who coordinates parallel workstreams. You understand creative production timelines, dependency analysis, and how to keep multiple production tracks synchronized. Your job is coordination and progress tracking, not creative judgment — that belongs to the production agents.

Architectural context: Designer and Video Producer are primary production agents that take briefs directly. Strategist is a service agent — only invoke Strategist if a deliverable explicitly requires research, copy, or script writing that hasn't been provided. Never gate production on Strategist by default.

On Activation

Load available config from {project-root}/.pawbytes/config/config.yaml and {project-root}/.pawbytes/config/config.user.yaml (root level and cra section). If config is missing, let the user know paw-cra-setup can configure the module at any time. Resolve:

  • {user_name} (null) — address the user by name
  • {communication_language} (English) — use for all communications
  • {document_output_language} (English) — use for generated document content
  • {fal_key} — fal.ai API key (needed by production agents)
  • {elevenlabs_api_key} — ElevenLabs API key (optional, for video)
  • {output_directory} (.pawbytes/creative-suites) — base output path

Load shared agency memory from {project-root}/.pawbytes/creative-suites/index.md. Load brand guidelines from {project-root}/.pawbytes/creative-suites/brands/{brand-name}/guidelines.md.

Locate the campaign brief. Expected at {project-root}/.pawbytes/creative-suites/brands/{brand-name}/campaigns/{campaign-name}/brief.md. If not found, check if the user provided one inline or as a file path.

If --headless, execute all stages without interaction using the brief as-is. If --template:product-launch, load ./references/template-product-launch.md for the variant pipeline.

Otherwise, confirm the brief is loaded and present a summary of detected deliverables before proceeding.

Campaign Status File (Compaction Survival)

All progress is written to {project-root}/.pawbytes/creative-suites/brands/{brand-name}/campaigns/{campaign-name}/status.md. This file is both the output artifact and the recovery cache. Each stage updates it. After compaction, re-read this file plus the brief to recover full context.

---
campaign: '{campaign-name}'
brand: '{brand-name}'
status: 'in-progress'  # pending | in-progress | quality-gate | complete | failed
current_stage: '01-brief-parsing'
brief_path: './brief.md'
created: 'ISO-8601'
updated: 'ISO-8601'
deliverables_total: 0
deliverables_complete: 0
design_track: 'pending'
video_track: 'pending'
qc_status: 'pending'
---

Stages

StagePurposeReference
01Brief ParsingLoad ./references/01-brief-parsing.md
02Dependency Analysis & Queue BuildLoad ./references/02-dependency-queue.md
03Parallel DispatchLoad ./references/03-parallel-dispatch.md
04Progress Tracking & CollectionLoad ./references/04-progress-collection.md
05Quality Gate & CompletionLoad ./references/05-quality-completion.md

Progression: Each stage updates status.md with its results before loading the next stage. If interrupted, resume from the last completed stage by reading status.md.

External Skills & Workflows

Skill/WorkflowWhen InvokedPurpose
paw-cra-agent-designerStage 03Dispatch design production (via Agent tool)
paw-cra-agent-video-producerStage 03Dispatch video production (via Agent tool)
paw-cra-agent-strategistStage 02 (conditional)Only if deliverables require unresolved copy/scripts/research
paw-cra-quality-controlStage 05Aggregate QC across all produced assets
paw-cra-multi-platform-exportStage 05 (conditional)Suggested if platform variants are needed post-QC

Invocation pattern: Use the Agent tool with the skill name in the prompt. For parallel dispatch in Stage 03, launch Designer and Video Producer agent groups simultaneously.

Memory Contract

Reads:

  • {project-root}/.pawbytes/creative-suites/index.md — agency state
  • {project-root}/.pawbytes/creative-suites/brands/{brand-name}/guidelines.md — brand identity
  • {project-root}/.pawbytes/creative-suites/brands/{brand-name}/campaigns/{campaign-name}/brief.md — campaign brief

Writes:

  • {project-root}/.pawbytes/creative-suites/brands/{brand-name}/campaigns/{campaign-name}/status.md — campaign progress
  • {project-root}/.pawbytes/creative-suites/daily/YYYY-MM-DD.md — daily log (append, tagged [Campaign])

Collects (from production agents):

  • design-manifest.json — from Designer workflows
  • video-manifest.json — from Video Producer workflows
  • qa-report.md — from quality control workflow

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.52%
按下载量换算56

Claude

32.46%
按下载量换算51

Cursor

17.17%
按下载量换算27

Gemini CLI

8.43%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills