Draculabo__AntigravityManager

Draculabo__AntigravityManager is a skill for Claude Code, Codex from Bilal140202/the-lord-of-the-skills. It costs 0 tokens per session (526 once invoked), scanned A, original, MIT.

A code-maintenance guide for replacing common JavaScript and TypeScript runtime checks with matching lodash-es helper functions. It covers checks for strings, numbers, booleans, functions, objects, undefined values, and empty strings.

In plain words
What is it for?
Use it when updating ad-hoc type or empty-value checks, such as checking whether a value is a string, object, or blank.
Why use it?
It provides one consistent style for repeated value checks across application code, server code, desktop-process code, and tests. It also distinguishes runtime checks from TypeScript type syntax that should remain unchanged.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when updating ad-hoc type or empty-value checks, such as checking whether a value is a string, object, or blank.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bilal140202/the-lord-of-the-skills/draculabo__antigravitymanager
Install

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.

Any agent
npx skills add Bilal140202/the-lord-of-the-skills --skill draculabo__antigravitymanager
Clone the repo
git clone --depth 1 https://github.com/Bilal140202/the-lord-of-the-skills

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for Draculabo__AntigravityManager

README.md
[![agentmods](https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/draculabo__antigravitymanager/github.svg)](https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/draculabo__antigravitymanager)
Your own site
<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.

agentmods 80×15 button for Draculabo__AntigravityManager

Your own site · 80×15
<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>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 526 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 9d ago against content hash 3048941f4bcb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

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.

skills/gondor/claude-code/Draculabo__AntigravityManager/SKILL.md · 75 lines

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() !== '' or value.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_MAP
    • z.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

  1. Replace runtime checks first, preserving behavior.
  2. Keep array/object branching semantics unchanged.
  3. Re-scan:
rg -n "typeof\s+[^\n]+(?:===|!==)\s*'" src
  1. Confirm only type-level typeof remains:
rg -n "\btypeof\b" src
  1. Run verification:
npm run type-check
Files

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.

Changes

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.

  1. 9d ago First seen · 75 lines · 0 tokens per session scan A 3048941f4bcb

Subscribe to this mod's changes

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.

Related

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.

vynazevedo/first-plan · 59 tokens

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.

hashgraph-online/awesome-codex-plugins · 53 tokens

agent-booster

WASM-based instant code transforms for simple tasks, achieving 352x speedup over LLM inference with zero cost.

a5c-ai/babysitter · 28 tokens

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…

ericrisco/rsc-harness · 96 tokens

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…

ericrisco/rsc-harness · 101 tokens

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.

softspark/ai-toolkit · 60 tokens