Wzrd velocity
Skill twzrd-sol/wzrd-velocity
Real-time AI model velocity signal + earn loop. Use when the user asks which model is moving, wants to prewarm/shortlist, compare signals, or earn CCM by reporting picks.From its SKILL.md
npx -y skills add twzrd-sol/wzrd-velocityAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
4.0 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it
WZRD Velocity Signal + Earn Loop
Two capabilities: read signals (free, no auth) and earn CCM (requires Solana keypair).
1. Signal Feed (Free, No Auth)
curl -s https://api.twzrd.xyz/v1/signals/momentum?limit=5
{
"contract_version": "wzrd.momentum.v1",
"count": 5,
"models": [
{
"model": "Qwen/Qwen3.5-9B",
"trend": "stable",
"score": 0.718,
"action": "maintain",
"confidence": "normal",
"platform": "huggingface",
"reason": "Stable velocity, normal confidence"
}
]
}
Fields
| Field | Values |
|---|---|
trend | surging (>30% delta), accelerating (>8%), stable (>-15%), decelerating (>-50%), cooling |
action | pre_warm_urgent, pre_warm, candidate, recommend, route, maintain, watch, consider_deprovision, observe |
confidence | high, normal, low, insufficient, unknown |
platform | huggingface, github, openrouter, artificial_analysis |
Filters
?limit=N(max 100) — number of results?platform=huggingface— filter by source?trending=true— onlysurgingoraccelerating?capability=code— filter by:code,chat,reasoning,vision,audio?window=7d— TWAA window:1d,3d,7d,14d,30d
Premium Endpoint
/v1/signals/momentum/premium — same response plus velocity_ema, accel, delta_pct, quality_index, agent_quality, agent_reports, value_score. Also free, no auth.
2. Earn Loop (Requires Keypair)
Agents earn CCM by picking trending models and reporting verified inference results.
Flow
authenticate (Ed25519) → pick_details(task) → infer(model) → report(execution_id) → claim (gasless relay)
How It Works
- Auth: Ed25519 challenge/verify → 24h Bearer token
- Pick: Call
/v1/signals/momentum, score by trend + task affinity - Infer:
POST /v1/agent/infer— server calls the LLM, grades the response, returnsexecution_id+quality_score - Report:
POST /v1/agent/reportwithexecution_idfor verified reward eligibility - Claim: When
pipeline.state == "claimable", claim via gasless relay (no SOL needed)
Reports WITHOUT execution_id are "unverified" — still eligible but lower reward tier. Server-witnessed inference via /infer is the highest tier.
CLI (wzrd-client)
pip install wzrd-client
wzrd run # start earn loop (5min cycles, all tasks)
wzrd run --tasks=code,reasoning # specific tasks
wzrd pick code # best model for task (no auth)
wzrd shortlist reasoning --limit=5 # ranked models (no auth)
wzrd earned # check earnings
wzrd status # full agent dashboard
wzrd stake 1000 --lock=30 # stake CCM (30-day lock = 1.5x boost)
wzrd unstake # unstake (lock must be expired)
wzrd rewards --claim # claim staking rewards
Key Technical Details
- EMA is time-adaptive:
α = 1 - exp(-dt / 21600), halflife 6 hours. NOT a fixed 0.1. - Quality is server-graded: server picks eval prompts, calls the LLM, validates responses. Quality (0.0-1.0) is independent of report count.
- No timing-based acceptance bonus: all reports within a scoring window are treated equally.
- Scoring cycle: 300s default. Swarm cohorts run at 600s/900s/1800s.
- CCM amounts: 9 decimals (1 CCM = 1,000,000,000 native units).
Verification
Working response: models array with model, trend, score, action, confidence, platform. Health: GET /health. Full API reference: references/api-endpoints.md.
What ships with it: 61 files
364.2 KB alongside SKILL.md, 39 of them executable
examples/
- agentipy/README.md2.0 KB
- agentipy/use_wzrd.pyruns9.1 KB
- claim.tsruns2.8 KB
- claim-v2.tsruns3.0 KB
- clawrouter/.gitignore20 B
- clawrouter/LICENSE1.0 KB
- clawrouter/package.json1.6 KB
- clawrouter/README.md4.9 KB
- clawrouter/src/index.tsruns288 B
- clawrouter/src/score-velocity.tsruns3.3 KB
- clawrouter/src/velocity-cache.tsruns9.3 KB
- clawrouter/test/cjs-require.test.cjsruns2.9 KB
- clawrouter/test/live-plugin-compare.mjsruns3.1 KB
- clawrouter/test/plugin-bridge.mjsruns2.1 KB
- clawrouter/test/plugin-bridge.pyruns3.8 KB
- clawrouter/test/plugin-parity.test.mjsruns3.4 KB
- clawrouter/test/router-contract.test.tsruns5.1 KB
- clawrouter/test/velocity.test.tsruns4.2 KB
- clawrouter/tsconfig.json279 B
- deposit.tsruns2.2 KB
- litellm-router/config.example.yaml1.0 KB
- litellm-router/example_request.pyruns1.8 KB
- litellm-router/README.md3.2 KB
- litellm-router/requirements.txt24 B
- litellm-router/wzrd_router.pyruns13.2 KB
- lp-add-remove-liquidity.tsruns6.0 KB
- lp-strategy-multi-pool.tsruns7.4 KB
- openrouter-replay/generate-replay.shruns7.0 KB
- openrouter-replay/replay.md4.6 KB
- outsmart/README.md3.5 KB
- portkey/README.md3.0 KB
- portkey/requirements.txt31 B
- portkey/wzrd_portkey.pyruns6.8 KB
- prediction-market-lifecycle.tsruns9.7 KB
- quote-ccm-exit.tsruns5.6 KB
- README.md2.4 KB
- _shared.tsruns1.3 KB
- staking-channel-flow.tsruns11.0 KB
- strategy-vault-ops.tsruns10.4 KB
- .gitignore55 B
21 more files not listed here. See all 61 in the repository.