implement-graphql — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited implement-graphql (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use this skill when designing, implementing, or reviewing GraphQL APIs in a Rails application with the graphql-ruby gem.
DO NOT proceed to step 3 before step 1 is written and failing.
AppSchema.execute in spec/graphql/. Never use HTTP controller dispatch for GraphQL specs.connection_type for pagination shapes. Do not leak internal model names.bullet and db-query-matchers in specs. # ✅ batches loads across all records
def buyer
dataloader.with(Sources::RecordById, Buyer).load(object.buyer_id)
end field :internal_notes, String, null: true do
guard -> (_obj, _args, ctx) { ctx[:current_user]&.admin? }
end{ result, errors } shapes on failure. rescue ActiveRecord::RecordInvalid => e
{ order: nil, errors: e.record.errors.full_messages }Before shipping a resolver/mutation slice, ALL of the following must be confirmed:
dataloader.with(Source, Model).load(id) on every association; never object.association.Types::*Type.connection_type, not plain arrays.max_depth and max_complexity set.{ result, errors } with rescue blocks; no unhandled exceptions.description: on every field in every type.Load these files only when their specific content is needed:
| Skill | When to chain |
|---|---|
| define-domain-language | Type and field naming must match business language |
| plan-tests | Choose first failing spec (mutation vs query vs resolver unit) |
| write-tests | Full TDD cycle for resolvers and mutations |
| security-check | Auth, introspection disable, query depth/complexity limits |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.