PowerContext integration for Hermes Agent

September 3, 2026 ยท View on GitHub

This directory contains a standard Hermes MemoryProvider backed by a running PowerContext server. It keeps Hermes responsible for memory lifecycle and Agent orchestration while PowerContext provides external storage, retrieval, context preparation, and memory lifecycle operations.

The integration requires Hermes Agent v0.20.4 or newer.

Install with the PowerContext CLI

With Hermes installed and available on PATH, install or refresh the provider from the matching PowerContext master revision:

powercontext setup hermes --source oceanbase/powercontext --ref master

The command copies the exclusive memory provider to $HERMES_HOME/plugins/powercontext and enables its standalone /pc command companion at $HERMES_HOME/plugins/powercontext-command. Verify the installation with:

powercontext doctor hermes

Then run hermes memory setup and select PowerContext to configure the provider. Hermes v0.20.4 or newer is required.

Manual directory installation (alternative)

Manual directory installation

powercontext setup hermes performs this copy automatically for a user-level installation. Use the manual method only for a project-local provider or when the PowerContext CLI is not available.

Copy both Hermes plugins into the user plugin directory:

cp -R integrations/hermes/plugins/powercontext \
  "$HERMES_HOME/plugins/powercontext"
cp -R integrations/hermes/plugins/powercontext-command \
  "$HERMES_HOME/plugins/powercontext-command"

For project-local installation, copy both directories to .hermes/plugins/ and enable project plugins with HERMES_ENABLE_PROJECT_PLUGINS=1. Then enable the standalone companion:

hermes plugins enable powercontext-command --no-allow-tool-override

Start PowerContext separately:

powercontext server run

Configuration

The provider uses http://127.0.0.1:8000 by default. Run the generic Hermes memory setup wizard and select PowerContext to configure and activate it interactively; the wizard writes non-sensitive values to $HERMES_HOME/powercontext/config.json, stores the authorization header in Hermes' .env file, and sets memory.provider:

hermes memory setup

On Hermes v0.20.4, use the generic command above instead of hermes memory setup powercontext; the provider-specific shortcut does not open the configuration wizard.

Configuration can also be stored manually in $HERMES_HOME/powercontext/config.json:

{
  "base_url": "http://127.0.0.1:8000",
  "max_bytes": 8000,
  "timeout": 5,
  "capture_turns": true,
  "flush_on_session_end": true,
  "capture_pre_compress": false,
  "evaluation_trace": false
}

Environment variables override file values:

VariablePurpose
POWERCONTEXT_HERMES_CONFIGPath to a JSON config file (defaults to $HERMES_HOME/powercontext/config.json).
POWERCONTEXT_HERMES_BASE_URLPowerContext server URL
POWERCONTEXT_HERMES_AUTHORIZATIONComplete authorization header, e.g. Bearer <token>
POWERCONTEXT_HERMES_TOKENToken shorthand; used when AUTHORIZATION is absent
POWERCONTEXT_HERMES_SCOPE_IDExplicit server-owned Scope ID
POWERCONTEXT_HERMES_MAX_BYTESMaximum prepared context size, 512โ€“32768
POWERCONTEXT_HERMES_TIMEOUTHTTP request timeout in seconds
POWERCONTEXT_HERMES_CAPTURE_TURNSCapture completed turns as PowerContext Sources
POWERCONTEXT_HERMES_FLUSH_ON_SESSION_ENDRun memory extraction at session end
POWERCONTEXT_HERMES_CAPTURE_PRE_COMPRESSCapture filtered new user/assistant turns before compression; disabled by default
POWERCONTEXT_HERMES_EVALUATION_TRACERecord recalled context in per-session local JSONL files; disabled by default
POWERCONTEXT_HERMES_EVALUATION_TRACE_PATHOverride the evaluation trace directory

Hermes asks the Server to resolve an explicit Scope, durable session and workspace bindings, or the Server default, in that order. Workspace paths are hashed only as external binding keys. Hermes does not generate Scope IDs from profiles, users, repositories, or directories.

Runtime behavior

  • prefetch() calls /v1/context/prepare and injects bounded context as untrusted historical evidence.
  • queue_prefetch() performs the same preparation in the background and caches the exact query for the next turn.
  • sync_turn() captures the completed turn through /v1/sources/content in a non-blocking single-worker queue.
  • on_session_end() waits for queued writes and calls /v1/memory/flush.
  • on_pre_compress() optionally persists only filtered new user/assistant turns and flushes them before Hermes discards old messages. It is disabled by default and uses stable source IDs for overlapping compression windows.
  • on_memory_write() mirrors built-in Hermes memory additions as explicit entries and retires the mapped PowerContext entry for replacements/removals.
  • Agent tools expose the complete PowerContext operation groups: Memory search/list/read/write/change tracking, Work Contract and Handoff flows, Experience/Skill proposal and generation, External Skills discovery/import, Artifact Candidate review, context/source operations, and statistics.
  • Mutating operations are described as explicit user-authorized actions. Artifact approval and rejection should only be used after the candidate has been reviewed.
  • /pc scope bind SCOPE_ID stores a durable workspace binding in PowerContext. /pc scope clear removes it and resolves the current Scope again.
  • When evaluation tracing is enabled, each session gets its own JSONL file under powercontext/evaluation-trace/sessions/. Events include the session ID, parent session ID, scope, turn number, and a unique event ID.
  • Session-end and pre-compression flushes first check the server's memory_extraction capability. If extraction is disabled, captured Sources remain available and the flush is skipped without interrupting Hermes.

All backend failures fail open: they are logged without request content and do not interrupt the Hermes conversation.

Automatic Source-to-Memory extraction requires a PowerContext generation model. Configure POWERCONTEXT_SERVER_INFERENCE_GENERATION_MODEL together with the provider credentials, then restart the server. Verify the result with:

powercontext capabilities

The output must report Memory extraction: enabled before hermes powercontext flush or automatic session-end extraction can create Memory entries.

Session slash command

The standalone companion registers /pc and /powercontext during normal Hermes plugin discovery, before the first Agent is created. Both aliases are forwarded to the PowerContext Memory Provider for the current interactive Hermes Agent once it is active. Type /pc or /powercontext and press Tab/Down to see the available first-level commands:

Hermes v0.20.4 does not pass gateway session, user, workspace, or scope context to plugin slash-command handlers. The companion therefore fails closed for gateway invocations instead of routing a command to another session's PowerContext scope. Use the provider's Hermes tools for gateway sessions until Hermes exposes that invocation context.

/pc trace status
/pc trace enable
/pc trace disable
/pc trace sessions
/pc trace show [--session SESSION_ID]
/pc trace clear [--session SESSION_ID]
/pc status
/pc search QUERY
/pc list [--inactive]
/pc changes [SINCE_REVISION]
/pc stats [today|7d|30d]
/pc remember KIND TEXT [REASON]
/pc revise CITATION_JSON KIND TEXT [REASON]
/pc retire CITATION_JSON [REASON]
/pc flush
/pc handoff {contract|current|acknowledge|outcome|activate|prepare|finalize|commit|continue} PAYLOAD_JSON
/pc experience {propose|generate|get} PAYLOAD_JSON
/pc skill {propose|generate|get} PAYLOAD_JSON
/pc external-skills {scan|list|resolve|import} [PAYLOAD_JSON]
/pc review {list|get|approve|reject|revise} [PAYLOAD_JSON]
/pc scope {status|bind SCOPE_ID|clear}
/pc call OPERATION [PAYLOAD_JSON]

Read, revise, or retire a memory entry

/pc get and /pc retire do not accept a search keyword or a bare entry_id. They require the complete citation object returned by /pc search, including the current Memory revision and the entry version. Copy only the hits[].citation value from the search response, not the whole hit object.

For example, first write a memory entry and then search for it:

/pc remember preference "Prefers uv for Python project management"
/pc search uv

The relevant part of the /pc search uv response includes both the returned text and the citation needed by the exact-entry commands. The identifiers and revision below are illustrative; always copy them from the current response:

{
  "memory": {
    "family": "memory",
    "artifact_id": "memory",
    "revision": 2
  },
  "mode": "fts",
  "hits": [
    {
      "citation": {
        "memory_ref": {
          "family": "memory",
          "artifact_id": "memory",
          "revision": 2
        },
        "entry_id": "mem_ent_8f9653d66a664398aa18bc5c88e0283d",
        "entry_version_id": "mem_ver_b12a8e6434254cae8a747792905006ed"
      },
      "text": "Prefers uv for Python project management (venv, dependency resolution, lockfile) over pip/Poetry/pip-tools."
    }
  ]
}

Copy the hits[0].citation object from the actual response and use it as follows:

/pc get {"memory_ref":{"family":"memory","artifact_id":"memory","revision":2},"entry_id":"mem_ent_8f9653d66a664398aa18bc5c88e0283d","entry_version_id":"mem_ver_b12a8e6434254cae8a747792905006ed"}
/pc retire {"memory_ref":{"family":"memory","artifact_id":"memory","revision":2},"entry_id":"mem_ent_8f9653d66a664398aa18bc5c88e0283d","entry_version_id":"mem_ver_b12a8e6434254cae8a747792905006ed"} "no longer needed"

To revise instead of retiring, use the same citation with:

/pc revise {"memory_ref":{"family":"memory","artifact_id":"memory","revision":2},"entry_id":"mem_ent_8f9653d66a664398aa18bc5c88e0283d","entry_version_id":"mem_ver_b12a8e6434254cae8a747792905006ed"} preference "Prefers uv for Python project management" "updated preference"

retire is a logical retirement; it removes the entry from active memory but keeps its history. Because every memory mutation advances the artifact revision, do not reuse this citation after revise or another write. Search again and use the newest citation before the next get, revise, or retire.

Trace enable/disable changes the current Hermes process only. Configure evaluation_trace or POWERCONTEXT_HERMES_EVALUATION_TRACE when tracing should be enabled for future sessions. Trace files may contain prompts and recalled context, so keep them local and review them as sensitive data.

CLI commands

After restarting Hermes so it discovers the new command tree:

hermes powercontext --help
hermes powercontext status
hermes powercontext search "Python project management"
hermes powercontext remember preference "The user prefers uv"
hermes powercontext flush
hermes powercontext call get_stats '{"period":"7d"}'

Use --scope-id when inspecting a scope explicitly:

hermes powercontext search "deployment decision" --scope-id hermes-smoke-test

Package provider option

Hermes also supports hermes_agent.memory_providers entry points. If this integration is distributed as a package, point the entry point at the provider package's register function:

[project.entry-points."hermes_agent.memory_providers"]
powercontext = "powercontext_hermes:register"

The directory layout is the reference implementation for direct installation.