{"slug":"iuhoay-vanilla-rails","name":"vanilla-rails","description":"Apply Vanilla Rails (37signals/Basecamp) as the default architecture when writing or changing Rails code: thin controllers, rich models, no service/query/interactor layer unless genuinely justified. Load this skill when creating or editing controllers, models, jobs, concerns, mailers, routes, or form objects; when adding a custom action versus a nested resource; when extracting a service, form, query, or interactor; or when deciding where business logic lives. Also use for Rails reviews and simplification. Do not wait for the user to say \"vanilla rails\" or \"service object\". Skip migrations, gem/dependency bumps, CSS/JS/view-only work, credentials, and non-Rails tasks.","long_description":"---\nname: vanilla-rails\ndescription: >\n  Apply Vanilla Rails (37signals/Basecamp) as the default architecture when\n  writing or changing Rails code: thin controllers, rich models, no\n  service/query/interactor layer unless genuinely justified. Load this skill\n  when creating or editing controllers, models, jobs, concerns, mailers,\n  routes, or form objects; when adding a custom action versus a nested\n  resource; when extracting a service, form, query, or interactor; or when\n  deciding where business logic lives. Also use for Rails reviews and\n  simplification. Do not wait for the user to say \"vanilla rails\" or\n  \"service object\". Skip migrations, gem/dependency bumps, CSS/JS/view-only\n  work, credentials, and non-Rails tasks.\nallowed-tools:\n  - Grep\n  - Glob\n  - Read\n  - Task\n---\n\n# Vanilla Rails\n\nDefault architecture when writing Rails, from the Vanilla Rails philosophy of 37signals/Basecamp. Apply it while implementing — do not wait for a review command or for the user to name the philosophy.\n\n## Based on Fizzy\n\nThis skill is informed by [Fizzy](https://github.com/basecamp/fizzy) - a production Rails application from 37signals.\n\n**Key Fizzy patterns:**\n- Controllers call Active Record directly: `@board.update!(board_params)`, `@card.comments.create!(comment_params)`\n- Models composed of concerns: `include Closeable, Golden, Postponable, Watchable`\n- State tracked with dedicated models: `has_one :closure`, `has_one :goldness`\n- No `app/services/` directory\n- Complex multi-step processes use plain objects or ActiveRecord models with state\n\n## Quick Start\n\nVanilla Rails embraces Rails's built-in patterns and avoids premature abstraction:\n\n**Core Philosophy:** Thin controllers that directly invoke a rich domain model. No service layers or other artifacts unless genuinely justified.\n\n```\n┌─────────────────────────────────────────┐\n│              CONTROLLERS                 │\n│         (Thin - HTTP concerns only)      │\n└─────────────────────────────────────────┘\n                    ↓\n┌─────────────────────────────────────────┐\n│               MODELS                     │\n│    (Rich - Business logic lives here)    │\n└─────────────────────────────────────────┘\n                    ↓\n┌─────────────────────────────────────────┐\n│          ACTIVE RECORD / DATABASE        │\n└─────────────────────────────────────────┘\n```\n\n**Core Rule:** Don't add layers beyond what Rails provides unless you have a clear, justified reason.\n\n## Default constraint\n\nThis skill is the house style for Rails work, not an optional review lens. When loaded during implementation, apply the principles below while writing code. Do not ask which review command to run.\n\n**Do:**\n- Put domain logic on the model, or a namespaced concern of that model\n- Keep controllers to params + one model call\n- Prefer a new nested resource over a custom controller action\n- Keep jobs and mailers shallow: `_later` enqueues, `_now` does the work on the model\n\n**Do not introduce** `app/services/`, `app/queries/`, interactors, managers, or handlers unless the bar in [When Services Are Actually OK](#when-services-are-actually-ok) is met — and say so in the change.\n\n**Skip this overlay for** migrations, gem/dependency bumps, CSS/JS, view-only markup, credentials, and anything that is not Rails application code.\n\n## Explicit commands\n\nUse these only when the user asks to review, analyze, or plan a simplification — not as the default response to Rails implementation:\n\n1. **Review code changes** - `/vanilla-rails:review`\n2. **Analyze codebase** - `/vanilla-rails:analyze`\n3. **Plan simplification** - `/vanilla-rails:simplify [goal]`\n\n## Core Principles\n\n### The Three Rules\n\n1. **Thin Controllers** - Controllers only parse params and invoke model methods\n2. **Rich Domain Model** - Business logic belongs in models\n3. **No Premature Abstraction** - Don't create service layers by default\n\n### Common Anti-Patterns\n\n| Anti-Pattern | Example | Fix |\n|--------------|---------|-----|\n| Fat service | 100-line service with domain logic | Move logic to model |\n| Anemic model | Model with only attributes and associations | Add business methods |\n| Controller as orchestrator | Controller calling multiple services | Call rich model methods |\n| Premature service | Simple CRUD wrapped in service | Use plain Active Record |\n| Service explosion | DoSomethingService for every action | Most should be model methods |\n\nSee [Anti-Patterns Reference](references/anti-patterns.md) for complete list.\n\n### When Services Are Actually OK\n\nServices are justified when:\n- Coordinating multiple models (orchestration, not domain logic)\n- External API interactions\n- Multi-step workflows with transaction boundaries\n- Operations that don't naturally belong to any single model\n\n**Fizzy uses plain objects for this:**\n\n```ruby\n# Multi-step signup with ActiveModel::Model\nclass Signup\n  include ActiveModel::Model\n\n  validates :email_address, format: { with: URI::MailTo::EMAIL_REGEXP }\n  validates :full_name, presence: true\n\n  def create_identity\n    @identity = Identity.find_or_create_by!(email_address: email_address)\n    @identity.send_magic_link(for: :sign_up)\n  end\n\n  def complete\n    # Complex account creation with rollback handling\n  end\nend\n```\n\n**Fizzy uses ActiveRecord models for stateful operations:**\n\n```ruby\n# Stateful import with status tracking\nclass Account::Import < ApplicationRecord\n  enum :status, %w[ pending processing completed failed ].index_by(&:itself), default: :pending\n\n  def process(start: nil, callback: nil)\n    processing!\n    # Import logic with ZIP file handling\n    mark_completed\n  rescue => e\n    mark_as_failed\n    raise e\n  end\nend\n```\n\n## Style Preferences\n\n### Conditional Returns\n\nPrefer expanded conditionals over guard clauses (unless returning early at method start for non-trivial bodies).\n\n```ruby\n# Bad - Guard clause\ndef todos_for_new_group\n  ids = params.require(:todolist)[:todo_ids]\n  return [] unless ids\n  @bucket.recordings.todos.find(ids.split(\",\"))\nend\n\n# Good - Expanded conditional\ndef todos_for_new_group\n  if ids = params.require(:todolist)[:todo_ids]\n    @bucket.recordings.todos.find(ids.split(\",\"))\n  else\n    []\n  end\nend\n```\n\n### Method Ordering\n\n1. `class` methods\n2. `public` methods (with `initialize` at top)\n3. `private` methods\n\nOrder methods vertically by invocation order to help readers follow code flow.\n\n### CRUD Controllers\n\nModel endpoints as REST operations. Don't add custom actions - introduce new resources instead.\n\n```ruby\n# Bad\nresources :cards do\n  post :close\n  post :reopen\nend\n\n# Good\nresources :cards do\n  resource :closure\nend\n```\n\n### Visibility Modifiers\n\nNo newline under visibility modifiers; indent content under them.\n\n```ruby\nclass SomeClass\n  def some_method\n    # ...\n  end\n\n  private\n    def some_private_method\n      # ...\n    end\nend\n```\n\nIf a module only has private methods, mark `private` at top with extra newline but don't indent.\n\n### Async Operations\n\nWrite shallow job classes that delegate to domain models:\n- Use `_later` suffix for methods that enqueue jobs\n- Use `_now` suffix for synchronous methods\n\n```ruby\n# Fizzy pattern: _later enqueues, _now does the work\nmodule Event::Relaying\n  extend ActiveSupport::Concern\n\n  included do\n    after_create_commit :relay_later\n  end\n\n  def relay_later\n    Event::RelayJob.perform_later(self)\n  end\n\n  def relay_now\n    # actual implementation\n  end\nend\n\nclass Event::RelayJob < ApplicationJob\n  def perform(event)\n    event.relay_now\n  end\nend\n```\n\n### Bang Methods\n\nOnly use `!` for methods with a counterpart without `!`. Don't use `!` to flag destructive actions.\n\n## Pattern Catalog\n\n| Pattern | Use When | Reference |\n|---------|----------|-----------|\n| Plain Active Record | Simple CRUD, no coordination needed | [plain-activerecord.md](references/patterns/plain-activerecord.md) |\n| Rich Model API | Complex behavior single model should own | [rich-models.md](references/patterns/rich-models.md) |\n| Concern | Shared behavior across models, or organizing one rich model | [concerns.md](references/patterns/concerns.md) |\n| Delegated Type | \"Is-a\" relationships with shared identity | [delegated-type.md](references/patterns/delegated-type.md) |\n| Service/Form | Only when genuinely justified | [when-to-use-services.md](references/patterns/when-to-use-services.md) |\n\n## Red Flags (Over-Engineering)\n\nRun `/vanilla-rails:analyze` to detect:\n\n- 🔴 Service objects for simple operations\n- 🔴 Business logic in services instead of models\n- 🔴 Controllers with more than 10 lines\n- 🔴 \"Managers\", \"Handlers\", \"Processors\" that are just proxies\n- ⚠️ Anemic models (attributes + associations only)\n- ⚠️ Domain logic scattered across service objects\n- ⚠️ Unnecessary abstraction layers\n\n## Examples\n\nSee [examples/](examples/) directory for before/after comparisons showing the Vanilla Rails approach.\n\n## Philosophy\n\n> \"Vanilla Rails is plenty.\" - DHH\n\nMost applications don't need layers beyond what Rails provides. Embrace:\n- `ActiveRecord` models as the home of business logic\n- Controllers as thin wrappers around model calls\n- Callbacks and concerns for code organization\n- Jobs and mailers called from models when appropriate\n\nResist:\n- Service layers as default architecture\n- Premature extraction\n- \"Clean Architecture\" for simple CRUD\n- Pattern-driven development\n\nFor more depth, read the [Vanilla Rails blog post](https://dev.37signals.com/vanilla-rails-is-plenty/).\n","tagline":"Apply Vanilla Rails (37signals/Basecamp) as the default architecture when writing or changing Rails code: thin controllers, rich models, no service/query/interactor layer unless genuinely justified. Load this skill when creating or editing controllers, models, jobs, concerns, mai","category":"research","tags":["agent-skill"],"author":"iuhoay","verified":false,"attribution":{"status":"registry_indexed","statusLabel":"Registry indexed","shortLabel":"REGISTRY INDEXED","sourceLabel":"recursive skill source sync","sourceDetail":"iuhoay/skills","creatorName":"iuhoay","creatorUrl":"https://github.com/iuhoay","sourceUrl":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails","indexedBy":"OpenAgentSkill community index","claimUrl":"https://www.openagentskill.com/skills/iuhoay-vanilla-rails#claim-this-skill","claimCta":"Claim this skill","trustNote":"This listing was indexed from public sources and is not marked official until a maintainer claim is approved.","publicNote":"Attribution links to the public repository or creator profile. Creators can claim the listing to update ownership signals."},"stats":{"stars":52,"forks":1,"verified_installs":0,"successful_runs":0,"total_outcomes":0,"rating":0,"review_count":0,"quality_score":35.47},"quality":{"score":59,"tier":"promising","label":"Promising","summary":"Useful candidate, but compare it with alternatives before adopting.","signals":[{"label":"GitHub stars","value":"52","tone":"neutral"},{"label":"Freshness","value":"14d ago","tone":"positive"},{"label":"Install ready","value":"Yes","tone":"positive"},{"label":"License","value":"Unknown","tone":"neutral"}],"warnings":["Repository license is unknown; consider adding an explicit license to clarify usage rights."]},"trust":{"version":"trust-score-v5","score":59,"base_score":67,"outcome_confidence":0,"tier":"risk","label":"Do not auto-install","summary":"Trust Score v5 found insufficient evidence for agent installation. Treat this as discovery material, not an executable recommendation.","recommendedAction":"Choose a stronger alternative or inspect the source manually before any install attempt.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["59/100 Trust Score v5","67/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":48,"weight":0.13,"status":"warn","detail":"52 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":43,"weight":0.08,"status":"warn","detail":"52 stars, 1 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"14d since push"},{"id":"license","label":"License clarity","score":42,"weight":0.09,"status":"warn","detail":"Unknown"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":74,"weight":0.12,"status":"info","detail":"network or browser surface, database surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add iuhoay/skills --skill vanilla-rails"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":36,"weight":0.07,"status":"fail","detail":"shell or command execution, filesystem or document access"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"warn","label":"GitHub adoption","detail":"52 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"52 stars, 1 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"14d since push"},{"status":"warn","label":"License clarity","detail":"Unknown"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"info","label":"Dependency/runtime risk","detail":"network or browser surface, database surface"},{"status":"pass","label":"Install availability","detail":"npx skills add iuhoay/skills --skill vanilla-rails"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"shell or command execution, filesystem or document access"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"pass","label":"OpenAgentSkill usage","detail":"1 views, 0 install copies"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["Repository license is unknown; consider adding an explicit license to clarify usage rights.","License is unclear","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access","GitHub adoption: 52 GitHub stars","Stars/forks activity: 52 stars, 1 forks; issue activity unavailable in current metadata","License clarity: Unknown","Permission surface: shell or command execution, filesystem or document access","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"52 GitHub stars","repoActivity":"52 stars, 1 forks","lastPushed":"14d since push","license":"Unknown","repository":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails","install":"npx skills add iuhoay/skills --skill vanilla-rails","installSafety":"standard package or runtime install path","permissionSurface":"shell or command execution, filesystem or document access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add iuhoay/skills --skill vanilla-rails","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is unclear","No Agent Proven outcome evidence yet","14d since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["Repository license is unknown; consider adding an explicit license to clarify usage rights.","License is unclear","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access","GitHub adoption: 52 GitHub stars"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v4","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms","source_version"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["research","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add iuhoay/skills --skill vanilla-rails","trust_score":59,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Commercial reuse before clarifying license terms"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["research","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Commercial reuse before clarifying license terms"],"knownRisks":["Repository license is unknown; consider adding an explicit license to clarify usage rights.","License is unclear","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access","GitHub adoption: 52 GitHub stars","Stars/forks activity: 52 stars, 1 forks; issue activity unavailable in current metadata","License clarity: Unknown","Permission surface: shell or command execution, filesystem or document access"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":67,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection."}}},"trust_score_v5":{"version":"trust-score-v5","score":59,"base_score":67,"outcome_confidence":0,"tier":"risk","label":"Do not auto-install","summary":"Trust Score v5 found insufficient evidence for agent installation. Treat this as discovery material, not an executable recommendation.","recommendedAction":"Choose a stronger alternative or inspect the source manually before any install attempt.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["59/100 Trust Score v5","67/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":48,"weight":0.13,"status":"warn","detail":"52 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":43,"weight":0.08,"status":"warn","detail":"52 stars, 1 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"14d since push"},{"id":"license","label":"License clarity","score":42,"weight":0.09,"status":"warn","detail":"Unknown"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":74,"weight":0.12,"status":"info","detail":"network or browser surface, database surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add iuhoay/skills --skill vanilla-rails"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":36,"weight":0.07,"status":"fail","detail":"shell or command execution, filesystem or document access"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"warn","label":"GitHub adoption","detail":"52 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"52 stars, 1 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"14d since push"},{"status":"warn","label":"License clarity","detail":"Unknown"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"info","label":"Dependency/runtime risk","detail":"network or browser surface, database surface"},{"status":"pass","label":"Install availability","detail":"npx skills add iuhoay/skills --skill vanilla-rails"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"shell or command execution, filesystem or document access"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"pass","label":"OpenAgentSkill usage","detail":"1 views, 0 install copies"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["Repository license is unknown; consider adding an explicit license to clarify usage rights.","License is unclear","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access","GitHub adoption: 52 GitHub stars","Stars/forks activity: 52 stars, 1 forks; issue activity unavailable in current metadata","License clarity: Unknown","Permission surface: shell or command execution, filesystem or document access","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"52 GitHub stars","repoActivity":"52 stars, 1 forks","lastPushed":"14d since push","license":"Unknown","repository":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails","install":"npx skills add iuhoay/skills --skill vanilla-rails","installSafety":"standard package or runtime install path","permissionSurface":"shell or command execution, filesystem or document access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add iuhoay/skills --skill vanilla-rails","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is unclear","No Agent Proven outcome evidence yet","14d since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["Repository license is unknown; consider adding an explicit license to clarify usage rights.","License is unclear","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access","GitHub adoption: 52 GitHub stars"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v4","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms","source_version"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["research","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add iuhoay/skills --skill vanilla-rails","trust_score":59,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Commercial reuse before clarifying license terms"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["research","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Commercial reuse before clarifying license terms"],"knownRisks":["Repository license is unknown; consider adding an explicit license to clarify usage rights.","License is unclear","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access","GitHub adoption: 52 GitHub stars","Stars/forks activity: 52 stars, 1 forks; issue activity unavailable in current metadata","License clarity: Unknown","Permission surface: shell or command execution, filesystem or document access"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":67,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection."}}},"trust_score_v4":{"version":"trust-score-v4","score":67,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection.","recommendedAction":"Inspect the repository, license, and recent activity before connecting it to agent workflows.","dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":48,"weight":0.13,"status":"warn","detail":"52 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":43,"weight":0.08,"status":"warn","detail":"52 stars, 1 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"14d since push"},{"id":"license","label":"License clarity","score":42,"weight":0.09,"status":"warn","detail":"Unknown"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":74,"weight":0.12,"status":"info","detail":"network or browser surface, database surface"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add iuhoay/skills --skill vanilla-rails"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":36,"weight":0.07,"status":"fail","detail":"shell or command execution, filesystem or document access"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"warn","label":"GitHub adoption","detail":"52 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"52 stars, 1 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"14d since push"},{"status":"warn","label":"License clarity","detail":"Unknown"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"info","label":"Dependency/runtime risk","detail":"network or browser surface, database surface"},{"status":"pass","label":"Install availability","detail":"npx skills add iuhoay/skills --skill vanilla-rails"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"shell or command execution, filesystem or document access"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"pass","label":"OpenAgentSkill usage","detail":"1 views, 0 install copies"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern"],"warnings":["Repository license is unknown; consider adding an explicit license to clarify usage rights.","License is unclear","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access","GitHub adoption: 52 GitHub stars","Stars/forks activity: 52 stars, 1 forks; issue activity unavailable in current metadata","License clarity: Unknown","Permission surface: shell or command execution, filesystem or document access"],"evidence":{"stars":"52 GitHub stars","repoActivity":"52 stars, 1 forks","lastPushed":"14d since push","license":"Unknown","repository":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails","install":"npx skills add iuhoay/skills --skill vanilla-rails","installSafety":"standard package or runtime install path","permissionSurface":"shell or command execution, filesystem or document access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"installReadiness":{"ready":true,"command":"npx skills add iuhoay/skills --skill vanilla-rails","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is unclear","No Agent Proven outcome evidence yet","14d since push"]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["Repository license is unknown; consider adding an explicit license to clarify usage rights.","License is unclear","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access","GitHub adoption: 52 GitHub stars"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Human review or sandbox validation is required before automatic installation."},"bestFor":["research","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Commercial reuse before clarifying license terms"],"knownRisks":["Repository license is unknown; consider adding an explicit license to clarify usage rights.","License is unclear","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access","GitHub adoption: 52 GitHub stars","Stars/forks activity: 52 stars, 1 forks; issue activity unavailable in current metadata","License clarity: Unknown","Permission surface: shell or command execution, filesystem or document access"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"outcome_stats":null,"safety":{"score":36,"level":"avoid_auto_install","label":"Avoid automatic install","safety_tier":{"tier":"experimental","label":"Experimental","badge":"EXPERIMENTAL","summary":"Sparse or mixed signals. Useful for discovery, but not for autonomous installation.","recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","auto_install_policy":"review","reasons":["High-risk permission hints: Shell or command execution","36/100 agent safety score"]},"auto_install_allowed":false,"human_review_required":true,"blocked":false,"audit_risk":"needs_review","permission_hints":[{"id":"shell","label":"Shell or command execution","reason":"Skill metadata references terminal, CLI, shell, subprocess, or command execution workflows.","severity":"high"},{"id":"browser","label":"Browser automation","reason":"Skill may drive a browser or interact with web pages.","severity":"medium"},{"id":"network","label":"Network access","reason":"Skill likely fetches remote pages, APIs, repositories, or external services.","severity":"medium"},{"id":"filesystem","label":"Filesystem access","reason":"Skill may read or write project files, documents, generated artifacts, or local workspace state.","severity":"medium"},{"id":"database","label":"Database access","reason":"Skill may inspect schemas, query databases, or work with persistent stores.","severity":"medium"}],"policy_warnings":["High-risk permission hints: Shell or command execution","License is unclear"],"constraints_applied":{"max_risk":"medium","needs_install_command":true,"min_stars":0}},"safety_gate":{"tier":"experimental","label":"Experimental","badge":"EXPERIMENTAL","auto_install_policy":"review","auto_install_allowed":false,"blocked":false,"human_review_required":true,"recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","reasons":["High-risk permission hints: Shell or command execution","36/100 agent safety score"]},"eval":{"version":"openagentskill-skill-eval-v1","status":"failed","score":62,"risk_level":"high","decision":{"recommendation":"do_not_auto_install","reason":"Permission surface: shell or command execution, filesystem or document access","auto_install_allowed":false,"policy":"block","human_review_required":true},"blockers":["Permission surface: shell or command execution, filesystem or document access"],"warnings":["Trust score: Potentially useful, but at least one trust signal needs human inspection.","Audit score: Needs review","Agent safety gate: Sparse or mixed signals. Useful for discovery, but not for autonomous installation.","License clarity: Unknown","High-risk permission hints: Shell or command execution","License is unclear","Permission surface may require sandboxing","Repository license is unknown; consider adding an explicit license to clarify usage rights.","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access","GitHub adoption: 52 GitHub stars","Stars/forks activity: 52 stars, 1 forks; issue activity unavailable in current metadata"],"validation_plan":["Inspect repository, README/SKILL.md, license, and recent commits before production use.","Install in an isolated workspace or sandbox with no production secrets available.","Run the smallest representative task and record files touched, commands run, network access, and outputs.","Compare the selected skill against at least one alternative when the eval status is review or failed.","Promote only after the agent reports a successful verification result and unresolved warnings are accepted."],"checks":[{"id":"task_fit","label":"Task fit","status":"pass","score":84,"required_for_auto_install":true,"detail":"Task wording matches this skill metadata.","evidence":["Evaluate vanilla-rails before installing it in an agent workflow","research","GitHub automation workflows; Claude Code teams; builders willing to evaluate younger projects"]},{"id":"install_path","label":"Install path","status":"pass","score":92,"required_for_auto_install":true,"detail":"Install handoff is available.","evidence":["npx skills add iuhoay/skills --skill vanilla-rails"]},{"id":"install_safety","label":"Install command safety","status":"pass","score":92,"required_for_auto_install":true,"detail":"standard package or runtime install path","evidence":["npx skills add iuhoay/skills --skill vanilla-rails"]},{"id":"trust_score","label":"Trust score","status":"warn","score":67,"required_for_auto_install":true,"detail":"Potentially useful, but at least one trust signal needs human inspection.","evidence":["Manual review","52 GitHub stars","Unknown"]},{"id":"audit_score","label":"Audit score","status":"warn","score":72,"required_for_auto_install":true,"detail":"Needs review","evidence":["License is unclear"]},{"id":"agent_safety_gate","label":"Agent safety gate","status":"warn","score":36,"required_for_auto_install":true,"detail":"Sparse or mixed signals. Useful for discovery, but not for autonomous installation.","evidence":["Test manually in an isolated workspace and compare against safer alternatives.","High-risk permission hints: Shell or command execution"]},{"id":"readme_skillmd_completeness","label":"README/SKILL.md completeness","status":"pass","score":86,"required_for_auto_install":false,"detail":"Metadata includes enough usage and workflow context","evidence":["Strong README/SKILL.md context"]},{"id":"license_clarity","label":"License clarity","status":"warn","score":42,"required_for_auto_install":true,"detail":"Unknown","evidence":["Unknown"]},{"id":"recent_maintenance","label":"Recent maintenance","status":"pass","score":100,"required_for_auto_install":false,"detail":"14d since push","evidence":["14d since push"]},{"id":"permission_surface","label":"Permission surface","status":"fail","score":36,"required_for_auto_install":true,"detail":"shell or command execution, filesystem or document access","evidence":["Shell or command execution: high","Browser automation: medium","Network access: medium"]},{"id":"alternatives","label":"Alternatives available","status":"info","score":55,"required_for_auto_install":false,"detail":"No close alternatives were found in the current shortlist.","evidence":[]}],"endpoints":{"web":"https://www.openagentskill.com/skills/iuhoay-vanilla-rails/evals","api":"/api/agent/evals?slug=iuhoay-vanilla-rails","text":"/api/agent/evals?slug=iuhoay-vanilla-rails&format=text"}},"agent_readable_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"iuhoay-vanilla-rails","name":"vanilla-rails","description":"Apply Vanilla Rails (37signals/Basecamp) as the default architecture when writing or changing Rails code: thin controllers, rich models, no service/query/interactor layer unless genuinely justified. Load this skill when creating or editing controllers, models, jobs, concerns, mailers, routes, or form objects; when adding a custom action versus a nested resource; when extracting a service, form, query, or interactor; or when deciding where business logic lives. Also use for Rails reviews and simplification. Do not wait for the user to say \"vanilla rails\" or \"service object\". Skip migrations, gem/dependency bumps, CSS/JS/view-only work, credentials, and non-Rails tasks.","category":"research","url":"https://www.openagentskill.com/skills/iuhoay-vanilla-rails","repository":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails","github_repo":"iuhoay/skills"},"suited_tasks":["GitHub automation workflows","Claude Code teams","builders willing to evaluate younger projects","Inspect repository metadata","Compare code changes","Write concise engineering summaries","Move data between tools","Transform files"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","CLI"],"install":{"command":"npx skills add iuhoay/skills --skill vanilla-rails","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add iuhoay-vanilla-rails"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"vanilla-rails\" agent skill from https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Apply Vanilla Rails (37signals/Basecamp) as the default architecture when writing or changing Rails code: thin controllers, rich models, no service/query/interactor layer unless genuinely justified. Load this skill when creating or editing controllers, models, jobs, concerns, mailers, routes, or form objects; when adding a custom action versus a nested resource; when extracting a service, form, query, or interactor; or when deciding where business logic lives. Also use for Rails reviews and simplification. Do not wait for the user to say \"vanilla rails\" or \"service object\". Skip migrations, gem/dependency bumps, CSS/JS/view-only work, credentials, and non-Rails tasks. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"iuhoay-vanilla-rails\",\"task\":\"Install vanilla-rails\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"vanilla-rails\" as a Claude Code skill from https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Apply Vanilla Rails (37signals/Basecamp) as the default architecture when writing or changing Rails code: thin controllers, rich models, no service/query/interactor layer unless genuinely justified. Load this skill when creating or editing controllers, models, jobs, concerns, mailers, routes, or form objects; when adding a custom action versus a nested resource; when extracting a service, form, query, or interactor; or when deciding where business logic lives. Also use for Rails reviews and simplification. Do not wait for the user to say \"vanilla rails\" or \"service object\". Skip migrations, gem/dependency bumps, CSS/JS/view-only work, credentials, and non-Rails tasks. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"iuhoay-vanilla-rails\",\"task\":\"Install vanilla-rails\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"vanilla-rails\" from https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Apply Vanilla Rails (37signals/Basecamp) as the default architecture when writing or changing Rails code: thin controllers, rich models, no service/query/interactor layer unless genuinely justified. Load this skill when creating or editing controllers, models, jobs, concerns, mailers, routes, or form objects; when adding a custom action versus a nested resource; when extracting a service, form, query, or interactor; or when deciding where business logic lives. Also use for Rails reviews and simplification. Do not wait for the user to say \"vanilla rails\" or \"service object\". Skip migrations, gem/dependency bumps, CSS/JS/view-only work, credentials, and non-Rails tasks. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"iuhoay-vanilla-rails\",\"task\":\"Install vanilla-rails\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/iuhoay-vanilla-rails/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/iuhoay-vanilla-rails"},"trust":{"score":67,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"52 GitHub stars","repoActivity":"52 stars, 1 forks","lastPushed":"14d since push","license":"Unknown","repository":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails","install":"npx skills add iuhoay/skills --skill vanilla-rails","installSafety":"standard package or runtime install path","permissionSurface":"shell or command execution, filesystem or document access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["research","agent-skill"],"known_risks":["Repository license is unknown; consider adding an explicit license to clarify usage rights.","License is unclear","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access","GitHub adoption: 52 GitHub stars","Stars/forks activity: 52 stars, 1 forks; issue activity unavailable in current metadata","License clarity: Unknown","Permission surface: shell or command execution, filesystem or document access"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":72,"risk_level":"needs_review","risk_label":"Needs review","warnings":["License is unclear","Permission surface may require sandboxing","Repository license is unknown; consider adding an explicit license to clarify usage rights.","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access","GitHub adoption: 52 GitHub stars","Stars/forks activity: 52 stars, 1 forks; issue activity unavailable in current metadata","License clarity: Unknown"]},"safety_gate":{"tier":"experimental","label":"Experimental","auto_install_policy":"review","auto_install_allowed":false,"human_review_required":true,"blocked":false,"recommended_action":"Test manually in an isolated workspace and compare against safer alternatives."},"quality":{"score":59,"label":"Promising"},"supply":{"track":"Coding and developer agents","scenario":"GitHub automation","maintenance":"14d since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","Repository license is unknown; consider adding an explicit license to clarify usage rights.","High-risk permission hints: Shell or command execution","License is unclear","Permission surface may require sandboxing","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access"],"agent_contract":{"task_input":"Use vanilla-rails in an agent workflow","recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","install_policy":"review","minimum_review_before_use":["Trust: 67/100 Manual review","Audit: 72/100 Needs review","Safety: 36/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"iuhoay-vanilla-rails (vanilla-rails)","install_command":"npx skills add iuhoay/skills --skill vanilla-rails","risk_summary":"Needs review; Experimental; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"iuhoay-vanilla-rails","task":"Use vanilla-rails in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/iuhoay-vanilla-rails","api":"https://www.openagentskill.com/api/agent/skills/iuhoay-vanilla-rails","audit":"https://www.openagentskill.com/skills/iuhoay-vanilla-rails/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=iuhoay-vanilla-rails&task=Use%20vanilla-rails%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20vanilla-rails%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20vanilla-rails%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/iuhoay-vanilla-rails/install","manifest":"https://www.openagentskill.com/api/registry/manifest/iuhoay-vanilla-rails"}},"machine_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"iuhoay-vanilla-rails","name":"vanilla-rails","description":"Apply Vanilla Rails (37signals/Basecamp) as the default architecture when writing or changing Rails code: thin controllers, rich models, no service/query/interactor layer unless genuinely justified. Load this skill when creating or editing controllers, models, jobs, concerns, mailers, routes, or form objects; when adding a custom action versus a nested resource; when extracting a service, form, query, or interactor; or when deciding where business logic lives. Also use for Rails reviews and simplification. Do not wait for the user to say \"vanilla rails\" or \"service object\". Skip migrations, gem/dependency bumps, CSS/JS/view-only work, credentials, and non-Rails tasks.","category":"research","url":"https://www.openagentskill.com/skills/iuhoay-vanilla-rails","repository":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails","github_repo":"iuhoay/skills"},"suited_tasks":["GitHub automation workflows","Claude Code teams","builders willing to evaluate younger projects","Inspect repository metadata","Compare code changes","Write concise engineering summaries","Move data between tools","Transform files"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","CLI"],"install":{"command":"npx skills add iuhoay/skills --skill vanilla-rails","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add iuhoay-vanilla-rails"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"vanilla-rails\" agent skill from https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Apply Vanilla Rails (37signals/Basecamp) as the default architecture when writing or changing Rails code: thin controllers, rich models, no service/query/interactor layer unless genuinely justified. Load this skill when creating or editing controllers, models, jobs, concerns, mailers, routes, or form objects; when adding a custom action versus a nested resource; when extracting a service, form, query, or interactor; or when deciding where business logic lives. Also use for Rails reviews and simplification. Do not wait for the user to say \"vanilla rails\" or \"service object\". Skip migrations, gem/dependency bumps, CSS/JS/view-only work, credentials, and non-Rails tasks. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"iuhoay-vanilla-rails\",\"task\":\"Install vanilla-rails\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"vanilla-rails\" as a Claude Code skill from https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Apply Vanilla Rails (37signals/Basecamp) as the default architecture when writing or changing Rails code: thin controllers, rich models, no service/query/interactor layer unless genuinely justified. Load this skill when creating or editing controllers, models, jobs, concerns, mailers, routes, or form objects; when adding a custom action versus a nested resource; when extracting a service, form, query, or interactor; or when deciding where business logic lives. Also use for Rails reviews and simplification. Do not wait for the user to say \"vanilla rails\" or \"service object\". Skip migrations, gem/dependency bumps, CSS/JS/view-only work, credentials, and non-Rails tasks. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"iuhoay-vanilla-rails\",\"task\":\"Install vanilla-rails\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"vanilla-rails\" from https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Apply Vanilla Rails (37signals/Basecamp) as the default architecture when writing or changing Rails code: thin controllers, rich models, no service/query/interactor layer unless genuinely justified. Load this skill when creating or editing controllers, models, jobs, concerns, mailers, routes, or form objects; when adding a custom action versus a nested resource; when extracting a service, form, query, or interactor; or when deciding where business logic lives. Also use for Rails reviews and simplification. Do not wait for the user to say \"vanilla rails\" or \"service object\". Skip migrations, gem/dependency bumps, CSS/JS/view-only work, credentials, and non-Rails tasks. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"iuhoay-vanilla-rails\",\"task\":\"Install vanilla-rails\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/iuhoay-vanilla-rails/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/iuhoay-vanilla-rails"},"trust":{"score":67,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"52 GitHub stars","repoActivity":"52 stars, 1 forks","lastPushed":"14d since push","license":"Unknown","repository":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails","install":"npx skills add iuhoay/skills --skill vanilla-rails","installSafety":"standard package or runtime install path","permissionSurface":"shell or command execution, filesystem or document access","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["research","agent-skill"],"known_risks":["Repository license is unknown; consider adding an explicit license to clarify usage rights.","License is unclear","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access","GitHub adoption: 52 GitHub stars","Stars/forks activity: 52 stars, 1 forks; issue activity unavailable in current metadata","License clarity: Unknown","Permission surface: shell or command execution, filesystem or document access"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":72,"risk_level":"needs_review","risk_label":"Needs review","warnings":["License is unclear","Permission surface may require sandboxing","Repository license is unknown; consider adding an explicit license to clarify usage rights.","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access","GitHub adoption: 52 GitHub stars","Stars/forks activity: 52 stars, 1 forks; issue activity unavailable in current metadata","License clarity: Unknown"]},"safety_gate":{"tier":"experimental","label":"Experimental","auto_install_policy":"review","auto_install_allowed":false,"human_review_required":true,"blocked":false,"recommended_action":"Test manually in an isolated workspace and compare against safer alternatives."},"quality":{"score":59,"label":"Promising"},"supply":{"track":"Coding and developer agents","scenario":"GitHub automation","maintenance":"14d since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","Repository license is unknown; consider adding an explicit license to clarify usage rights.","High-risk permission hints: Shell or command execution","License is unclear","Permission surface may require sandboxing","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access"],"agent_contract":{"task_input":"Use vanilla-rails in an agent workflow","recommended_action":"Test manually in an isolated workspace and compare against safer alternatives.","install_policy":"review","minimum_review_before_use":["Trust: 67/100 Manual review","Audit: 72/100 Needs review","Safety: 36/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"iuhoay-vanilla-rails (vanilla-rails)","install_command":"npx skills add iuhoay/skills --skill vanilla-rails","risk_summary":"Needs review; Experimental; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"iuhoay-vanilla-rails","task":"Use vanilla-rails in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/iuhoay-vanilla-rails","api":"https://www.openagentskill.com/api/agent/skills/iuhoay-vanilla-rails","audit":"https://www.openagentskill.com/skills/iuhoay-vanilla-rails/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=iuhoay-vanilla-rails&task=Use%20vanilla-rails%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20vanilla-rails%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20vanilla-rails%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/iuhoay-vanilla-rails/install","manifest":"https://www.openagentskill.com/api/registry/manifest/iuhoay-vanilla-rails"}},"supply_profile":{"track":{"slug":"coding","label":"Coding and developer agents","shortLabel":"Coding","description":"Code review, repo analysis, testing, CI, GitHub, DevOps, and developer workflow skills."},"scenario":{"label":"GitHub automation","description":"I need my agent to triage GitHub issues, review pull requests, and summarize repository changes.","useCases":[{"slug":"github-automation","title":"GitHub automation"},{"slug":"workflow-automation","title":"Workflow automation"},{"slug":"coding-agents","title":"Coding agents"}]},"applicableAgents":["Claude Code","CLI","Codex","Cursor"],"install":{"ready":true,"command":"npx skills add iuhoay/skills --skill vanilla-rails","primaryTarget":"CLI","targetCount":4},"githubQuality":{"stars":52,"starsLabel":"52","forks":1,"license":"Unknown","qualityScore":59,"trustScore":67,"auditScore":72},"maintenance":{"status":"fresh","label":"14d since push","daysSincePush":14,"lastPushedAt":"2026-08-25T02:32:44+00:00"},"risk":{"level":"needs_review","label":"Needs review","requiresReview":true,"notes":["License is unclear","Permission surface may require sandboxing","Repository license is unknown; consider adding an explicit license to clarify usage rights.","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access"]},"coverageTags":["Coding","GitHub automation","research","agent-skill"]},"audit":{"audit_score":72,"risk_level":"needs_review","risk_label":"Needs review","quality_score":59,"trust_score":67,"maintenance_score":100,"security_score":69,"install_score":92,"warnings":["License is unclear","Permission surface may require sandboxing","Repository license is unknown; consider adding an explicit license to clarify usage rights.","Quality score needs review","Permission surface needs review: shell or command execution, filesystem or document access","GitHub adoption: 52 GitHub stars","Stars/forks activity: 52 stars, 1 forks; issue activity unavailable in current metadata","License clarity: Unknown","Permission surface: shell or command execution, filesystem or document access"]},"quality_signals":{"model":"v2","star_score":12.07,"usage_score":0,"review_score":5.4,"metadata_score":3,"freshness_score":15},"platforms":["Claude Code"],"use_cases":[{"slug":"github-automation","title":"GitHub automation","url":"https://www.openagentskill.com/use-cases/github-automation"},{"slug":"workflow-automation","title":"Workflow automation","url":"https://www.openagentskill.com/use-cases/workflow-automation"},{"slug":"coding-agents","title":"Coding agents","url":"https://www.openagentskill.com/use-cases/coding-agents"},{"slug":"research-agents","title":"Research agents","url":"https://www.openagentskill.com/use-cases/research-agents"}],"stacks":[{"slug":"content-growth-agent","title":"Content growth agent","url":"https://www.openagentskill.com/collections/content-growth-agent"},{"slug":"coding-review-agent","title":"Coding review agent","url":"https://www.openagentskill.com/collections/coding-review-agent"},{"slug":"research-report-agent","title":"Research report agent","url":"https://www.openagentskill.com/collections/research-report-agent"}],"install":"npx skills add iuhoay/skills --skill vanilla-rails","install_targets":[{"id":"openagentskill-cli","label":"CLI","title":"OpenAgentSkill CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add iuhoay-vanilla-rails","description":"Resolve policy, run the source installer safely, and report a verified install receipt.","copyLabel":"Copy command"},{"id":"codex","label":"Codex","title":"Codex install prompt","kind":"agent-prompt","value":"Install the \"vanilla-rails\" agent skill from https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Apply Vanilla Rails (37signals/Basecamp) as the default architecture when writing or changing Rails code: thin controllers, rich models, no service/query/interactor layer unless genuinely justified. Load this skill when creating or editing controllers, models, jobs, concerns, mailers, routes, or form objects; when adding a custom action versus a nested resource; when extracting a service, form, query, or interactor; or when deciding where business logic lives. Also use for Rails reviews and simplification. Do not wait for the user to say \"vanilla rails\" or \"service object\". Skip migrations, gem/dependency bumps, CSS/JS/view-only work, credentials, and non-Rails tasks. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"iuhoay-vanilla-rails\",\"task\":\"Install vanilla-rails\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Give Codex a repo-aware install prompt when the skill is not available through a local CLI.","copyLabel":"Copy prompt"},{"id":"claude-code","label":"Claude Code","title":"Claude Code skill prompt","kind":"agent-prompt","value":"Add \"vanilla-rails\" as a Claude Code skill from https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Apply Vanilla Rails (37signals/Basecamp) as the default architecture when writing or changing Rails code: thin controllers, rich models, no service/query/interactor layer unless genuinely justified. Load this skill when creating or editing controllers, models, jobs, concerns, mailers, routes, or form objects; when adding a custom action versus a nested resource; when extracting a service, form, query, or interactor; or when deciding where business logic lives. Also use for Rails reviews and simplification. Do not wait for the user to say \"vanilla rails\" or \"service object\". Skip migrations, gem/dependency bumps, CSS/JS/view-only work, credentials, and non-Rails tasks. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"iuhoay-vanilla-rails\",\"task\":\"Install vanilla-rails\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this prompt to ask Claude Code to add the skill and explain the local activation steps.","copyLabel":"Copy prompt"},{"id":"cursor","label":"Cursor","title":"Cursor rule prompt","kind":"agent-prompt","value":"Turn \"vanilla-rails\" from https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Apply Vanilla Rails (37signals/Basecamp) as the default architecture when writing or changing Rails code: thin controllers, rich models, no service/query/interactor layer unless genuinely justified. Load this skill when creating or editing controllers, models, jobs, concerns, mailers, routes, or form objects; when adding a custom action versus a nested resource; when extracting a service, form, query, or interactor; or when deciding where business logic lives. Also use for Rails reviews and simplification. Do not wait for the user to say \"vanilla rails\" or \"service object\". Skip migrations, gem/dependency bumps, CSS/JS/view-only work, credentials, and non-Rails tasks. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"iuhoay-vanilla-rails\",\"task\":\"Install vanilla-rails\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this when installing as Cursor project rules or reusable agent instructions.","copyLabel":"Copy prompt"}],"repository":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails","github_repo":"iuhoay/skills","version":"1.0.0","license":"Unknown","urls":{"web":"https://www.openagentskill.com/skills/iuhoay-vanilla-rails","repository":"https://github.com/iuhoay/skills/tree/main/vanilla-rails/skills/vanilla-rails","api":"/api/agent/skills/iuhoay-vanilla-rails","install_api":"/api/skills/iuhoay-vanilla-rails/install"},"meta":{"created_at":"2026-08-25T03:36:39.068825+00:00","updated_at":"2026-09-01T11:59:28.941454+00:00","agent_friendly":true}}