openhands_insights_prioritization

openhands_insights_prioritization is an agent for Claude Code from kivo360/OmoiOS. It costs 0 tokens per session (7,852 once invoked), scanned A, original, Apache-2.0.

A research summary about the OpenHands software development kit, a toolkit for building AI coding agents. It explains how conversations and their events are represented and managed.

In plain words
What is it for?
Answering implementation questions about OpenHands conversations, messages, actions, observations, errors, pauses, and conversation state.
Why use it?
It clarifies the toolkit’s conversation-based design before implementation decisions are made, reducing misunderstandings about event scope and agent behaviour.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/kivo360/omoios/openhands_insights_prioritization
Clone the repo
git clone --depth 1 https://github.com/kivo360/OmoiOS

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for openhands_insights_prioritization

README.md
[![agentmods](https://agentmods.dev/badge/agents/kivo360/omoios/openhands_insights_prioritization.svg)](https://agentmods.dev/agents/kivo360/omoios/openhands_insights_prioritization)
Your own site
<a href="https://agentmods.dev/agents/kivo360/omoios/openhands_insights_prioritization"><img src="https://agentmods.dev/badge/agents/kivo360/omoios/openhands_insights_prioritization.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 7,852 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.07852
Opus 5 $0.00000 $0.03926
Sonnet 5 $0.00000 $0.01570
Haiku 4.5 $0.00000 $0.00785

Measured 6d ago against content hash 46ed13dff560, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

openhands_insights_prioritization scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

docs/.archive-20260422-0900/design/agents/openhands_insights_prioritization.md · 600 lines

How it starts

The opening of the file, as written. The whole thing — 600 lines — stays where its author put it; the contents beside it link to each section on GitHub.

OpenHands SDK Insights & Question Prioritization

Document Purpose: This document synthesizes key insights from OpenHands SDK documentation research and proposes a revised prioritization strategy for implementation questions, optimized for spec-driven development (tests-first approach).

Created: 2025-11-16
Related Documents:


Key Insights from Documentation Research

1. OpenHands is Conversation-Scoped, Not System-Scoped

Finding: OpenHands events (MessageEvent, ActionEvent, ObservationEvent) are tied to individual Conversation instances. The EventService manages events per conversation, not system-wide.

Technical Details:

  • All events inherit from the base Event class (immutable with frozen=True in model_config)
  • Event types include: SystemPromptEvent, MessageEvent, ActionEvent, ObservationEvent, AgentErrorEvent, Condensation, PauseEvent, ConversationStateUpdateEvent
  • Events have common fields: id (unique), timestamp, source (agent/user/environment)
  • LLMConvertibleEvent subset can be converted to LLM Message objects for context construction
  • EventService uses PubSub[Event] class with subscribe(subscriber), unsubscribe(subscriber_id), and async __call__(event) methods
  • Each subscriber receives events independently; failures in one subscriber don't affect others
  • ConversationState._state.set_on_state_change(callback) enables state change hooks

Implication: Our orchestration layer must build a separate system-wide event bus (Redis Pub/Sub, RabbitMQ, Kafka) for cross-agent communication, monitoring alerts, and workflow coordination. OpenHands provides the raw event data via callbacks/APIs, but we own the routing and persistence.

Affects Questions: Q1.4, Q3.1, Q3.2, Q3.6

SDK Reference:

  • Source: openhands-sdk/openhands/sdk/event/
  • Event Service: openhands-agent-server/openhands/agent_server/event_service.py
  • DeepWiki – Event System

Read the full file on GitHub · 600 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 600 lines · 0 tokens per session scan A 46ed13dff560

Subscribe to this mod's changes

openhands_insights_prioritization is an agent published in the GitHub repository kivo360/OmoiOS (76 stars, last pushed 2mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 7,852 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

assistant

You are a general-purpose assistant — the example agent that ships with Archie so a fresh install does something useful out of the box. You handle small, self-contained requests: summarizing a block of text, drafting a short reply, or explaining something plainly.

sweatco/archie-hq · 0 tokens

gatekeeper

You exist to exercise the MCP tool approval gate in end-to-end checks. When asked to call your tools, call them exactly as instructed and report exactly what they returned — no improvisation, no retries beyond what the instructions say.

sweatco/archie-hq · 0 tokens

pm

This is the example PM overlay. The text here is appended to the PM agent's system prompt, so use it to give the PM the standing context it needs for your organization — what the company/team does, who the regular requesters are, house style for replies, and any defaults that should hold across every conversation.

sweatco/archie-hq · 0 tokens

ralph-loop-runner

Use this agent when you need to execute a Ralph orchestration loop end-to-end and verify its completion. This includes testing prompts against the Ralph system, validating that orchestration completes successfully, and capturing both results and any runtime issues. Examples:\n\n \nContext: User wants to test if a…

mikeyobrien/ralph-orchestrator · 286 tokens

external-system-integration-expert

你负责把当前项目与外部 API、API 网关及业务系统安全地连接起来:识别集成边界、整理接口与环境差异、验证请求和响应、定位认证或数据契约问题。.

agents-universe/agents-universe · 33 tokens

annotator

Phase 2.5 전용 @AX 태그 스캔 및 적용 에이전트. executor가 수정한 파일 목록을 받아 @AX 태그를 자동으로 분석하고 적용한다.

Insajin/autopus-adk · 44 tokens