Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Bilal140202/the-lord-of-the-skills --skill draculabo__antigravitymanagergit clone --depth 1 https://github.com/Bilal140202/the-lord-of-the-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/draculabo__antigravitymanager)<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/draculabo__antigravitymanager"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/draculabo__antigravitymanager/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/draculabo__antigravitymanager"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/draculabo__antigravitymanager.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.00526 |
| Opus 5 | $0.00000 | $0.00263 |
| Sonnet 5 | $0.00000 | $0.00105 |
| Haiku 4.5 | $0.00000 | $0.00053 |
Grade A, and why
Draculabo__AntigravityManager scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
lodash-es-runtime-guards
Replace runtime typeof checks and ad-hoc empty-string checks with lodash-es predicates.
When to Use
- You see runtime checks like
typeof value === 'string'. - You see object guards like
value && typeof value === 'object'. - You see emptiness checks like
value.trim() !== ''orvalue.trim() === ''. - You want consistent guard style across app, server, IPC, and tests.
Do Not Replace
- Type-level
typeof(TypeScript only), for example:ReturnType<typeof fn>keyof typeof CONST_MAPz.infer<typeof Schema>
These are compile-time types and must remain as-is.
Guard Mapping
typeof x === 'string'->isString(x)typeof x !== 'string'->!isString(x)typeof x === 'number'->isNumber(x)typeof x === 'boolean'->isBoolean(x)typeof x === 'function'->isFunction(x)typeof x === 'undefined'->isUndefined(x)x && typeof x === 'object'->isObjectLike(x)typeof x === 'object' && x !== null->isObjectLike(x)typeof x === 'object' && !Array.isArray(x)->isObjectLike(x) && !isArray(x)
String Emptiness Pattern
- Prefer:
isEmpty(value.trim())
- Instead of:
value.trim() === ''value.trim() !== ''value.trim().length === 0
Import Style
- Use named imports from
lodash-es:
import { isString, isNumber, isObjectLike, isEmpty } from 'lodash-es';
- Do not use full-package imports.
- Reuse existing imports in file; avoid duplicate imports.
Refactor Checklist
- Replace runtime checks first, preserving behavior.
- Keep array/object branching semantics unchanged.
- Re-scan:
rg -n "typeof\s+[^\n]+(?:===|!==)\s*'" src
- Confirm only type-level
typeofremains:
rg -n "\btypeof\b" src
- Run verification:
npm run type-check
What ships with it
50 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- advanced-event-handler-refs.md 1.4 KB
- advanced-init-once.md 958 B
- architecture-compound-components.md 2.5 KB
- async-api-routes.md 1.1 KB
- async-defer-await.md 2.0 KB
- bundle-barrel-imports.md 2.3 KB
- bundle-conditional.md 949 B
- bundle-dynamic-imports.md 791 B
- bundle-preload.md 1.1 KB
- client-event-listeners.md 1.9 KB
- client-localstorage-schema.md 1.9 KB
- client-passive-event-listeners.md 1.6 KB
- client-swr-dedup.md 1.1 KB
- js-batch-dom-css.md 3.2 KB
- js-cache-function-results.md 1.9 KB
- js-cache-property-access.md 532 B
- js-cache-storage.md 1.6 KB
- js-combine-iterations.md 753 B
- js-early-exit.md 1.1 KB
- js-hoist-regexp.md 1.0 KB
- js-index-maps.md 837 B
- js-length-check-first.md 1.7 KB
- js-min-max-loop.md 2.2 KB
- js-set-map-lookups.md 532 B
- js-tosorted-immutable.md 1.7 KB
- patterns-children-over-render-props.md 1.8 KB
- patterns-explicit-variants.md 2.3 KB
- react19-no-forwardref.md 953 B
- rendering-animate-svg-wrapper.md 1.2 KB
- rendering-conditional-render.md 980 B
- rendering-content-visibility.md 815 B
- rendering-hoist-jsx.md 1.0 KB
- rendering-hydration-no-flicker.md 2.3 KB
- rendering-hydration-suppress-warning.md 872 B
- rendering-usetransition-loading.md 2.0 KB
- rerender-derived-state-no-effect.md 1.2 KB
- rerender-derived-state.md 728 B
- rerender-functional-setstate.md 2.9 KB
- rerender-lazy-state-init.md 2.0 KB
- rerender-memo.md 1.1 KB
- rerender-move-effect-to-event.md 1.2 KB
- rerender-transitions.md 1.0 KB
- rerender-use-ref-transient-values.md 1.7 KB
- server-auth-actions.md 2.6 KB
- server-cache-lru.md 1.3 KB
- server-cache-react.md 2.2 KB
- server-parallel-fetching.md 1.5 KB
- state-context-interface.md 4.9 KB
- state-decouple-implementation.md 2.6 KB
- state-lift-state.md 3.1 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 75 lines · 0 tokens per session scan A 3048941f4bcb
Draculabo__AntigravityManager is a skill published in the GitHub repository Bilal140202/the-lord-of-the-skills (4 stars, last pushed 6d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 526 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
first-plan-lens-typescript
Stack lens para Node/TypeScript. Use durante Discovery quando package.json for detectado. Cobre Next.js, NestJS, Vite SPA, Express, Astro, Remix, Nuxt, plain Node, monorepos pnpm/turbo/nx.
claude-api
Anthropic Claude API patterns for Python and TypeScript. Covers Messages API, streaming, tool use, vision, extended thinking, batches, prompt caching, and Claude Agent SDK. Use when building applications with the Claude API or Anthropic SDKs.
agent-booster
WASM-based instant code transforms for simple tasks, achieving 352x speedup over LLM inference with zero cost.
drizzle-orm
Use when modeling data or querying with Drizzle ORM in TypeScript — pgTable schema in .ts, type-safe select/insert/relational queries, drizzle-kit migrations. NOT Prisma Client or schema.prisma (that is prisma-orm), NOT ORM-agnostic migration strategy (that is db-migrations), NOT Postgres engine tuning or EXPLAIN…
prisma-orm
Use when modeling data or writing type-safe queries with Prisma ORM in TypeScript — schema.prisma, prisma.config.ts, the generated Prisma Client, and Prisma Migrate, including the v6 to v7 upgrade. NOT schema-as-TS with a SQL builder (that is drizzle-orm), NOT ORM-agnostic zero-downtime migration (that is…
typescript-rules
TypeScript/JavaScript coding rules: style, patterns, security, testing. Triggers: .ts, .tsx, .js, .jsx, package.json, tsconfig.json, React, Next.js, Vue, Vite, Vitest, Jest, ESLint.