appkit: Skill for Claude Code

.claude/skills/terraform-search-import/SKILL.md

terraform-search-import is a skill for Claude Code from jenreh/appkit. It costs 39 tokens per session (2,135 once invoked), scanned A, a copy of terraform-search-import, MIT.

A guide for finding existing cloud resources and bringing them under Terraform management. Terraform is an infrastructure-as-code tool that stores descriptions of cloud resources and their desired settings.

In plain words
What is it for?
Use it to audit cloud accounts, find resources across regions or accounts, migrate unmanaged infrastructure, and generate bulk imports and configuration for supported resources.
Why use it?
It helps discover resources that were created outside Terraform and checks whether the requested resource type and Terraform version support the automated workflow. It also provides a manual path when they do not.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is jenreh/appkit's own configuration. It tells Claude Code how to work on appkit itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything appkit configures →

Reuse

Borrowing it

Nothing to install: this file belongs to jenreh/appkit. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/jenreh/appkit/main/.claude/skills/terraform-search-import/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/jenreh/appkit

Made for: Claude Code.

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 terraform-search-import

README.md
[![agentmods](https://agentmods.dev/badge/skills/jenreh/appkit/terraform-search-import/github.svg)](https://agentmods.dev/skills/jenreh/appkit/terraform-search-import)
Your own site
<a href="https://agentmods.dev/skills/jenreh/appkit/terraform-search-import"><img src="https://agentmods.dev/badge/skills/jenreh/appkit/terraform-search-import/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 terraform-search-import

Your own site · 80×15
<a href="https://agentmods.dev/skills/jenreh/appkit/terraform-search-import"><img src="https://agentmods.dev/badge/skills/jenreh/appkit/terraform-search-import.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,135 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 100% 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.00039 $0.02135
Opus 5 $0.00019 $0.01068
Sonnet 5 $0.00008 $0.00427
Haiku 4.5 $0.00004 $0.00214

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

Security

Grade A, and why

terraform-search-import 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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/list_resources.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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

100% identical to terraform-search-import — 16 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.

.claude/skills/terraform-search-import/SKILL.md · 373 lines

How it starts

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

Terraform Search and Bulk Import

Discover existing cloud resources using declarative queries and generate configuration for bulk import into Terraform state.

References:

When to Use

  • Bringing unmanaged resources under Terraform control
  • Auditing existing cloud infrastructure
  • Migrating from manual provisioning to IaC
  • Discovering resources across multiple regions/accounts

IMPORTANT: Check Provider Support First

BEFORE starting, you MUST verify the target resource type is supported:

# Check what list resources are available
./scripts/list_resources.sh aws      # Specific provider
./scripts/list_resources.sh          # All configured providers

Decision Tree

  1. Identify target resource type (e.g., aws_s3_bucket, aws_instance)

  2. Check if supported: Run ./scripts/list_resources.sh <provider>

  3. Choose workflow:

    • ** If supported**: Check for terraform version available.
    • ** If terraform version is above 1.14.0** Use Terraform Search workflow (below)
    • ** If not supported or terraform version is below 1.14.0 **: Use Manual Discovery workflow (see references/MANUAL-IMPORT.md)

    Note: The list of supported resources is rapidly expanding. Always verify current support before using manual import.

Prerequisites

Before writing queries, verify the provider supports list resources for your target resource type.

Discover Available List Resources

Run the helper script to extract supported list resources from your provider:

# From a directory with provider configuration (runs terraform init if needed)
./scripts/list_resources.sh aws      # Specific provider
./scripts/list_resources.sh          # All configured providers

Or manually query the provider schema:

terraform providers schema -json | jq '.provider_schemas | to_entries | map({key: (.key | split("/")[-1]), value: (.value.list_resource_schemas // {} | keys)})'

Read the full file on GitHub · 373 lines

Files

What ships with it

2 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 · 373 lines · 39 tokens per session scan A 4922006c3b24

Subscribe to this mod's changes

terraform-search-import is a skill published in the GitHub repository jenreh/appkit (4 stars, last pushed 2d ago), licensed MIT. It adds 39 tokens to every session and 2,135 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to terraform-search-import, differing in 16 lines, and is treated as a copy.

Related

Other skills, from other repositories

architecture-diagram

Create a professional, dark-themed software/system architecture diagram as a single self-contained HTML file with inline SVG. Use when asked to visualize system components, layers, services, or how parts of a codebase fit together.

AgentEra/Agently · 47 tokens

nanobanana

Generate and edit real images with Gemini's Nano Banana — game sprites, sprite sheets and animated GIFs, illustrated icons, textures, mockups, photo edits, background removal. Use whenever a task needs a raster image that cannot be hand-written as SVG or CSS, when asked to "make a sprite", "draw", "generate an image"…

NspxMiguel/NanoBridge · 139 tokens

python-patterns

Pythonic idioms, PEP 8 standards, type hints, and best practices for building robust, efficient, and maintainable Python applications.

khanhhuyenngo985-sys/character-scene-design-skills · 33 tokens

schema-exploration

Lists tables, describes columns and data types, identifies foreign key relationships, and maps entity relationships in a database. Use when the user asks about database schema, table structure, column types, what tables exist, ERD, foreign keys, or how entities relate.

langchain-ai/deepagents · 57 tokens

matlab

Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.

K-Dense-AI/scientific-agent-skills · 42 tokens

mine

Mine a project or conversation into your MemPalace — extract and store memories for later retrieval.

MemPalace/mempalace · 21 tokens