← All skills
Tencent SkillHub Β· AI

Ruby

Write expressive Ruby with blocks, metaprogramming, and idiomatic patterns.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Write expressive Ruby with blocks, metaprogramming, and idiomatic patterns.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, blocks.md, collections.md, metaprogramming.md, methods.md, objects.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 2 sections Open source page

Quick Reference

TopicFileMutable strings, object equalityobjects.mdProc vs lambda, return behaviorblocks.mdVisibility, method_missingmethods.mdArray/hash mutation trapscollections.mddefine_method, eval trapsmetaprogramming.mdActiveRecord, N+1, callbacksrails.md

Critical Rules

Strings are mutable β€” s = "hi"; s << "!"; t = s means t also has "!" == vs equal? vs eql? β€” == value, equal? identity, eql? hash equality Default hash value is shared β€” Hash.new([]) shares same array, use block form return in proc returns from enclosing method β€” use lambda for local return Block variable shadows outer scope β€” x = 1; [2].each { |x| }; x is still 1 (3.0+) method_missing without respond_to_missing? β€” breaks respond_to? checks private in Ruby is per-object β€” self.private_method fails, implicit receiver works ||= doesn't work for false/nil distinction β€” false ||= true replaces false Frozen string literals β€” # frozen_string_literal: true makes strings immutable Symbol#to_proc β€” &:method_name only works with no-argument methods rescue => e without type β€” catches StandardError, not Exception ensure always runs β€” even after return, use for cleanup

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
6 Docs
  • SKILL.md Primary doc
  • blocks.md Docs
  • collections.md Docs
  • metaprogramming.md Docs
  • methods.md Docs
  • objects.md Docs