tentaflake: Skill for Claude Code

.agents/skills/hermes-config-manager/SKILL.md

hermes-config-manager is a skill for Claude Code, Codex from timfewi/tentaflake. It costs 30 tokens per session (2,190 once invoked), scanned D, original, MIT.

A configuration-management workflow for Hermes Agent, covering its settings, profiles, tools, models, terminal backends, and environment values.

In plain words
What is it for?
Use it to set up Hermes agents, switch where commands run, configure model providers and API keys, manage profiles, migrate settings, or debug configuration problems.
Why use it?
It helps you change or troubleshoot agent configuration while accounting for settings that may be supplied declaratively and mounted read-only.

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 timfewi/tentaflake's own configuration. It tells Claude Code and Codex how to work on tentaflake 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 tentaflake configures →

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/user/projects:/workspace/projects.

Reuse

Borrowing it

Nothing to install: this file belongs to timfewi/tentaflake. 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/timfewi/tentaflake/main/.agents/skills/hermes-config-manager/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/timfewi/tentaflake

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 hermes-config-manager

README.md
[![agentmods](https://agentmods.dev/badge/skills/timfewi/tentaflake/hermes-config-manager/github.svg)](https://agentmods.dev/skills/timfewi/tentaflake/hermes-config-manager)
Your own site
<a href="https://agentmods.dev/skills/timfewi/tentaflake/hermes-config-manager"><img src="https://agentmods.dev/badge/skills/timfewi/tentaflake/hermes-config-manager/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 hermes-config-manager

Your own site · 80×15
<a href="https://agentmods.dev/skills/timfewi/tentaflake/hermes-config-manager"><img src="https://agentmods.dev/badge/skills/timfewi/tentaflake/hermes-config-manager.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,190 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 2 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00030 $0.02190
Opus 5 $0.00015 $0.01095
Sonnet 5 $0.00006 $0.00438
Haiku 4.5 $0.00003 $0.00219

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

Security

Grade D, and why

hermes-config-manager scanned grade D with 2 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 12d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

├── .env # API keys and secrets (chmod 600)

Reaches for credential fileshighPrivilege escalation

SSH keys, cloud credentials, git-credentials, .npmrc, /etc/shadow: reading these is how a config file becomes a credential leak.

export TERMINAL_SSH_KEY=~/.ssh/id_ed25519
.agents/skills/hermes-config-manager/SKILL.md · 305 lines

How it starts

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

Hermes Config Manager

Tentaflake context: In this repo, agents are defined declaratively in my-agents.nix via the settings attribute on mkHermesAgent. When settings is set, the resulting config.yaml is mounted read-only inside the container — interactive hermes config set changes won't persist across restarts. Use my-agents.nix.example as your reference for the declarative approach. API keys belong in /run/secrets/hermes-<name>.env. This skill is still useful as an in-container reference for Hermes' native config options and for troubleshooting inside a running agent.

When to Use

  • Set up or modify Hermes agent configuration
  • Switch terminal backends (local/docker/ssh/modal/daytona/singularity)
  • Configure model provider and API keys
  • Manage profiles
  • Migrate config after update
  • Debug config issues
  • Enable/disable toolsets globally

Procedure

1. Directory Structure

~/.hermes/
├── config.yaml     # Settings — model, terminal, TTS, compression
├── .env            # API keys and secrets (chmod 600)
├── auth.json       # OAuth provider credentials
├── SOUL.md         # Agent identity (slot #1 in system prompt)
├── memories/       # MEMORY.md, USER.md
├── skills/         # Agent skills
├── cron/           # Scheduled jobs
├── sessions/       # Gateway sessions
└── logs/           # errors.log, gateway.log

2. Key Commands

hermes config              # View current config
hermes config edit         # Open in $EDITOR
hermes config set KEY VAL  # Set value (API keys → .env, rest → config.yaml)
hermes config check        # Find missing options after update
hermes config migrate      # Interactively add missing options
hermes config show         # Display full config

hermes config set auto-routes: API keys → .env, everything else → config.yaml.

3. Config Precedence

Settings resolved in order (highest first):

  1. CLI args (hermes chat --model X)
  2. ~/.hermes/config.yaml
  3. ~/.hermes/.env (fallback for env vars)
  4. Built-in hardcoded defaults

Read the full file on GitHub · 305 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. 12d ago First seen · 305 lines · 30 tokens per session scan D 57e89b57734d

Subscribe to this mod's changes

hermes-config-manager is a skill published in the GitHub repository timfewi/tentaflake (30 stars, last pushed 5d ago), licensed MIT. It adds 30 tokens to every session and 2,190 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it D with 2 findings (asks for root, reaches for credential files). 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

api-security-testing

Security-test a REST, GraphQL, or gRPC API with Strix — autonomous agents that enumerate endpoints from an OpenAPI/GraphQL schema (or by crawling), then actually exploit the API-specific vulnerability classes in the OWASP API Security Top 10 (2023) — broken object-level authorization (BOLA/IDOR), broken object…

usestrix/strix · 144 tokens

fix-security-vulnerabilities-with-strix

Fix security vulnerabilities found by a Strix pentest (open-source CLI or app.strix.ai cloud) — triage by severity, patch the root cause rather than the symptom, and re-run Strix to prove each fix actually closes the exploit. Handles injection, XSS, SSRF, broken access control, IDOR, and other validated findings. Use…

usestrix/strix · 124 tokens

owasp-top-10-testing

Test an application against the OWASP Top 10 with Strix — autonomous AI agents that attempt real exploits for each category of the current OWASP Top 10:2025 (broken access control including SSRF, security misconfiguration, software supply chain failures, cryptographic failures, injection, insecure design…

usestrix/strix · 151 tokens

find-security-vulnerabilities-in-code

Find security vulnerabilities in a codebase or repository with Strix — a white-box AI security review that reads your source, reasons about the actual data flow and authorization model, then exploits what it finds in a live sandbox so every reported issue has a working proof-of-concept instead of a noisy…

usestrix/strix · 129 tokens

web-app-penetration-testing

Pentest a web app or website end to end — black-box testing of a live URL, staging environment, or local dev server that finds and exploits real vulnerabilities (auth bypass, broken access control, IDOR, injection, XSS, SSRF, business logic) and proves each one with a working proof-of-concept instead of a signature…

usestrix/strix · 129 tokens

application-security-testing

Application security testing (AppSec) across a whole product with Strix — decide which asset needs which test (source code, running web app, API, CI pipeline), run it, and turn the results into a ranked remediation plan. Autonomous agents exploit and prove each issue instead of emitting static-analysis alerts, so the…

usestrix/strix · 125 tokens