Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

rails-audit-thoughtbotRails 审核 thoughtbot

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

649

周安装

26

GitHub Stars

134

下载量

210
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:rails-audit-thoughtbot(Rails 审核 thoughtbot)
来源仓库:https://github.com/thoughtbot/rails-audit-thoughtbot
仓库路径:skills/rails-audit-thoughtbot
安装命令:
npx skills add https://github.com/thoughtbot/rails-audit-thoughtbot --skill rails-audit-thoughtbot
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/thoughtbot/rails-audit-thoughtbot --skill rails-audit-thoughtbot

简介

用于执行 Rails 应用的安全审计,识别常见漏洞与配置风险。

  • 适合在上线前或定期安全检查中梳理认证、授权与密钥管理。
  • 通过命令行工具运行,需具备读取配置文件与依赖清单的权限。
  • 不能将工具输出视为绝对结论,必须人工复核高危项。rails-audit-thoughtbot 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议隔离测试环境与生产凭证,防止误操作导致数据泄露。

SKILL.md

Rails Audit Skill (thoughtbot Best Practices)

Perform comprehensive Ruby on Rails application audits based on thoughtbot's Ruby Science and Testing Rails best practices, with emphasis on Plain Old Ruby Objects (POROs) over Service Objects.

Audit Scope

The audit can be run in two modes:

  1. Full Application Audit: Analyze entire Rails application
  2. Targeted Audit: Analyze specific files or directories

Execution Flow

Step 1: Determine Audit Scope

Ask user or infer from request:

  • Full audit: Analyze all of app/, spec/ or test/, config/, db/, lib/
  • Targeted audit: Analyze specified paths only

Step 2: Collect Optional Metrics (SimpleCov + RubyCritic)

Ask the user both questions upfront in a single AskUserQuestion so they can decide once:

  • Question: "Before starting the audit, would you like to collect automated metrics?\n\n1. SimpleCov — runs your test suite to capture actual code coverage percentages\n2. RubyCritic — analyzes code complexity, duplication, and smells (does not run tests)\n\nBoth are recommended for the most thorough audit."
  • Options: "Yes to both (Recommended)" / "SimpleCov only" / "RubyCritic only" / "Skip both"

Based on the user's choice, spawn the accepted subagents in parallel using the Task tool. Both can run at the same time because SimpleCov modifies the test helper while RubyCritic only reads source files — they don't conflict.

SimpleCov subagent (if accepted):

Read the file agents/simplecov_agent.md and follow all steps described in it. The audit scope is: {{SCOPE from Step 1}}. Return the coverage data in the output format specified in that file.

RubyCritic subagent (if accepted):

Read the file agents/rubycritic_agent.md and follow all steps described in it. The audit scope is: {{SCOPE from Step 1}}. Return the code quality data in the output format specified in that file.

After both agents finish, clean up:

  • If SimpleCov ran: rm -rf coverage/
  • If RubyCritic ran: rm -rf tmp/rubycritic/

Interpreting responses:

  • COVERAGE_FAILED / RUBYCRITIC_FAILED: no data for that tool — use estimation mode (SimpleCov) or omit the section (RubyCritic). Note the failure reason in the report.
  • COVERAGE_DATA: parse and keep in context for Steps 4 and 5 (overall coverage, per-directory breakdowns, lowest-coverage files, zero-coverage files).
  • RUBYCRITIC_DATA: parse and keep in context for Steps 4 and 5 (overall score, per-directory ratings, worst-rated files, top smells, most complex files).

Step 3: Load Reference Materials

Before analyzing, read the relevant reference files:

  • references/code_smells.md - Code smell patterns to identify
  • references/testing_guidelines.md - Testing best practices
  • references/poro_patterns.md - PORO and ActiveModel patterns
  • references/security_checklist.md - Security vulnerability patterns
  • references/rails_antipatterns.md - Rails-specific antipatterns (external services, migrations, performance)

Step 4: Analyze Code by Category

Analyze in this order:

  1. Testing Coverage & Quality

- If SimpleCov data was collected in Step 2, use actual coverage percentages instead of estimates - Cross-reference per-file SimpleCov data: files with 0% coverage = "missing tests" - Check for missing test files - Identify untested public methods - Review test structure (Four Phase Test) - Check for testing antipatterns

  1. Security Vulnerabilities

- SQL injection risks - Mass assignment vulnerabilities - XSS vulnerabilities - Authentication/authorization issues - Sensitive data exposure

  1. Models & Database

- Fat model detection - Missing validations - N+1 query risks - Callback complexity - Law of Demeter violations (voyeuristic models) - If RubyCritic data was collected, flag models with D/F ratings or high complexity

  1. Controllers

- Fat controller detection - Business logic in controllers - Missing strong parameters - Response handling - Monolithic controllers (non-RESTful actions, > 7 actions) - Bloated sessions (storing objects instead of IDs) - If RubyCritic data was collected, flag controllers with D/F ratings or high complexity

  1. Code Design & Architecture

- Service Objects → recommend PORO refactoring - Large classes - Long methods - Feature envy - Law of Demeter violations - Single Responsibility violations - If RubyCritic data was collected, cross-reference D/F rated files and high-complexity files with manual code review findings

  1. Views & Presenters

- Logic in views (PHPitis) - Missing partials for DRY - Helper complexity - Query logic in views

  1. External Services & Error Handling

- Fire and forget (missing exception handling for HTTP calls) - Sluggish services (missing timeouts, synchronous calls that should be backgrounded) - Bare rescue statements - Silent failures (save without checking return value)

  1. Database & Migrations

- Messy migrations (model references, missing down methods) - Missing indexes on foreign keys, polymorphic associations, uniqueness validations - Performance antipatterns (Ruby iteration vs SQL queries) - Bulk operations without transactions

Step 5: Generate Audit Report

Create RAILS_AUDIT_REPORT.md in project root with structure defined in references/report_template.md.

When SimpleCov coverage data was collected in Step 2, use the SimpleCov variant of the Testing section in the report template. When coverage data is not available, use the estimation variant.

When RubyCritic data was collected in Step 2b, include the Code Quality Metrics section in the report using the RubyCritic variant from the report template. When RubyCritic data is not available, use the not available variant.

Severity Definitions

  • Critical: Security vulnerabilities, data loss risks, production-breaking issues
  • High: Performance issues, missing tests for critical paths, major code smells
  • Medium: Code smells, convention violations, maintainability concerns
  • Low: Style issues, minor improvements, suggestions

Key Detection Patterns

Service Object → PORO Refactoring

When you find classes in app/services/:

  • Classes named *Service, *Manager, *Handler
  • Classes with only .call or .perform methods
  • Recommend: Rename to domain nouns, include ActiveModel::Model

Fat Model Detection

Models with:

  • More than 200 lines
  • More than 15 public methods
  • Multiple unrelated responsibilities
  • Recommend: Extract to POROs using composition

Fat Controller Detection

Controllers with:

  • Actions over 15 lines
  • Business logic (not request/response handling)
  • Multiple instance variable assignments
  • Recommend: Extract to form objects or domain models

Missing Test Detection

For each Ruby file in app/:

  • Check for corresponding _spec.rb or _test.rb
  • Check for tested public methods
  • Report untested files and methods

Analysis Commands

Use Claude Code's built-in tools instead of shell commands — they're faster, handle permissions correctly, and give better output:

  • Find Ruby files by type: Use the Glob tool with patterns like app/models/**/*.rb, app/controllers/**/*.rb, app/services/**/*.rb
  • Find test files: Use Glob with spec/**/*_spec.rb or test/**/*_test.rb
  • Search for patterns in code: Use the Grep tool (e.g., search for rescue\s*$, \.save\b, params\.permit!)
  • Read and count lines in files: Use the Read tool to inspect files; count lines from the output
  • Find long files: Use Glob to list all app/**/*.rb files, then Read each to check line count

Report Output

Always save the audit report to RAILS_AUDIT_REPORT.md in the project root and present it to the user.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

39.17%
按下载量换算82

Claude

28.36%
按下载量换算60

Cursor

18.55%
按下载量换算39

Gemini CLI

10.41%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/thoughtbot/rails-audit-thoughtbot --skill rails-audit-thoughtbot 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills