conductor-setup
Configures a Rails project for Conductor, enabling parallel coding agents with isolated settings and Redis integration.
Install this skill
or
79/100
Security score
The conductor-setup skill was audited on Jun 5, 2026 and we found 9 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
medium line 63
Template literal with variable interpolation in command context
SourceSKILL.md
| 63 | ```bash |
medium line 84
Fetch to external URL
SourceSKILL.md
| 84 | For each of the following files, if they exist and contain Redis configuration, update them to use `ENV.fetch('REDIS_URL', ...)` or `ENV['REDIS_URL']` with a fallback: |
low line 89
Fetch to external URL
SourceSKILL.md
| 89 | redis_url = ENV.fetch('REDIS_URL', 'redis://localhost:6379/0') |
low line 97
Fetch to external URL
SourceSKILL.md
| 97 | url: <%= ENV.fetch('REDIS_URL', 'redis://localhost:6379/1') %> |
low line 103
Fetch to external URL
SourceSKILL.md
| 103 | config.cache_store = :redis_cache_store, { url: ENV.fetch('REDIS_URL', 'redis://localhost:6379/0') } |
low line 109
Fetch to external URL
SourceSKILL.md
| 109 | Rack::Attack.cache.store = ActiveSupport::Cache::RedisCacheStore.new(url: ENV.fetch('REDIS_URL', 'redis://localhost:6379/0')) |
medium line 123
Fetch to external URL
SourceSKILL.md
| 123 | 3. Check that Rails configs properly reference `ENV['REDIS_URL']` or `ENV.fetch('REDIS_URL', ...)` |
low line 46
Access to .env file
SourceSKILL.md
| 46 | # Symlink .env from repo root (where secrets live, outside worktrees) |
low line 47
Access to .env file
SourceSKILL.md
| 47 | [ -f "$CONDUCTOR_ROOT_PATH/.env" ] && ln -sf "$CONDUCTOR_ROOT_PATH/.env" .env |
Scanned on Jun 5, 2026
View Security Dashboard