Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

claude-ruby-grape-rails

يحتوي claude-ruby-grape-rails على 59 من skills المجمعة من slbug، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
59
Stars
7
محدث
2026-07-25
Forks
0
التغطية المهنية
6 فئات مهنية · 100% مصنفة
مستكشف المستودعات

Skills في هذا المستودع

cc-changelog
مطوّرو البرمجيات

CONTRIBUTOR TOOL - Track CC changelog, extract new versions since last check, analyze impact on plugin (breaking changes, opportunities, deprecations). Run periodically or before releases. NOT part of the distributed plugin.

2026-07-25
docs-check
مطوّرو البرمجيات

CONTRIBUTOR TOOL - Check the plugin against current cached Claude Code docs. Use before releases or after Claude docs changes to separate real schema drift from stale local assumptions. Not part of the distributed plugin.

2026-07-25
plugin-dev-workflow
مطوّرو البرمجيات

Guide plugin development workflow for this repo. Use when editing shipped plugin files under plugins/ruby-grape-rails/, release/docs metadata, or contributor tooling under .claude/.

2026-07-25
skill-monitor
مطوّرو البرمجيات

Analyze observational skill-effectiveness signals across scanned sessions. Use for exploratory monitoring and recommendation triage, not as a release gate.

2026-07-25
rb-init
مطوّرو البرمجيات

Initializing the Ruby/Rails/Grape plugin: writes stack notes (queues, ORM-per-package, layout) into CLAUDE.md. Triggers: "initialize plugin", "setup ruby plugin", "configure Claude for Rails".

2026-07-25
rb-intro
مطوّرو البرمجيات

Walking a user through the Ruby/Rails/Grape plugin commands, capabilities, and workflow. Tutorial-style intro for newcomers who want to learn what the plugin offers rather than tackle a specific task.

2026-07-15
rb-audit
مطوّرو البرمجيات

Running a project-wide audit of a Ruby/Rails/Grape codebase: architecture, security, performance, testing coverage, ops risk. Emits findings to .claude/audit/.

2026-06-21
rb-review
محللو ضمان جودة البرمجيات والمختبرون

Reviewing Ruby/Rails/Grape changes via parallel specialists: correctness, security, tests, AR, Grape, Sidekiq. Triggers: "review my changes", "code review", "check this PR".

2026-06-21
rb-brief
مطوّرو البرمجيات

Walking through a Ruby/Rails/Grape plan, diff, or review in a concise summary. Triggers: "explain plan", "summarize review", "walk me through".

2026-05-19
rb-deploy
مطوّرو البرمجيات

Configuring Rails deployment: Kamal, Docker, Thruster, Solid Queue, Procfile, container layout.

2026-05-19
rb-document
مطوّرو البرمجيات

Generating documentation for implemented Ruby/Rails/Grape features: YARD/RDoc method docs, README updates, ADRs. Runs after /rb:review passes.

2026-05-19
rb-full
مطوّرو البرمجيات

Running the end-to-end Ruby/Rails/Grape lifecycle in one shot: plan → work → verify → review → compound, chained. Autonomous on happy path; halts on /rb:verify --full failure (HALTED_VERIFY_FAILED), BLOCKED review (HALTED_REVIEW_BLOCKED), REQUIRES CHANGES review (HALTED_REVIEW_REQUIRES_CHANGES), or unparsable review (HALTED_REVIEW_UNKNOWN).

2026-05-19
rb-investigate
مطوّرو البرمجيات

Root-cause analysis for Ruby/Rails/Grape bugs whose cause is unknown. Triggers: "why is this broken", "root cause", "error analysis". Do NOT use for: perf, tracing.

2026-05-19
iron-laws
مطوّرو البرمجيات

Iron Laws of Ruby/Rails/Grape (AR, Sidekiq, security, Ruby, Hotwire, verify). Non-negotiable rules. Triggers: "iron law", "non-negotiable rule", "iron-law-judge".

2026-05-19
rb-plan
مطوّرو البرمجيات

Planning Ruby/Rails/Grape features, Sidekiq, migrations before code. Accepts plan.md, interview.md, REQUIRES CHANGES review. Triggers: "plan this feature", "implementation plan", "design before code".

2026-05-19
ruby-idioms
مطوّرو البرمجيات

Plain Ruby idioms: value objects, error handling, pattern matching, ractors, YJIT. Triggers: "frozen string literal", "plain Ruby code", "endless method", "value object". Do NOT use for: Rails patterns.

2026-05-19
safe-migrations
مصممو قواعد البيانات

Zero-downtime Rails migrations: strong_migrations, backfill, locking, multi-step rename/drop/add-NOT-NULL. Triggers: "is migration safe", "will it lock table", "backfill strategy", "add NOT NULL prod".

2026-05-19
rb-techdebt
مطوّرو البرمجيات

Scanning a Ruby/Rails/Grape codebase for tech-debt items: overgrown services, query repetition, callback sprawl, decorative abstractions, dead code, missing tests around legacy seams. Read-only — logs items, routes fixes elsewhere.

2026-05-19
testing
محللو ضمان جودة البرمجيات والمختبرون

Authoring Ruby/Rails/Grape/Sidekiq tests: request specs, factories, anti-flake. Triggers: "RSpec patterns", "factory setup", "flaky test". Do NOT use for: running tests, executing rspec.

2026-05-19
rb-triage
محللو ضمان جودة البرمجيات والمختبرون

Triaging review findings: pick fix now, skip, or defer. Prioritizes Blockers (Iron Law violations, security). Triggers: "triage", "which to fix", "prioritize findings".

2026-05-19
rb-verify
محللو ضمان جودة البرمجيات والمختبرون

Strongest check stack on Ruby/Rails/Grape: CI wrapper if present, else Zeitwerk + lint + tests + Brakeman. Stops at first failure. Triggers: "verify my work", "run checks", "CI check".

2026-05-19
rb-work
مطوّرو البرمجيات

Executing a Ruby/Rails/Grape plan checklist: reads plan.md, runs tasks, ticks checkboxes. Resumes newest active plan. Triggers: "implement plan", "resume work", "execute plan".

2026-05-19
rb-brainstorm
مطوّرو البرمجيات

Exploring approaches, comparing options, and gathering requirements for a vague Ruby/Rails/Grape feature idea before /rb:plan. Interview-style discovery; emits interview.md.

2026-05-17
rb-research
مطوّرو البرمجيات

Evidence-based research on Ruby/Rails/Grape gems, upgrade paths, security choices, architecture. Cites sources. Triggers: "research this gem", "upgrade path", "evidence for".

2026-05-17
active-record-patterns
مطوّرو البرمجيات

Active Record patterns: models, queries, associations, transactions, locking, migrations. Triggers: "AR scope", "has_many through", "polymorphic". Do NOT use for: Sequel, N+1.

2026-05-15
rb-challenge
محللو ضمان جودة البرمجيات والمختبرون

Running rigorous adversarial scrutiny on Active Record changes, Hotwire/Turbo events, or PR readiness — devil's-advocate questioning before approval.

2026-05-15
hotwire-patterns
مطوّرو البرمجيات

Hotwire in Rails: Turbo Frames, Streams, Stimulus, Action Cable. Triggers: "live update no reload", "broadcast model", "stimulus controller". Do NOT use for: native mobile, jobs.

2026-05-15
intent-detection
مطوّرو البرمجيات

Routing Ruby/Rails/Grape/Sidekiq/AR/Sequel/Hotwire work to the correct /rb: command BEFORE doing it. Pushy gateway, never blocks. Triggers: "my Rails app", "which command", multi-step task. Do NOT use when user typed /rb:<name>.

2026-05-15
security
محللو أمن المعلومات

Rails/Grape security review: authz, injection, output sanitization, SSRF. Triggers: "is this vulnerable", "SQL injection", "XSS", "Brakeman warning". Do NOT use for: secret scans.

2026-05-15
rb-constraint-debug
مطوّرو البرمجيات

Diagnosing Active Record constraint failures: unique-index, foreign-key, NOT-NULL violations. Triggers: "constraint error", "unique violation", "foreign key", "PG::UniqueViolation".

2026-05-15
rb-n1-check
مطوّرو البرمجيات

Diagnosing N+1 query patterns in Rails/Grape: slow index pages, serializers, nested API responses. Triggers: "N+1", "includes", "preload", "bullet warning".

2026-05-15
rb-async-patterns
مطوّرو البرمجيات

Implementing Ruby fiber concurrency: async gem, Falcon server, I/O-bound parallelism, fiber-safe locking.

2026-05-15
rb-compound
مطوّرو البرمجيات

Capturing a solved Ruby/Rails/Grape problem as reusable knowledge. YAML solution doc. Triggers: "compound this", "save this solution", "capture this fix".

2026-05-15
rb-compression-report
مطوّرو البرمجيات

Drafting an anonymized GitHub-issue-ready report from verify-output compression telemetry: PII-redacted, actionable, user copies into a maintainer issue.

2026-05-15
rb-dry-rb-patterns
مطوّرو البرمجيات

Applying dry-rb gems: dry-validation contracts, dry-types coercion, dry-monads Result/Maybe, dry-struct value objects, dry-transaction pipelines, dry-system DI.

2026-05-15
rb-examples
مطوّرو البرمجيات

Surfacing representative example areas and patterns inside the current Ruby/Rails/Grape codebase.

2026-05-15
grape-idioms
مطوّرو البرمجيات

Grape APIs: endpoint design, param coercion, versioning, grape-entity. Triggers: "API versioning", "param coercion", "endpoint design", "Grape::Entity". Do NOT use for: Rails controllers.

2026-05-15
rb-hotwire-native
مطوّرو البرمجيات

Building native iOS/Android shells with Hotwire Native: path configuration, bridge components, native navigation, Turbo Native bridges.

2026-05-15
rb-karafka
مطوّرو البرمجيات

Building Kafka consumers and producers with Karafka in Rails: multi-threaded batch processing, message handlers, OffsetStore.

2026-05-15
rb-learn
مطوّرو البرمجيات

Capturing in-flight lessons when the user corrects your approach or teaches a pattern: ActiveRecord, Rails, Grape, Sidekiq mistakes during work. Writes lightweight learning notes.

2026-05-15
عرض أهم 40 من أصل 59 skills مجمعة في هذا المستودع.