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

public-files公共档案

Agent Skill

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

总安装

519

周安装

21

GitHub Stars

3

下载量

163
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/compilet-dev/agent-skill-layerproof --skill public-files

简介

public-files 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合项目协作管理。

  • 适用于围绕仓库状态、代码变更或协作事项进行信息组织与查询。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用。
  • 使用前需确认权限范围、维护状态及是否触发网络请求或命令执行。
  • 建议参考原始 README 了解具体功能与使用边界。

SKILL.md

Skill: Public Files

Description

Upload reference files (images, documents) for use in outline generation. This skill documents the public API at /api/v2/files (PublicApiFileController). Flow: 1) POST /prepare → get upload_url and s3_key; 2) PUT file to upload_url; 3) POST /confirm; use s3_key in file_s3_keys when calling slide-deck outline/generate. Authenticate with X-API-KEY header. Max 20 MB; allowed types: PDF, DOCX, PPTX, TXT, MD, PNG, JPEG, WebP, SVG, BMP, TIFF, HEIC, HEIF, AVIF, ICO.


TypeScript types (request / response)

Mirrors PublicApiFileController (/api/v2/files) data classes.

// --- Prepare (POST) ---
type PrepareFileUploadRequest = {
  file_name: string;   // max 255 chars
  mime_type: string;
  size: number;        // 1 to 20*1024*1024
};
type PrepareFileUploadResponse = {
  upload_url: string;
  s3_key: string;
  expires_at: string;  // ISO 8601, ~10 min
};

// --- Confirm (POST) ---
type PublicApiConfirmFileUploadRequest = { s3_key: string };
type PublicApiConfirmFileUploadResponse = { s3_key: string; uploaded: boolean };

// --- Delete (POST) ---
type PublicApiDeleteFileRequest = { s3_key: string };
type PublicApiDeleteFileResponse = { success: boolean };

// --- Download URL (POST) ---
type PublicApiDownloadUrlRequest = {
  s3_key: string;
  expiry_seconds?: number;  // 60–604800, default 3600
};
type PublicApiDownloadUrlResponse = {
  download_url: string;
  expires_at: string;
};

Prepare Public File Upload

Request body: PrepareFileUploadRequest. Response: PrepareFileUploadResponse. Then PUT file to upload_url with matching Content-Type.

curl -X POST "$LAYERPROOF_BASE_URL/api/v2/files/prepare" \
  -H "Content-Type: application/json" \
  -H "X-API-KEY: $LAYERPROOF_API_KEY" \
  -d '{"file_name":"doc.pdf","mime_type":"application/pdf","size":1024}'

Confirm Public File Upload

Request body: PublicApiConfirmFileUploadRequest. Response: PublicApiConfirmFileUploadResponse.

curl -X POST "$LAYERPROOF_BASE_URL/api/v2/files/confirm" \
  -H "Content-Type: application/json" \
  -H "X-API-KEY: $LAYERPROOF_API_KEY" \
  -d '{"s3_key":"<s3_key_from_prepare>"}'

Delete Public File

Request body: PublicApiDeleteFileRequest. Response: PublicApiDeleteFileResponse.

curl -X POST "$LAYERPROOF_BASE_URL/api/v2/files/delete" \
  -H "Content-Type: application/json" \
  -H "X-API-KEY: $LAYERPROOF_API_KEY" \
  -d '{"s3_key":"<s3_key>"}'

Get Public File Download URL

Request body: PublicApiDownloadUrlRequest. Response: PublicApiDownloadUrlResponse.

curl -X POST "$LAYERPROOF_BASE_URL/api/v2/files/download-url" \
  -H "Content-Type: application/json" \
  -H "X-API-KEY: $LAYERPROOF_API_KEY" \
  -d '{"s3_key":"<s3_key>","expiry_seconds":3600}'

Agent behavior

When the user asks to upload or manage reference files (for outlines), do the following.

1. Choose the right endpoint

User intentEndpointMethod
Get upload URL for a file/api/v2/files/preparePOST
Confirm file uploaded to S3/api/v2/files/confirmPOST
Delete a file by s3_key/api/v2/files/deletePOST
Get download URL for a file/api/v2/files/download-urlPOST

2. Build and run the request

Step 1 — Check environment variables first. Before running any curl command, verify both LAYERPROOF_BASE_URL and LAYERPROOF_API_KEY are set on the user's machine:

if [[ -z "${LAYERPROOF_BASE_URL}" ]]; then
  echo "ERROR: LAYERPROOF_BASE_URL is not set."
  return 1
fi
if [[ -z "${LAYERPROOF_API_KEY}" ]]; then
  echo "ERROR: LAYERPROOF_API_KEY is not set."
  return 1
fi

If running from a project directory with a .env.local file, load it first:

if [[ -f .env.local ]]; then
  set -a
  source .env.local
  set +a
fi

Step 2 — Auth: Include X-API-KEY: $LAYERPROOF_API_KEY. Read env vars; if missing, tell the user. Step 3 — Body: All endpoints use JSON body (file_name, mime_type, size for prepare; s3_key for confirm/delete/download-url). Run curl and show the result.

3. Upload flow

After prepare: tell the user to PUT the file to upload_url with Content-Type: <mime_type>, then call confirm with the returned s3_key. Use that s3_key in file_s3_keys when calling slide-deck outline/generate.

4. Response handling

  • Always show the raw JSON response in a JSON code block.
  • If the response contains a URL for an image, show the image and the JSON.
  • On error, show the response body and status code.

5. Example workflows

Workflow A — User: "Upload a reference PDF for outline generation."

  1. POST /api/v2/files/prepare with {"file_name":"brief.pdf","mime_type":"application/pdf","size":<bytes>}; get upload_url, s3_key, expires_at.
  2. User PUTs file to upload_url with Content-Type: application/pdf. POST /api/v2/files/confirm with {"s3_key":"<s3_key>"}.
  3. Use this s3_key in slide-deck POST .../outline/generate body as file_s3_keys: ["<s3_key>"].

Workflow B — User: "Upload two reference files (PDF + DOCX), confirm both, then generate an outline that uses them."

  1. For first file: prepare → user uploads → confirm; capture s3_key_1. For second: prepare → upload → confirm; capture s3_key_2.
  2. Hand off to slide-decks: resolve projectId and slideDeckId. POST .../outline/generate with {"prompt":"...", "slide_count":5, "file_s3_keys":["<s3_key_1>","<s3_key_2>"]}.
  3. Poll jobs for activity_id; when DONE, GET deck to show outline that was informed by the references.

Workflow C — User: "Get a download URL for a file I uploaded earlier (I have the s3_key), then delete it when done."

  1. POST /api/v2/files/download-url with {"s3_key":"<s3_key>","expiry_seconds":3600}; show download_url and expires_at.
  2. When user is done: POST /api/v2/files/delete with {"s3_key":"<s3_key>"}; show success response. Warn that delete is irreversible.

Response format (required)

  • (if response contains url to show image) please show image and show json response instead of table
  • Always show the raw JSON response (verbatim) in a JSON code block.
  • If the response contains a URL for an image, render/show the image and also show the JSON response (do not convert to a table).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.4%
按下载量换算56

Claude

30.6%
按下载量换算50

Cursor

17.67%
按下载量换算29

Gemini CLI

9.22%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills