byted-skillhub-upload

byted-skillhub-upload is a skill for Claude Code, Codex from bytedance/agentkit-samples. It costs 43 tokens per session (608 once invoked), scanned A, original, Apache-2.0.

An uploader for publishing a local coding-agent skill to a private or company-only SkillHub space. It can package a folder as a ZIP file and returns the created skill and version identifiers.

In plain words
What is it for?
It is for publishing local skill folders or ZIP files to an organisation's private SkillHub.
Why use it?
It removes the manual packaging and upload work involved in sharing an internal skill.

Skill for Claude CodeCodex ✓ vendor

Written for no agent in particular: nothing here depends on one.

Good fit It is for publishing local skill folders or ZIP files to an organisation's private SkillHub.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bytedance/agentkit-samples/byted-skillhub-upload
About the project

bytedance/agentkit-samples is a collection of examples and tutorials for Volcengine AgentKit, an AI-agent development platform for building, deploying, and operating agent applications. Developers use the samples to learn agent creation, multi-agent collaboration, memory, retrieval, MCP integrations, media generation, customer service, and other workflows. The catalogue skills provide agent workflows based on these examples.

bytedance/agentkit-samples · 450 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add bytedance/agentkit-samples --skill byted-skillhub-upload
Clone the repo
git clone --depth 1 https://github.com/bytedance/agentkit-samples

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for byted-skillhub-upload

README.md
[![agentmods](https://agentmods.dev/badge/skills/bytedance/agentkit-samples/byted-skillhub-upload.svg)](https://agentmods.dev/skills/bytedance/agentkit-samples/byted-skillhub-upload)
Your own site
<a href="https://agentmods.dev/skills/bytedance/agentkit-samples/byted-skillhub-upload"><img src="https://agentmods.dev/badge/skills/bytedance/agentkit-samples/byted-skillhub-upload.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 608 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00043 $0.00608
Opus 5 $0.00022 $0.00304
Sonnet 5 $0.00009 $0.00122
Haiku 4.5 $0.00004 $0.00061

Measured 5d ago against content hash 99065dc4b9e6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

byted-skillhub-upload scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/upload_to_skillhub.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/byted-skillhub-upload/SKILL.md · 45 lines

What it actually says

byted-skillhub-upload

用途

  • 将本地 Skill(文件夹或 zip 包)上传到 SkillHub,并创建一个新的 Skill 及版本。
  • 上传成功后输出 IdSkillVersionId

何时调用

  • 当用户需求涉及将本地技能上传/发布到 企业 SkillHub私有技能空间 时触发。常见语义包括:
    1. 明确要求“上传到 SkillHub / 发布到 SkillHub”。
    2. 提到“企业专属技能空间 / 私有技能空间 / 内部技能”。
    3. 需要将一个本地目录打包后上传为 Skill。

环境说明 (Agent 必读)

  • 无需向用户索要环境变量:当前环境已自动注入以下变量:
    • ARK_SKILL_API_BASE: SkillHub API 服务地址
    • ARK_SKILL_API_KEY: 企业 SkillHub 访问密钥
    • SKILLHUB_SKILL_SPACE_ID: 企业专属技能空间 ID
  • 严禁向用户询问参数值:Agent 在触发此技能时,应直接从环境中读取这些变量并执行脚本,不得中断流程向用户确认这些信息。

上传步骤

  1. 确定待上传目标
    • 目标必须是一个目录,或一个以 .zip 结尾的文件
    • 若目标是目录,脚本会先将其内容压缩为 zip 包再上传
  2. 执行脚本(路径相对于本 SKILL.md 所在目录)
    • 上传目录:python ./scripts/upload_to_skillhub.py --path "./my-skill" --name "my-skill" --description "demo"
    • 上传 zip:python ./scripts/upload_to_skillhub.py --path "./my-skill.zip" --name "my-skill" --description "demo"
  3. 观察输出
    • 成功时会打印两行:
      • Id: <skill_id>
      • SkillVersionId: <skill_version_id>

示例

  • ./skills/my-private-skill/ 上传到 SkillHub:
    • python ./scripts/upload_to_skillhub.py --path "./skills/my-private-skill" --name "my-private-skill" --description "internal"

故障排查

  • 如提示缺少环境变量,请确认在环境中运行或联系管理员
  • 参数错误:确认 --path 指向目录或 .zip 文件
  • 网络或鉴权错误:检查网络连通性与 API Key 是否有效
Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 45 lines · 43 tokens per session scan A 99065dc4b9e6

Subscribe to this mod's changes

byted-skillhub-upload is a skill published in the GitHub repository bytedance/agentkit-samples (450 stars, last pushed 4d ago), licensed Apache-2.0. It adds 43 tokens to every session and 608 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.