Moltworker is a powerful tool designed to help automate and streamline various tasks in your development workflow.
- Overview
- Quick Start
- Agentic Architecture
- Model Routing
- Project Layout
- Development
- Related Repositories
Moltworker is a powerful tool designed to help automate and streamline various tasks in your development workflow.
| Stack | node |
| Frameworks | docker, hono, react |
| Tests | yes |
| Commits | 2 |
| Last activity | 2026-08-10 |
| Visibility | public |
npm installnpm run dev
npm startThis repository participates in the sahiixx agentic harness — a shared contract for how agents plan, act, verify, and recover across all repos in this account.
Signal strength: agentic density score 241 (references to agent,
tool-call, LLM, RAG and orchestration primitives across the source tree).
| Pattern | Role here |
|---|---|
| Prompt Chaining | Deterministic multi-step pipelines where subtasks are known upfront |
| Routing | Classify input, dispatch to the specialist path (cheap model for easy work) |
| Parallelization | Independent subtasks fan out; results aggregated programmatically |
| Orchestrator–Workers | Central planner decomposes dynamically when subtasks can't be predicted |
| Evaluator–Optimizer | Generator/judge split with explicit rubric; bounded retry |
| ReAct | Interleaved reason → act → observe for adaptive tool use |
| Reflection | Self-critique before emitting a final answer |
Escalation rule: start with the simplest pattern that solves the problem. Add Reflection only when verification fails, Planning only when dependencies emerge, Multi-Agent only when work exceeds a single role or context window.
- Bounded execution — every loop has a max-iteration and wall-clock ceiling.
- Tool sandboxing — filesystem/network side effects are isolated and reversible.
- Guardrail layering — validate at input, mid-loop, and output.
- Context engineering — select, compress, isolate; never let raw history grow unbounded.
- Self-verification — check intermediate output against constraints before continuing.
Agent work in this repo routes through Azure AI Foundry. See AGENTS.md
for the full contract.
| Purpose | Deployment | Endpoint |
|---|---|---|
| Default / general | gpt-5.6-sol |
/openai/v1/chat/completions |
| Deep reasoning | claude-opus-5 |
/openai/v1/responses only |
| Embeddings | text-embedding-3-small |
/openai/v1/embeddings |
export AZURE_FOUNDRY_API_KEY=... # never commit this
export AZURE_FOUNDRY_BASE_URL=https://<resource>.openai.azure.com/openai/v1Gotcha: Claude deployments on Azure return
404 api_not_supportedon/chat/completions. They answer only via the Responses API.
AGENTS.md
DEPLOYMENT.md
Dockerfile
LICENSE
README.md
assets/
coverage/
index.html
moltbot.json.template
package-lock.json
package.json
public/
skills/
src/
# lint / format before committing
npm run lint
# run the CI check locally
gh workflow run hermes-azure-check.ymlSecrets live in environment variables and CI secrets — never in tracked files.
Part of a 84-repository workspace sharing one agentic contract:
- agentic-harness — patterns, contracts, and reference implementations
AGENTS.mdin every repo pins identical model routing
README maintained by the agentic harness · last regenerated 2026-08-10