A minimal but complete demo skill that greets the user and prints the current UTC timestamp. Useful for verifying the ClawHub publish/install pipeline end to end.
编程
demo-hello-skill
试用Minimal demonstration skill for verifying a ClawHub publish flow. Prints a configurable greeting and the current date so the publish/ingest path can be exercised with a safe, side-effect-free artifact.
它能做什么
Minimal demonstration skill for verifying a ClawHub publish flow. Prints a configurable greeting and the current date so the publish/ingest path can be exercised with a safe, side-effect-free artifact.
技能文档
Demo Hello Skill
A tiny skill used to validate the TaskFlow + ClawHub publish flow. It has no external dependencies and performs no network writes, so it is safe to publish and re-run.
When to use
- Smoke-testing a ClawHub publish pipeline.
- Verifying that a freshly published skill installs and renders correctly.
- Demonstrating the input/output contract of a skill in documentation.
Prerequisites
- POSIX shell with
dateavailable.
Basic steps
# Print the default greeting
demo-hello-skill greet
# Print a custom greeting
demo-hello-skill greet --to "OpenClaw"
Input
--to(optional): override the default recipient. Defaults toworld.
Output
A single line on stdout: hello, @ .
Notes
- This skill intentionally avoids any external side effects so it can be republished during a flow test without mutating production state.
相关技能
Use this tiny demo skill to verify that a ClawHub skill can be published, installed, and invoked; it returns a short confirmation message and optionally echo...
Orchestrate a TaskFlow-managed ingestion job that validates, packages, and publishes an OpenClaw skill folder to the ClawHub registry, then verifies the published artifact. Use when a piece of digital content (an agent skill) must move through a durable multi-step flow and land in the ClawHub resource center in a reproducible way.
Prepare and publish a local skill to ClawHub and GitHub using a workflow that keeps the local publish directory clean. Use this skill when the user wants to...
Prepare, safety-review, version, commit, and publish local Codex skills through a GitHub-backed release flow and ClawHub CLI. Use when the user asks to host,...
Step-by-step runbook for pairing TaskFlow (business process orchestration) with ClawHub (skill registry ingestion) to publish a digital skill artifact to the ClawHub resource center. Use when you need a repeatable, auditable process-to-upload pipeline.