terradart: Skill for Claude Code

.agents/skills/terradart-tighten-example-topology/SKILL.md

terradart-tighten-example-topology is a skill for Claude Code, Codex from nozomi-koborinai/terradart. It costs 41 tokens per session (696 once invoked), scanned A, original, Apache-2.0.

A follow-up workflow for connecting example infrastructure resources that were created but are not referenced by the rest of the example. Infrastructure resources are cloud components such as certificates, health checks, proxies, and forwarding rules.

In plain words
What is it for?
Use it after adding example resources to find orphaned factories, add required references between them, and run topology and Terraform validation checks.
Why use it?
It catches examples where resources pass generation and Terraform validation but do not actually form a working chain. This reduces the risk of publishing a quickstart with disconnected components.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is nozomi-koborinai/terradart's own configuration. It tells Claude Code and Codex how to work on terradart 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 terradart configures →

Reuse

Borrowing it

Nothing to install: this file belongs to nozomi-koborinai/terradart. 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/nozomi-koborinai/terradart/main/.agents/skills/terradart-tighten-example-topology/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/nozomi-koborinai/terradart

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 terradart-tighten-example-topology

README.md
[![agentmods](https://agentmods.dev/badge/skills/nozomi-koborinai/terradart/terradart-tighten-example-topology/github.svg)](https://agentmods.dev/skills/nozomi-koborinai/terradart/terradart-tighten-example-topology)
Your own site
<a href="https://agentmods.dev/skills/nozomi-koborinai/terradart/terradart-tighten-example-topology"><img src="https://agentmods.dev/badge/skills/nozomi-koborinai/terradart/terradart-tighten-example-topology/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 terradart-tighten-example-topology

Your own site · 80×15
<a href="https://agentmods.dev/skills/nozomi-koborinai/terradart/terradart-tighten-example-topology"><img src="https://agentmods.dev/badge/skills/nozomi-koborinai/terradart/terradart-tighten-example-topology.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 696 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00041 $0.00696
Opus 5 $0.00020 $0.00348
Sonnet 5 $0.00008 $0.00139
Haiku 4.5 $0.00004 $0.00070

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

Security

Grade A, and why

terradart-tighten-example-topology 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 6d 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.

.agents/skills/terradart-tighten-example-topology/SKILL.md · 51 lines

How it starts

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

Tighten example topology

Use after terradart-backfill-examples when a quickstart gained coverage-only resources that synth + validate but are not linked into the stack.

When to use

  • Reviewer or agent notices factories that "exist only to appear in synth output."
  • dart tool/check_example_topology.dart reports unwired must-reference types on a strict quickstart.
  • Before merging a large example extension (especially compute_lb_quickstart).

Workflow

  • 1. Identify orphans — resources with no incoming TfArg.ref / dependsOn from siblings. Natural leaf nodes (forwarding rules, IAM members, one-shot jobs, firewalls) do not need incoming refs.

  • 2. Wire must-reference types (common cases):

    Factory type Wire into
    GoogleComputeSslCertificate sslCertificates on GoogleComputeTargetSslProxy / GoogleComputeTargetHttpsProxy
    GoogleComputeRegionSslCertificate sslCertificates on GoogleComputeRegionTargetHttpsProxy
    GoogleComputeRegionHealthCheck healthChecks on GoogleComputeRegionBackendService
    GoogleComputeTargetHttpProxy target on GoogleComputeGlobalForwardingRule (port 80)
    GoogleComputeRegionTargetHttpProxy target on GoogleComputeForwardingRule (regional ILB)
  • 3. Reorder add(...) blocks so referenced resources are created before consumers; capture final x = add(...) when later siblings need TfArg.ref(x.*).

  • 4. Sensitive fields — keep TfArg.variable + variables.tf.json (see backfill skill).

  • 5. Register strict quickstarts — add slug to strict: in tool/example_topology_allowlist.yaml when the example should enforce must-reference rules in CI.

  • 6. Verify:

    dart tool/check_example_topology.dart
    dart tool/check_docs_consistency.dart
    tool/agent_verify.sh
    

Automation

tool/check_example_topology.dart scans synth JSON for Terraform types listed under must_be_referenced in tool/example_topology_allowlist.yaml. If the resource address appears only once, the quickstart is unwired.

Read the full file on GitHub · 51 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. 6d ago Changed · -2 lines 49dd519b4b4e
  2. 12d ago First seen · 53 lines · 41 tokens per session scan A 11ed22ec7745

Subscribe to this mod's changes

terradart-tighten-example-topology is a skill published in the GitHub repository nozomi-koborinai/terradart (46 stars, last pushed 3d ago), licensed Apache-2.0. It adds 41 tokens to every session and 696 once invoked, about $0.0002 per session on Opus 5. 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-08-30.

Related

Other skills, from other repositories

gcp-expert

Expert-level Google Cloud Platform, services, and cloud architecture. Use when the user mentions Google Cloud, Cloud Functions, BigQuery, or Firestore.

personamanagmentlayer/pcl · 35 tokens

gcloud-cli

Manage Google Cloud projects, IAM, GKE, Cloud Run, and storage with gcloud while checking the active project and deployment target.

alivirgo/Major-AI-Skills · 31 tokens

oma-tf-infra

Infrastructure-as-code specialist for multi-cloud provisioning using Terraform across any provider (AWS, GCP, Azure, Oracle Cloud). Use for terraform plan/apply, state management, compute, databases, storage, networking, IAM, OIDC, cost optimization, policy-as-code, ISO/IEC 42001 AI controls, ISO 22301 continuity, and…

first-fluke/fullstack-starter · 87 tokens

databricks-platform-provisioning

Provision and test Databricks workspaces. Use when the user asks to create a workspace, set up a new environment, provision infrastructure, bootstrap Databricks, test a workspace, verify a deployment, or run validation checks against a Databricks workspace. Covers Azure, AWS, and GCP.

databricks-solutions/ai-platform-kit · 69 tokens

databricks-deployment-verification

MANDATORY post-deployment verification. After any workspace + Unity Catalog deployment, you MUST run all THREE compute paths against a UC table — classic cluster, serverless SQL warehouse, serverless notebook job. Skipping any of the three is incomplete work. Use whenever a workspace + UC has been freshly deployed or…

databricks-solutions/ai-platform-kit · 71 tokens

databricks-unity-catalog-setup

Set up Unity Catalog on Databricks workspaces. Use when the user asks to configure Unity Catalog, create a metastore, set up catalogs, schemas, external locations, storage credentials, or configure data governance. Covers Azure, AWS, and GCP.

databricks-solutions/ai-platform-kit · 62 tokens