llm-cli-gateway: Skill for Claude Code

.agents/skills/personal-agent-config-kit/SKILL.md

personal-agent-config-kit is a skill for Claude Code, Codex from verivus-oss/llm-cli-gateway. It costs 46 tokens per session (2,552 once invoked), scanned A, original, MIT.

A local, Git-synchronized personal configuration layer for one developer’s agent instructions and bounded preferences. It copies a verified baseline between the developer’s workstations and repositories.

In plain words
What is it for?
Use it to initialize and manage a private configuration repository, synchronize settings, inspect their state, or recover an interrupted configuration change.
Why use it?
It avoids manually maintaining the same personal agent setup in several places. It also supports inspecting, publishing, syncing, rolling back, and recovering that configuration.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents); mentions Codex.

This is verivus-oss/llm-cli-gateway's own configuration. It tells Claude Code and Codex how to work on llm-cli-gateway 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 llm-cli-gateway configures →

Part of the llm-gateway plugin — 24 skills, 4 commands, 2 MCP servers shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to verivus-oss/llm-cli-gateway. 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/verivus-oss/llm-cli-gateway/main/.agents/skills/personal-agent-config-kit/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/verivus-oss/llm-cli-gateway

Made for: Claude Code, Codex.

Or install llm-gateway, the plugin that ships this one along with the rest of its 24 skills, 4 commands, 2 MCP servers.

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 personal-agent-config-kit

README.md
[![agentmods](https://agentmods.dev/badge/skills/verivus-oss/llm-cli-gateway/personal-agent-config-kit/github.svg)](https://agentmods.dev/skills/verivus-oss/llm-cli-gateway/personal-agent-config-kit)
Your own site
<a href="https://agentmods.dev/skills/verivus-oss/llm-cli-gateway/personal-agent-config-kit"><img src="https://agentmods.dev/badge/skills/verivus-oss/llm-cli-gateway/personal-agent-config-kit/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 personal-agent-config-kit

Your own site · 80×15
<a href="https://agentmods.dev/skills/verivus-oss/llm-cli-gateway/personal-agent-config-kit"><img src="https://agentmods.dev/badge/skills/verivus-oss/llm-cli-gateway/personal-agent-config-kit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,552 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 178
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
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.00046 $0.02552
Opus 5 $0.00023 $0.01276
Sonnet 5 $0.00009 $0.00510
Haiku 4.5 $0.00005 $0.00255

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

Security

Grade A, and why

personal-agent-config-kit 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 10d 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/personal-agent-config-kit/SKILL.md · 222 lines

How it starts

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

Personal Agent Config Kit

Use the Kit for one developer who wants the same personal agent baseline on multiple workstations and repositories. It is a local, Git-synchronized personal configuration layer, not an organization, team, tenancy, or remote policy service.

Read the Kit guide before changing the baseline or recovering an interrupted attempt.

Enable and bootstrap

Configure each workstation's local gateway:

[personal_config]
enabled = true
baseline_path = "~/.agent-config"
max_stale_hours = 168

baseline_path must resolve to a non-home, non-symlinked descendant of the current user's home directory. Relative paths, /, ~, .. traversal, and existing symbolic-link components are rejected before permission hardening.

Use a private Git remote. config_init accepts an HTTPS URL without userinfo, authenticated through the normal Git credential helper, an SSH URL without a password authenticated through the normal SSH agent, or standard SSH shorthand. It rejects local paths, plaintext git://, helper transports, URL credentials, query or fragment components, and dash-leading hosts.

config_init({remote:"[email protected]:you/agent-config.git"})

For a new baseline, initialize it, use ordinary Git tooling to add a remote and first commit, then publish. Do not put secrets, tokens, .env files, or machine binding data in the baseline.

Synchronization workflow

  1. Edit and commit the personal baseline with normal Git tooling.
  2. Call config_publish() from the local gateway. It requires a clean named branch and never force-pushes.
  3. On every workstation, call config_sync(). It fetches, fast-forwards only, verifies the committed tree, creates an immutable local release, then changes the active pointer atomically.
  4. Call config_status() to inspect freshness, the active release ID, and the last sync error without exposing baseline paths or binding values.
  5. Before consequential work, call explain_effective_config with the intended absolute workingDir or registered workspace. This is read-only scope inspection: it reports release, scope, provenance, and effective preferences, never instruction text or local paths.

Read the full file on GitHub · 222 lines

Files

What ships with it

1 file 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. 10d ago First seen · 222 lines · 46 tokens per session scan A 54e2541b7fae

Subscribe to this mod's changes

personal-agent-config-kit is a skill published in the GitHub repository verivus-oss/llm-cli-gateway (15 stars, last pushed yesterday), licensed MIT. It adds 46 tokens to every session and 2,552 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.