JumpStart-AutoNav: Skill for Claude Code

.github/skills/mtls-configuration/SKILL.md

mtls-configuration is a skill for Claude Code, Codex from CGSOG-JumpStarts/JumpStart-AutoNav. It costs 38 tokens per session (2,193 once invoked), scanned A, a copy of mtls-configuration, MIT.

A guide for mutual TLS, where both services prove their identities using certificates before communicating over an encrypted connection.

In plain words
What is it for?
Planning certificate hierarchies, certificate rotation, service-mesh communication, multi-cluster connections, and compliance-related TLS work.
Why use it?
It helps secure service-to-service traffic in zero-trust systems and address certificate or TLS handshake problems.

Skill for Claude CodeCodex

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

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

Reuse

Borrowing it

Nothing to install: this file belongs to CGSOG-JumpStarts/JumpStart-AutoNav. 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/CGSOG-JumpStarts/JumpStart-AutoNav/main/.github/skills/mtls-configuration/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/CGSOG-JumpStarts/JumpStart-AutoNav

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 mtls-configuration

README.md
[![agentmods](https://agentmods.dev/badge/skills/cgsog-jumpstarts/jumpstart-autonav/mtls-configuration/github.svg)](https://agentmods.dev/skills/cgsog-jumpstarts/jumpstart-autonav/mtls-configuration)
Your own site
<a href="https://agentmods.dev/skills/cgsog-jumpstarts/jumpstart-autonav/mtls-configuration"><img src="https://agentmods.dev/badge/skills/cgsog-jumpstarts/jumpstart-autonav/mtls-configuration/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 mtls-configuration

Your own site · 80×15
<a href="https://agentmods.dev/skills/cgsog-jumpstarts/jumpstart-autonav/mtls-configuration"><img src="https://agentmods.dev/badge/skills/cgsog-jumpstarts/jumpstart-autonav/mtls-configuration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,193 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.00038 $0.02193
Opus 5 $0.00019 $0.01097
Sonnet 5 $0.00008 $0.00439
Haiku 4.5 $0.00004 $0.00219

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

Security

Grade A, and why

mtls-configuration 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 11d 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 mtls-configuration — 21 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.

.github/skills/mtls-configuration/SKILL.md · 350 lines

How it starts

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

mTLS Configuration

Comprehensive guide to implementing mutual TLS for zero-trust service mesh communication.

When to Use This Skill

  • Implementing zero-trust networking
  • Securing service-to-service communication
  • Certificate rotation and management
  • Debugging TLS handshake issues
  • Compliance requirements (PCI-DSS, HIPAA)
  • Multi-cluster secure communication

Core Concepts

1. mTLS Flow

┌─────────┐                              ┌─────────┐
│ Service │                              │ Service │
│    A    │                              │    B    │
└────┬────┘                              └────┬────┘
     │                                        │
┌────┴────┐      TLS Handshake          ┌────┴────┐
│  Proxy  │◄───────────────────────────►│  Proxy  │
│(Sidecar)│  1. ClientHello             │(Sidecar)│
│         │  2. ServerHello + Cert      │         │
│         │  3. Client Cert             │         │
│         │  4. Verify Both Certs       │         │
│         │  5. Encrypted Channel       │         │
└─────────┘                              └─────────┘

2. Certificate Hierarchy

Root CA (Self-signed, long-lived)
    │
    ├── Intermediate CA (Cluster-level)
    │       │
    │       ├── Workload Cert (Service A)
    │       └── Workload Cert (Service B)
    │
    └── Intermediate CA (Multi-cluster)
            │
            └── Cross-cluster certs

Templates

Template 1: Istio mTLS (Strict Mode)

# Enable strict mTLS mesh-wide
apiVersion: security.istio.io/v1beta1
kind: PeerAuthentication
metadata:
  name: default
  namespace: istio-system
spec:
  mtls:
    mode: STRICT
---
# Namespace-level override (permissive for migration)
apiVersion: security.istio.io/v1beta1
kind: PeerAuthentication
metadata:
  name: default
  namespace: legacy-namespace
spec:
  mtls:
    mode: PERMISSIVE
---
# Workload-specific policy
apiVersion: security.istio.io/v1beta1
kind: PeerAuthentication
metadata:
  name: payment-service
  namespace: production
spec:
  selector:
    matchLabels:
      app: payment-service
  mtls:
    mode: STRICT
  portLevelMtls:
    8080:
      mode: STRICT
    9090:
      mode: DISABLE # Metrics port, no mTLS

Read the full file on GitHub · 350 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. 11d ago First seen · 350 lines · 38 tokens per session scan A 62d2e736b734

Subscribe to this mod's changes

mtls-configuration is a skill published in the GitHub repository CGSOG-JumpStarts/JumpStart-AutoNav (10 stars, last pushed 4mo ago), licensed MIT. It adds 38 tokens to every session and 2,193 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 mtls-configuration, differing in 21 lines, and is treated as a copy.

Related

Other skills, from other repositories

github-review-pr

Review GitHub pull requests with detailed, multi-perspective code analysis using parallel subagents. Use this skill whenever the user wants to review a PR, asks for code review on a pull request, mentions "review PR", "check this PR", "look at pull request", or references a PR number or GitHub PR URL. Do NOT use for…

feiskyer/claude-code-settings · 90 tokens

grill-me

A guided, adversarial interview for challenging a plan or design one question at a time. It also records agreed terms and architectural decisions as the discussion develops.

feiskyer/claude-code-settings · 58 tokens

gpt-image-skill

A skill for generating or editing images through OpenAI's GPT Image API, a programming interface for requesting image operations. It uses a bundled Python script and supports configuration such as model, size, quality, and output file.

feiskyer/claude-code-settings · 115 tokens

nanobanana-skill

An image-generation and image-editing skill that uses Google Gemini through the Nanobanana tool. It covers prompts, image sizes, output files, models, resolutions, and required setup.

feiskyer/claude-code-settings · 109 tokens

youtube-transcribe-skill

A tool for getting subtitles or transcripts from YouTube videos and saving them as local files.

feiskyer/claude-code-settings · 50 tokens

github-fix-issue

Fix GitHub issues end-to-end — analysis, branch creation, implementation, testing, and PR submission. Use whenever the user mentions fixing a GitHub issue, says "fix issue.

feiskyer/claude-code-settings · 42 tokens