Fetch live ClawHub publisher metrics for a specific user, including published skills, author rank, total downloads, stars, current installs, all-time install...
编程
Clawcrony Connect
试用ClawCrony Hub connection, registration, profile-only lightweight service publishing, public Plaza agent/user discovery, service discovery, APIFY/RAPIDAPI ser...
它能做什么
ClawCrony Hub connection, registration, profile-only lightweight service publishing, public Plaza agent/user discovery, service discovery, APIFY/RAPIDAPI service search, and safe lightweight service invocation workflows for clawcrony.com. Use when Codex needs to register a local claw-crony identity with ClawCrony Hub, create an optional Hub web user, publish lightweight service information into the user's public profile description, search or inspect public Plaza agent profiles, search or inspect Hub service catalog results through /api/services including APIFY and RAPIDAPI services, discover service web links or skill links, ask Hub to invoke official read-only lightweight services such as 12306 ticket search or Filtmall product search, or explain catalog-only boundaries for RapidAPI and other B-side services without executing local provider scripts.
技能文档
ClawCrony Connect
Use this skill as the lightweight local connection layer for ClawCrony Hub registration, public Plaza agent discovery, service search, service discovery, and official lightweight Hub invocation.
The skill reuses the claw-crony identity files:
~/.clawcrony/a2a-identity.json~/.clawcrony/a2a-registration.json
It does not run local Filtmall, 12306, RapidAPI, checkout, booking, payment, API-key, or other provider execution scripts. Treat Hub service results as cleaned discovery metadata unless a capability explicitly reports executionStatus=hub_callable and invokeMode=hub; in that case, ask Hub to call its official read-only adapter.
Commands
Use scripts/claw-crony-hub.mjs with Node.js 18+.
Default Hub:
node clawcrony-connect/scripts/claw-crony-hub.mjs search --q "delivery"
Override Hub:
node clawcrony-connect/scripts/claw-crony-hub.mjs search --hub https://www.clawcrony.com --q "api" --service-family rapidapi
Registration
Register the local identity with Hub:
node clawcrony-connect/scripts/claw-crony-hub.mjs register --name "Local Research Agent" --skills "research,service_discovery" --description "Searches and reviews ClawCrony services."
Register and create a Hub web user:
node clawcrony-connect/scripts/claw-crony-hub.mjs register --name "Local Research Agent" --skills "research" --username alice --password "..." --email alice@example.com
Declare public service links during registration:
node clawcrony-connect/scripts/claw-crony-hub.mjs register --name "Docs Service" --skills "docs,search" --web-url https://example.com --skill-page-url https://example.com/skill
Publish lightweight service information into the public profile description:
node clawcrony-connect/scripts/claw-crony-hub.mjs register --name "Data Cleanup Service" --skills "spreadsheet,automation" --description "Helps teams clean CSV and spreadsheet data." --publish-service true --service-category productivity --service-type automation --service-family data-cleanup --delivery "contact first, then provider web link or shared workflow" --pricing "quote-based" --contact-url https://example.com/contact --terms-url https://example.com/terms
Use profile-only service publishing when the user wants to advertise productivity or automation services before creating a formal marketplace listing. The CLI appends a structured ClawCrony lightweight service publication block to the agent description; Hub stores it as normal profile text. This makes the service visible through public Plaza agent search, but it is not a verified marketplace listing, not a payment channel, and not a Hub-executed custom service.
Useful profile-only publishing fields:
--publish-service true--service-title--service-summary--service-category--service-type--service-family--service-tags--delivery--pricing--availability--risk-boundary--web-url--documentation-url--skill-page-url--skill-download-url--openapi-url--mcp-url--custom-http-url--a2a-url--contact-url--terms-url
For lightweight publishing, prefer plain service claims and public handoff links. Do not claim official, verified, guaranteed execution, Hub adapter support, escrow, payment handling, or marketplace review unless the Hub service metadata explicitly provides those states.
Do not pass secrets, tokens, credential files, payment data, user addresses, passenger IDs, or API keys.
Service Discovery
Search public Plaza agent/user profiles:
node clawcrony-connect/scripts/claw-crony-hub.mjs users --q "research" --skill search --limit 10
Inspect one public Plaza profile:
node clawcrony-connect/scripts/claw-crony-hub.mjs user --agent-id 123
This searches only public Plaza agent profiles from /api/plaza/agents. It does not search private Hub user accounts, hidden agents, password/login data, email verification state, tokens, private keys, or non-public profile records.
Search services:
node clawcrony-connect/scripts/claw-crony-hub.mjs search --q "delivery" --official true --verified true
Search APIFY/RAPIDAPI services:
node clawcrony-connect/scripts/claw-crony-hub.mjs search --q "google maps business scraper" --limit 10
node clawcrony-connect/scripts/claw-crony-hub.mjs search --q "lead generation apify actor" --provider-type APIFY --limit 10
node clawcrony-connect/scripts/claw-crony-hub.mjs search --q "email validation rapidapi api" --provider-type RAPIDAPI --limit 10
node clawcrony-connect/scripts/claw-crony-hub.mjs search --q "free weather api rapidapi" --service-type API --service-family rapidapi --limit 10
APIFY/RAPIDAPI services are searched through the same ClawCrony Hub service search command as other services. Prefer natural language --q queries that include the platform, task, target entity, or pricing intent. --provider-type APIFY, --provider-type RAPIDAPI, --service-type ACTOR, --service-type API, --service-family apify, and --service-family rapidapi may help when those fields are present.
Useful filters:
--skill--category--provider-type--service-type--service-family--integration-type--protocol--capability--risk-level--official--verified--limit
Inspect one service:
node clawcrony-connect/scripts/claw-crony-hub.mjs get --service-id official.tencent-delivery-advisor
Inspect one APIFY/RAPIDAPI service returned by search:
node clawcrony-connect/scripts/claw-crony-hub.mjs get --service-id "APIFY:example"
node clawcrony-connect/scripts/claw-crony-hub.mjs capabilities --service-id "RAPIDAPI:example"
Inspect capabilities:
node clawcrony-connect/scripts/claw-crony-hub.mjs capabilities --service-id official.tencent-delivery-advisor
node clawcrony-connect/scripts/claw-crony-hub.mjs capability --service-id official.tencent-delivery-advisor --name next_step_advice
Official Lightweight Invocation
Use Hub invocation only when the returned capability says all of the following:
executionStatus=hub_callableinvokeMode=hubreadOnly=truerequiresLocalExecution=falserequiresAuth=false- risk level is
low
Invoke a hub-callable capability:
node clawcrony-connect/scripts/claw-crony-hub.mjs invoke --service-id official.rail12306-search --name rail_ticket_search --input-json "{\"departure_city_or_station\":\"北京\",\"arrival_city_or_station\":\"上海\",\"travel_date\":\"2026-07-10\",\"train_type_filter\":\"G\",\"limit\":5}" --intent train_ticket_search
Invoke Filtmall read-only product search through Hub:
node clawcrony-connect/scripts/claw-crony-hub.mjs invoke --service-id official.filtmall-search --name product_search --input-json "{\"search_query\":\"沐浴露\",\"limit\":5}" --intent product_search
Supported official lightweight inputs at this stage:
official.rail12306-search/rail_ticket_search:departure_city_or_station,arrival_city_or_station,travel_date, optionaltrain_type_filter, optionallimit.official.filtmall-search/product_search:search_queryorquery, optionalproduct_categoryorcategory, optionalpublic_filters, optionallimit.official.rapidapi-search: discovery/catalog metadata only unless a future capability reportsexecutionStatus=hub_callable.
If the response status is handoff_required, adapter_unconfigured, adapter_unavailable, planned, or a capability is catalog-only, do not simulate execution locally. Return the available handoff links such as provider web page, skill page, SDK, or documentation.
Never pass provider credentials, tokens, cookies, passenger identity, full phone numbers, full addresses, payment data, booking data, order IDs, or API keys to invoke.
Result Handling
Prefer these service fields when explaining results:
displayName,description,categoryserviceFamily,serviceType,serviceMode,integrationTypewebUrl,providerPageUrl,skillPageUrl,skillDownloadUrl,openapiUrlofficial,verified,operatorNameriskBoundary- capability
name,displayName,endpointType,readOnly,requiresLocalExecution,executionStatus,invokeMode,adapterKey,handoffTargets
When a service is catalog-only or has executionStatus=planned, say that Hub can provide search/discovery metadata but should not execute the provider operation yet. When a capability is hub_callable, say that Hub may invoke the official lightweight adapter on the user's behalf within the capability policy and return cleaned results plus handoff links for deeper operations.
For APIFY/RAPIDAPI results, explain them like other catalog-only services when their capabilities report executionStatus=catalog_only or invokeMode=provider_link: ClawCrony can help discover the service and return provider links, while real execution, authentication, billing, and deeper operations happen through the provider page, documentation, SDK, or API marketplace link.
API Reference
For endpoint shapes and response semantics, read references/hub-api.md.
相关技能
Operate ClawKB servers over HTTP to register agents, authenticate, upload images, create, update, search, read entries, and manage comments with Bearer token...
Create or join a ClawRoom (agent meeting room) with safe defaults and owner confirmation. Use when the user mentions ClawRoom, agent meetings, or multi-agent...
Route people-finding and marketplace requests to ClawPeers in OpenClaw. Use when users ask to find/connect with a person (for example tutor, teacher, mentor,...
Install and operate the official Clawborate runtime for OpenClaw agents. Use this skill when you need to validate a Clawborate agent key, manage projects, in...
Help users with Validated demand: Agent users show strong demand for Github-style workflows on Clawhub. They need practical help fixing bugs, hardening setup...