SShortSingh.
Back to feed

Hermes Agent v0.19–0.21 Adds New Commands for Context, Sessions, and Security

0
·2 views

A developer guide published on September 11, 2026, documents new and updated commands introduced in Hermes Agent versions 0.19 through 0.21. Key additions include /context for tracking context window usage, /diff for viewing file changes, and /init for auto-generating project context files. The update also brings hermes secrets for pulling API keys from password managers like Bitwarden and 1Password, replacing plaintext storage. Other notable features include session export with a redaction option, deny rules to block dangerous commands, and background task persistence across system restarts. The author recommends new users start with status-checking commands before moving to more complex operations.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

A Single Markdown File Can Make GitHub Copilot Follow Your Codebase Rules

GitHub Copilot's output improves less from better prompt phrasing and more from a committed instructions file at .github/copilot-instructions.md, which is prepended to every request. Unlike generic advice such as 'write clean code,' effective rules must be durable, specific, and checkable — for example, flagging that datetime.utcnow() returns a naive datetime rather than vaguely saying 'handle timezones correctly.' The article recommends keeping the file short, ideally under ten rules, since a bloated instruction file dilutes the rules that matter and adds overhead to every interaction. Rules should also avoid duplicating what automated tools like linters already enforce, reserving the file for non-obvious, codebase-specific facts the model cannot infer from source code alone. The author extends the pattern to infrastructure-as-code contexts like Terraform, Kubernetes, and GitHub Actions, where subtle mistakes are costlier and harder to catch in review.

0
ProgrammingDEV Community ·

Fixed Is Not Repaired

Two Posts With Holes In Them For two and a half weeks, two posts on this blog referenced diagrams that did not load. Not a rendering quirk — a 404. Each post pointed at its diagram by bare filename, something ending in -diagram.svg, with no domain and no leading slash in front of it. That is a relative path. Ghost renders the markdown card verbatim, so the browser resolved that filename against the post's own URL and asked for a file that has never existed at that address.

0
ProgrammingDEV Community ·

Developer builds SaaS subscription audit engine using Next.js, Prisma and Neon Postgres

A developer created SaaSClerk, an email-scanning engine that detects forgotten SaaS subscriptions, after a manual audit found only 7 active tools while an automated mailbox scan revealed 23. The system uses OAuth read-only scopes for Gmail and Outlook, scanning only emails matching billing patterns such as invoices, receipts, and renewal notices, without persisting email content. Beyond basic subscription tracking, the engine parses renewal emails for price-change signals and flags increases above 5% for user review — a feature the developer credits with catching a quiet GitHub Pro price hike. The stack combines Next.js with TypeScript, Prisma as the ORM, and Neon Postgres for storage, with AES-256-GCM encryption applied to all stored tokens. An opt-out cancellation reminder, automatically scheduled 14 days before a renewal date, rounds out the tool by closing the gap between intent to cancel and actually doing so.

0
ProgrammingDEV Community ·

LingoGeek Translates Full Documents Offline, Preserving Formatting Without Uploads

LingoGeek is an open-source Python desktop app that translates entire documents locally without uploading files to external servers. It supports formats including .docx, PDF, SRT, and VTT subtitles, preserving original formatting such as headings, tables, timings, and cue numbers. The app is built using CTranslate2 for offline AI inference, pywebview for the desktop shell, and a local FastAPI server for the translation pipeline. The developer notes that reconstructing translated text back into document structures — especially Word files with mixed formatting runs — was the core engineering challenge. The app is available on GitHub and its website, though the installer is not yet code-signed and may trigger a SmartScreen warning on first launch.