ai-engineering-toolkit

ai-engineering-toolkit is a skill for Claude Code from iradoweck/antigravity-awesome-skills. It costs 47 tokens per session (1,568 once invoked), scanned A, a copy of ai-engineering-toolkit, MIT.

A set of six repeatable workflows for AI engineering, including prompt scoring, context-budget planning, RAG design, agent security reviews, evaluation testing, and product planning. RAG means retrieving relevant stored information before an AI model answers.

In plain words
What is it for?
Use it to assess prompts, plan how information fits in an AI model’s context, design RAG pipelines, audit AI agents for security, build evaluation tools, and think through an AI product before coding.
Why use it?
It replaces ad-hoc AI assistance with checklists, scoring, and decision steps that teams can repeat and compare. This makes it easier to review AI systems before releasing them.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; mentions Claude Code.

Part of the agentic-awesome-skills plugin — 196 skills shipped together

Good fit Use it to assess prompts, plan how information fits in an AI model’s context, design RAG pipelines, audit AI agents for security, build evaluation tools, and think through an AI product before coding.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/iradoweck/antigravity-awesome-skills/ai-engineering-toolkit
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 iradoweck/antigravity-awesome-skills --skill ai-engineering-toolkit
Clone the repo
git clone --depth 1 https://github.com/iradoweck/antigravity-awesome-skills

Made for: Claude Code.

Or install agentic-awesome-skills, the plugin that ships this one along with the rest of its 196 skills.

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 ai-engineering-toolkit

README.md
[![agentmods](https://agentmods.dev/badge/skills/iradoweck/antigravity-awesome-skills/ai-engineering-toolkit/github.svg)](https://agentmods.dev/skills/iradoweck/antigravity-awesome-skills/ai-engineering-toolkit)
Your own site
<a href="https://agentmods.dev/skills/iradoweck/antigravity-awesome-skills/ai-engineering-toolkit"><img src="https://agentmods.dev/badge/skills/iradoweck/antigravity-awesome-skills/ai-engineering-toolkit/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 ai-engineering-toolkit

Your own site · 80×15
<a href="https://agentmods.dev/skills/iradoweck/antigravity-awesome-skills/ai-engineering-toolkit"><img src="https://agentmods.dev/badge/skills/iradoweck/antigravity-awesome-skills/ai-engineering-toolkit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,568 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 88% copy Near-identical to another mod 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.00047 $0.01568
Opus 5 $0.00023 $0.00784
Sonnet 5 $0.00009 $0.00314
Haiku 4.5 $0.00005 $0.00157

Measured 7d ago against content hash 1ee04216a3d5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

ai-engineering-toolkit 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 7d 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.

Origin

This is a copy

88% identical to ai-engineering-toolkit — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugins/agentic-awesome-skills-claude/skills/ai-engineering-toolkit/SKILL.md · 122 lines

How it starts

The opening of the file, as written. The whole thing — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.

⚠️ AUTHORIZED USE ONLY This skill is for educational purposes or authorized security assessments only. You must have explicit, written permission from the system owner before using this tool. Misuse of this tool is illegal and strictly prohibited.

Mandatory confirmation gate Before running any command that probes, exploits, changes, persists on, extracts data from, or attempts credential access against a target:

  1. Ask the user to state the exact target URL, IP, account, or resource.
  2. Ask the user to confirm written authorization and the permitted scope.
  3. Show the exact command(s) and explain their expected effect.
  4. Wait for explicit confirmation in the current conversation.

Without that confirmation, remain read-only and provide defensive guidance only. Prefer a sandbox, disposable VM, or controlled lab.

AI Engineering Toolkit

Overview

A collection of 6 structured, expert-level workflows that turn your AI coding assistant into a senior AI engineering partner. Each skill encodes a repeatable methodology — not just "ask AI to help," but a step-by-step decision framework with quantitative scoring, checklists, and decision trees.

The key difference from ad-hoc AI assistance: every workflow produces consistent, reproducible results regardless of who runs it or when. You can use the scoring systems as team baselines and write them into CI/CD pipelines.

When to Use This Skill

  • Use when evaluating or optimizing LLM system prompts before production deployment
  • Use when designing a RAG pipeline and need structured architecture decisions (not just boilerplate code)
  • Use when planning token budget allocation across context window zones
  • Use when running pre-launch security audits on AI agents
  • Use when building evaluation frameworks for LLM applications
  • Use when thinking through product strategy before writing code

How It Works

Skill 1: Prompt Evaluator

Scores prompts across 8 dimensions (Clarity, Specificity, Completeness, Conciseness, Structure, Grounding, Safety, Robustness) on a 1-10 scale with weighted aggregation to a 0-100 score. Identifies the 3 weakest dimensions, generates targeted rewrites, and re-evaluates. Supports single prompt, A/B comparison, and batch evaluation modes.

Read the full file on GitHub · 122 lines

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. 7d ago Changed · +9 lines 1ee04216a3d5
  2. 11d ago First seen · 113 lines · 47 tokens per session scan A a34c37ea3fd7

Subscribe to this mod's changes

ai-engineering-toolkit is a skill published in the GitHub repository iradoweck/antigravity-awesome-skills (30 stars, last pushed 10d ago), licensed MIT. It adds 47 tokens to every session and 1,568 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 88% identical to ai-engineering-toolkit, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

ai-engineering-toolkit

6 production-ready AI engineering workflows: prompt evaluation (8-dimension scoring), context budget planning, RAG pipeline design, agent security audit (65-point checklist), eval harness building, and product sense coaching.

sinhoneyy/master-skills · 47 tokens

ai-engineering-toolkit

6 production-ready AI engineering workflows: prompt evaluation (8-dimension scoring), context budget planning, RAG pipeline design, agent security audit (65-point checklist), eval harness building, and product sense coaching.

DorianGallo/antigravity-awesome-skills-local · 47 tokens

ai-engineering-toolkit

6 production-ready AI engineering workflows: prompt evaluation (8-dimension scoring), context budget planning, RAG pipeline design, agent security audit (65-point checklist), eval harness building, and product sense coaching.

pinkpixel-dev/skills-collection-1 · 47 tokens

ai-engineering-toolkit

6 production-ready AI engineering workflows: prompt evaluation (8-dimension scoring), context budget planning, RAG pipeline design, agent security audit (65-point checklist), eval harness building, and product sense coaching.

marysatasselshaped667/skills-collection-1 · 47 tokens

ai-engineering-toolkit

6 production-ready AI engineering workflows: prompt evaluation (8-dimension scoring), context budget planning, RAG pipeline design, agent security audit (65-point checklist), eval harness building, and product sense coaching.

aboalrejal-ai/skills · 47 tokens

ai-engineering-toolkit

6 production-ready AI engineering workflows: prompt evaluation (8-dimension scoring), context budget planning, RAG pipeline design, agent security audit (65-point checklist), eval harness building, and product sense coaching.

lucaspmarie-a11y/claude-skills-vault · 47 tokens