Skip to content

feat: add Hermes Agent integration#2547

Open
Zhaoxiaoguang001 wants to merge 3 commits into
github:mainfrom
Zhaoxiaoguang001:feat/hermes-integration
Open

feat: add Hermes Agent integration#2547
Zhaoxiaoguang001 wants to merge 3 commits into
github:mainfrom
Zhaoxiaoguang001:feat/hermes-integration

Conversation

@Zhaoxiaoguang001
Copy link
Copy Markdown

Summary

Add Hermes Agent (https://github.com/NousResearch/hermes-agent) as a supported integration.

Hermes Agent is an open-source AI agent framework by Nous Research that uses the same speckit-<name>/SKILL.md skills layout as Claude Code and Codex.

Changes

  • Add HermesIntegration as a SkillsIntegration subclass
  • Register in INTEGRATION_REGISTRY
  • Add 28 integration tests (all passing)
  • Uses .hermes/skills/ directory with AGENTS.md context file

Test Results

tests/integrations/test_integration_hermes.py - 28 passed
Full regression: 1991 passed, 0 failed

Usage

specify init my-project --integration hermes
specify init --here --ai hermes

@Zhaoxiaoguang001 Zhaoxiaoguang001 requested a review from mnriem as a code owner May 13, 2026 22:28
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a new built-in integration for Hermes Agent to Spec Kit’s integrations system, enabling specify init --integration hermes / --ai hermes to scaffold Spec Kit commands as skills under .hermes/skills/ with an AGENTS.md context file.

Changes:

  • Introduces HermesIntegration as a SkillsIntegration subclass with Hermes-specific CLI dispatch logic.
  • Registers the new integration in the built-in INTEGRATION_REGISTRY bootstrap.
  • Adds a new integration test module leveraging the shared SkillsIntegrationTests mixin plus an --ai hermes auto-promote regression test.
Show a summary per file
File Description
src/specify_cli/integrations/hermes/__init__.py Implements the Hermes integration configuration and CLI argument construction.
src/specify_cli/integrations/__init__.py Registers HermesIntegration among built-in integrations.
tests/integrations/test_integration_hermes.py Adds Hermes integration coverage via the shared skills test mixin and an auto-promote test.

Copilot's findings

Tip

Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

  • Files reviewed: 3/3 changed files
  • Comments generated: 2

Comment on lines +58 to +59
Uses ``hermes chat -q`` for one-shot queries, mapping slash-command
invocations to the appropriate skill-based dispatch.
Comment on lines +72 to +74
args.extend(["-s", command])
if remainder:
args.extend(["-q", remainder])
Copy link
Copy Markdown
Collaborator

@mnriem mnriem left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please address Copilot feedback. If not applicable, please explain why

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants