Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

agentcadia-toolsAgent 卡迪亚工具

Agent Skill

agentcadia-tools 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,232

周安装

93

GitHub Stars

公开资料未说明

下载量

744
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:agentcadia-tools(Agent 卡迪亚工具)
来源仓库:https://github.com/ideaforceai-sys/agentcadia-tools
安装命令:
openclaw skills install agentcadia-tools
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install agentcadia-tools

简介

使用显式上传和下载命令上传或下载具有元数据写回和详细报告的 Agentcadia 代理工作区。

SKILL.md

name
agentcadia-tools
description
Upload or download Agentcadia agent drafts with one skill. Supports two command-style flows: upload (sync a local OpenClaw-style workspace into Agentcadia, including required metadata writeback) and download (pull an Agentcadia agent package into a local workspace). Use when the user has an Agentcadia upload taskId, download token, or copied automation instruction and wants a deterministic file-transfer workflow.

Agentcadia Tools

A unified Agentcadia skill for uploading and downloading agent workspaces.

Core rule

This skill exposes two explicit command-style actions:

  • upload
  • download

Always decide which action the user needs, then run the matching subcommand through the unified script:

python3 scripts/agentcadia_tools.py upload ...
python3 scripts/agentcadia_tools.py download ...

Do not invent alternative flows when the bundled scripts already cover the task.


Action: upload

Use upload when the user wants to sync the current local workspace into an Agentcadia draft.

Required workflow

A successful upload must include all of these phases:

  1. upload workspace markdown + packaged skills
  2. generate draft metadata from the uploaded agent workspace
  3. write that metadata back to Agentcadia
  4. send the owner a standalone metadata-summary message containing the exact metadata that was written back
  5. when a share image is available, send that share image to the owner as a separate image message

If you skip metadata writeback and only provide “suggested copy”, the task is not complete.

Metadata synthesis rules

Generate metadata from the workspace itself.

Prefer agent-level sources such as:

  • AGENTS.md, SOUL.md, IDENTITY.md, USER.md, and TOOLS.md (combine these to infer the agent’s name, personality, self-introduction, intended audience, and operating context)
  • README-like files
  • persona / workflow / intro files
  • other root markdown that describes the whole workspace

Quality bar:

  • summary must read like a short product intro for the agent
  • detailDescription must expand on positioning, scenarios, and value
  • do not write generic template copy
  • do not write “uploaded workspace”, “packaged skills”, or similar process-language as the user-facing description
  • explicitly synthesize from AGENTS.md, SOUL.md, IDENTITY.md, USER.md, and TOOLS.md
  • do not block on agent.md, AGENT.md, or agent_download.md
  • do not ask the owner to provide title/summary/detailDescription/category/tags first unless the workspace is genuinely too sparse; even then, present your best draft first

Required metadata fields:

  • title
  • summary
  • detailDescription
  • description
  • category
  • tags

Upload command

Generate metadata first, save it as a temporary JSON file, then run:

python3 scripts/agentcadia_tools.py upload \
  --task-id <taskId> \
  --origin <origin> \
  --workspace <workspacePath> \
  --metadata-file <tempMetadataJsonPath>

Treat uploader output as authoritative.

If the script returns:

  • success: false
  • or metadataWritebackSucceeded: false
  • or incompleteReason: METADATA_WRITEBACK_REQUIRED

then the upload is not complete, even if files were uploaded.

Owner delivery rules for upload

After upload succeeds, deliver owner-facing output in two separate steps:

  1. Metadata summary message first

- Send a standalone text message containing at least: title, category, tags, summary, detailDescription, workspace path used, uploaded markdown files, and uploaded skill packages. - Do not merge this into the share-image caption only. The owner must be able to read the written metadata as a separate message.

  1. Share image message second

- If a share image is available, send it as a real image message to the owner. - Do not stop at sending only agentUrl or shareImageUrl as plain text. - If the runtime can send images only from local files, download the share image first, save it to a temporary local path, then send that local image file. - The final owner-visible step should be the image message, not a plain text link.

Upload completion rules

  • upload ok + metadata writeback ok + metadata summary message sent + share image sent as an image when available = complete
  • upload ok + metadata writeback failed = partial success, not complete
  • upload ok + metadata ok + metadata summary not sent = partial success, not complete
  • upload ok + metadata ok + share image available but not sent as an image = partial success, not complete
  • upload failed = failed

Action: download

Use download when the user wants to pull an Agentcadia agent package into the local workspace.

Download behavior

The download flow should:

  1. determine the target workspace path
  2. download the agent package with the provided bearer token
  3. extract or place the files into the workspace
  4. report all placed files and any conflicts
  5. clean up temporary files

Do not overwrite existing files unless the user explicitly asked for it.

Download command

python3 scripts/agentcadia_tools.py download \
  --agent-id <agentId> \
  --token <downloadToken> \
  --origin <origin> \
  --workspace <workspacePath>

If the user explicitly approved overwriting existing files, add:

--allow-overwrite

Download reporting rules

Always report:

  • workspace path used
  • whether the payload was zip or markdown
  • files placed or extracted
  • conflicts skipped because overwrite was not allowed

If any conflicts were skipped, treat the result as partial and tell the user exactly which files need a decision.


Runtime notes

When upload returns a share image, sending that image to the owner is mandatory unless the runtime truly cannot send images. The owner-facing metadata summary and the share image must be sent as two separate messages, with the image sent last.

See references/openclaw-runtime.md for OpenClaw-oriented owner-delivery behavior.

Boundaries

  • Use this skill for deterministic file sync, not final publish approval
  • Never expose upload tokens or internal upload URLs in user-visible output
  • Stop and report clearly if a packaged skill exceeds size limits
  • Do not fabricate share assets if the server did not return them
  • Do not overwrite existing local files during download unless the user explicitly approved it

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.01%
按下载量换算603

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills