hmem-subagent

Dispatch one-task sub-agents that emit strict [RESULT] payloads.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/YuryZZZ/opencode-global --skill hmem-subagent
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hmem-subagent
Source: https://github.com/YuryZZZ/opencode-global/tree/main/skills/hmem-subagent
Command: npx skills add https://github.com/YuryZZZ/opencode-global --skill hmem-subagent

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Sub-agents dispatched by hmem-dispatch execute a single task and return ONLY the result, with no context or explanations.

Core Features & Use Cases

  • Single-task execution: isolates work to a defined task without conversation history.
  • Deterministic output: enforces the [RESULT] payload format to simplify downstream processing.
  • Use Case: integrate a dedicated sub-agent into a larger pipeline to handle a discrete computation or transformation and return a concise result.

Quick Start

Dispatch a one-task sub-agent to complete the assigned task and return only the result in the [RESULT] format.

Frequently Asked Questions about hmem-subagent

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

FAQPage Schema
How do I dispatch a stateless subagent for isolated task execution in an automated pipeline?

To dispatch a stateless subagent for isolated task execution, you issue a single instruction that the subagent processes without conversation history, returning only the computation outcome in a strict [RESULT] payload format for deterministic downstream processing.

What is single-task subagent isolation and when do I need it for deterministic outputs?

Single-task subagent isolation confines an agent to one defined task with no memory of prior context. You need it for deterministic outputs when automated pipelines require strict result formatting and stateless operation across discrete transformations.

How do I enforce a strict result format from a subagent in a task dispatch pipeline?

To enforce a strict result format from a subagent in a task dispatch pipeline, the subagent is constrained to emit a dedicated [RESULT] payload containing only the outcome, simplifying downstream processing by eliminating extraneous context or explanations.

Can I use isolated subagents for discrete computations within a larger automated workflow?

Yes, you can use isolated subagents for discrete computations within a larger automated workflow. They execute a single assigned transformation and return a concise result, ensuring each pipeline stage remains stateless and produces deterministic outputs.

Why does my subagent return only results with no context or explanations?

Your subagent returns only results with no context because it operates under single-task execution constraints. This design enforces stateless operation across tasks, ensuring the [RESULT] payload contains exclusively the outcome for deterministic pipeline processing.