diff --git a/CHANGELOG.md b/CHANGELOG.md index 12fd1430..078adc16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ### Changed +- Docs: clarify that ClawHub does not support paid skills, per-skill pricing, or paywalled releases (#1752, #1844) (thanks @deepujain). - API docs: clarify how third-party directories can reuse public ClawHub catalog endpoints while respecting rate limits and canonical links (#1825, #1845) (thanks @deepujain). - Packages docs: document the required fields for code-plugin package publish flows (#1802) (thanks @deepujain). - Search: add CJK tokenization support (Chinese/Japanese/Korean) with Intl.Segmenter plus fallback behavior to improve skill query matching (#1596) (thanks @pq-dong). diff --git a/docs/cli.md b/docs/cli.md index fa1c6373..32e2d79c 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -141,6 +141,7 @@ Stores your API token + cached registry URL. - Requires semver: `--version 1.2.3`. - Publishing a skill means it is released under `MIT-0` on ClawHub. - Published skills are free to use, modify, and redistribute without attribution. +- ClawHub does not support paid skills or per-skill pricing. - Legacy alias: `publish `. ### `delete ` diff --git a/docs/skill-format.md b/docs/skill-format.md index 4fd110bf..7caa7cff 100644 --- a/docs/skill-format.md +++ b/docs/skill-format.md @@ -156,3 +156,9 @@ Limits (server-side): - Anyone may use, modify, and redistribute published skills, including commercially. - Attribution is not required. - Do not add conflicting license terms in `SKILL.md`; ClawHub does not support per-skill license overrides. + +## Paid skills + +- ClawHub does not support paid skills, per-skill pricing, paywalls, or revenue sharing. +- Do not add pricing metadata to `SKILL.md`; it is not part of the skill format and will not make a published skill paid. +- If your skill integrates with a paid third-party service, document the external cost and required account clearly in the skill instructions and `requires.env`. diff --git a/src/routes/publish-skill.tsx b/src/routes/publish-skill.tsx index 5014cd5e..f33f44bb 100644 --- a/src/routes/publish-skill.tsx +++ b/src/routes/publish-skill.tsx @@ -659,6 +659,10 @@ export function Upload() { All skills published on ClawHub are licensed under {PLATFORM_SKILL_LICENSE}.{" "} {PLATFORM_SKILL_LICENSE_SUMMARY}

+

+ ClawHub does not support paid skills, per-skill pricing, or paywalled + releases. +