ada-hermes-operations

Enforces Hermes Agent operating discipline for evidence standards, context handoff, and delegation.

Updated Jul 23, 2026
One-click install
npx skills add https://github.com/wubing7755/Ada --skill ada-hermes-operations-wubing7755
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ada-hermes-operations
Source: https://github.com/wubing7755/Ada/tree/main/skills/software-development/ada-hermes-operations
Command: npx skills add https://github.com/wubing7755/Ada --skill ada-hermes-operations-wubing7755

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Complex multi-session agent work often fails due to lost context, unverified sub-agent claims, self-review blind spots, and unsafe operations. This Skill provides the operational discipline—slash commands, evidence standards, approval boundaries, and delegation rules—needed to keep long-running Hermes Agent tasks correct and verifiable. ## Core Features & Use Cases - Slash Command Reference: Defines when to use /new, /compress, /snapshot, /rollback, /goal, /background, /steer, and /queue for context and session management. - Evidence Ladder & Verification: Ranks evidence strength from passing tests down to unverified user reports, and requires independent verification of all sub-agent claims. - Sub-Agent Isolation Rules: Enforces reviewer-not-implementer and fixer-not-reviewer separation, with a maximum of two automated fix rounds before escalating to the user. - Use Case: Before starting a large refactoring across multiple sessions, load this Skill to snapshot state, delegate independent reviews via delegate_task, and verify every sub-agent's "tests passed" claim by running the commands yourself. ## Quick Start Load this Skill before starting a complex multi-session task and ask the agent to follow its evidence standards, context reset rules, and delegation boundaries throughout the work.

Frequently Asked Questions about ada-hermes-operations

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage context in long Hermes Agent sessions?

Use /new when switching phases such as analysis to implementation, /compress when sessions exceed roughly 50 rounds, and /snapshot before large edits. Resetting context prevents failed reasoning from polluting retries.

How should sub-agent output be verified in agent workflows?

Treat sub-agent claims like "tests passed" as statements, not facts. Run the build or test commands yourself to confirm, and use delegate_task so reviewers work in a fresh context separate from the implementer.

When should I use delegate_task instead of doing work directly?

Use delegate_task for independent reviews, parallel investigations, and reducing uncertainty. Do not use it for simple mechanical tasks, and never let the implementer review their own work.

Does Hermes Agent handle PowerShell from git-bash on Windows?

Yes, but bash consumes $ variables, so write scripts to a .ps1 file and run them with MSYS_NO_PATHCONV=1 powershell.exe -File. Use forward slashes in paths to avoid MSYS path conversion issues.

What operations require approval before execution?

Destructive actions like recursive deletes and force pushes, broad filesystem writes, credential changes, external installations, and operations outside the workspace all require explicit user approval first.