hermes-studio
Ekko Studio is a local-first AI workspace for multi-agent chat, coding, and visual workflows, available on desktop and the web.
Source#
- Repository: EKKOLearnAI/hermes-studio
- Last source update: 2026-09-13
- Last verified: 2026-09-13
Tags#
Integration notes#
Repository is workflow-oriented; map each workflow step to explicit worker contracts for predictability.
worker.md example#
Starter worker.md contract mapped from this registry entry. Copy this file and adapt schemas, constraints, and statuses for your task.
---
id: hermes-studio-repo-derived-worker
name: hermes-studio Repo-Derived Worker
version: 1.0.0
source_registry_url: https://worker.md/registry/hermes-studio/
source_repository: https://github.com/EKKOLearnAI/hermes-studio
repository_default_branch: main
repository_language: TypeScript
repository_license: NOASSERTION
repository_updated_at: 2026-09-13
worker_mode: agent-orchestration-worker
derivation_method: github_repository_metadata_plus_raw_readme
derivation_confidence: 0.95
derived_on: 2026-09-13
tags:
- agent
- ai-agent
- chat-ui
- coding-agents
- dashboard
- ekko-studio
---
# hermes-studio Repo-Derived Worker
## Repo-derived summary
- Registry summary: Ekko Studio is a local-first AI workspace for multi-agent chat, coding, and visual workflows, available on desktop and the web.
- Repository description: Ekko Studio is a local-first AI workspace for multi-agent chat, coding, and visual workflows, available on desktop and the web.
- Stars (snapshot): 11,044
- Primary language: TypeScript
- Worker mode classification: agent-orchestration-worker
## Extracted from
- https://github.com/EKKOLearnAI/hermes-studio
- https://github.com/EKKOLearnAI/hermes-studio/blob/main/README.md
- https://github.com/EKKOLearnAI/hermes-studio/releases/latest
## Evidence notes (from repository text)
- README summary paragraph: A local-first AI workspace for multi-agent chat, coding, and visual workflows. Available as a desktop app and self-hosted web console, with support for Hermes Agent , Ekko Agent, Claude Code, Codex, Pi, Grok, OpenCode, and DeepSeek Harness (DSH). Bring conversations, group collaboration, voice, files, and devices together in one place.
- A local-first AI workspace for multi-agent chat, coding, and visual workflows.
- Hermes Agent , Ekko Agent, Claude Code, Codex, Pi, Grok, OpenCode, and DeepSeek Harness (DSH).
- Captured in Ekko Studio **v0.7.18** on 2026-09-10. Chat and workflow screens use demo data.
- | Connect agent steps and add a human approval gate. | Manage agent installations, settings, and updates in one place. |
- 
## Installation hints found in README
- `pip install hermes-agent`.`
- `npm install -g hermes-web-ui && hermes-web-ui start</code>`
- `npm install -g hermes-web-ui`
- `npm install -g hermes-web-ui@latest` and restart. Cache cleanup is best-effort; if it fails, the updater continues with the install.`
## worker.md contract (derived starter)
Purpose: Execute one orchestrated agent task as a bounded worker step.
### Input schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"run_id",
"task",
"context"
],
"properties": {
"run_id": {
"type": "string"
},
"task": {
"type": "string"
},
"context": {
"type": "object"
}
}
}
```
### Output schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"run_id",
"status",
"result"
],
"properties": {
"run_id": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"ok",
"retryable_error",
"invalid_request",
"invalid_output"
]
},
"result": {
"type": "object"
}
}
}
```
### Constraints
- timeout_seconds: 30
- max_attempts: 2
- idempotency_key: run_id
- status_enum: [ok, retryable_error, invalid_request, invalid_output]
- notes: adapt to concrete APIs/classes documented in this repository before production use
## How this should be used
1. Treat this file as a repo-derived starter profile, not a claim of an official repository API contract.
2. Replace schemas with exact interfaces from code/docs you adopt.
3. Keep execution bounded and auditable using worker protocol constraints.
How to use#
- Save this as a worker spec file (for example:
hermes-studio-my-task.worker.md). - Replace the input/output schemas and purpose with your real bounded task.
- Enforce schema validation + timeout + retry policy in your runtime before production use.
Citation#
Reference URL: https://worker.md/registry/hermes-studio/
Source URL: https://github.com/EKKOLearnAI/hermes-studio