AI Worker worker.md

Deuz-SDK

Zero-dependency TypeScript framework for production AI agents: durable execution, long-term memory, hybrid RAG, MCP tool calling, human-in-the-loop approval, planning and CodeAct sandboxes. One str...

Tool registry 1,291 stars TypeScript MIT Worker-compatible

Source#

  • Repository: Deuz-AI/Deuz-SDK
  • Last source update: 2026-09-03
  • Last verified: 2026-09-06

Tags#

agent-frameworkagentic-aiaiai-agentsai-sdkanthropic

Integration notes#

Repository is focused on tool/server interoperability; wrap in bounded worker contracts for production use.

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: deuz-sdk-repo-derived-worker
name: Deuz-SDK Repo-Derived Worker
version: 1.0.0
source_registry_url: https://worker.md/registry/deuz-sdk/
source_repository: https://github.com/Deuz-AI/Deuz-SDK
repository_default_branch: main
repository_language: TypeScript
repository_license: MIT
repository_updated_at: 2026-09-03
worker_mode: tool-gateway-worker
derivation_method: github_repository_metadata_plus_raw_readme
derivation_confidence: 0.95
derived_on: 2026-09-06
tags:
  - agent-framework
  - agentic-ai
  - ai
  - ai-agents
  - ai-sdk
  - anthropic
---

# Deuz-SDK Repo-Derived Worker

## Repo-derived summary
- Registry summary: Zero-dependency TypeScript framework for production AI agents: durable execution, long-term memory, hybrid RAG, MCP tool calling, human-in-the-loop approval, planning and CodeAct sandboxes. One str...
- Repository description: Zero-dependency TypeScript framework for production AI agents: durable execution, long-term memory, hybrid RAG, MCP tool calling, human-in-the-loop approval, planning and CodeAct sandboxes. One streaming API for Claude, GPT, Gemini, Grok, Mistral and DeepSeek — Node, Bun, Deno, serverless and edge.
- Stars (snapshot): 1,291
- Primary language: TypeScript
- Worker mode classification: tool-gateway-worker

## Extracted from
- https://github.com/Deuz-AI/Deuz-SDK
- https://github.com/Deuz-AI/Deuz-SDK/blob/main/README.md
- https://img.shields.io/npm/v/%40deuz-sdk%2Fcore?style=flat-square&label=npm&color=3b82f6
- https://img.shields.io/npm/l/%40deuz-sdk%2Fcore?style=flat-square

## Evidence notes (from repository text)
- README summary paragraph: ### A TypeScript runtime for agents that have to survive production
- ### A TypeScript runtime for agents that have to survive production
- import { streamChat } from '@deuz-sdk/core';
- import { createAnthropic } from '@deuz-sdk/core/anthropic';
- Every SDK gives you `generateText`. These are the ones you would otherwise build yourself, badly, twice.
- | Tool loops that hold up | Parallel calls, self-healing errors, runaway guards, cost and token budgets, sub-agents |

## Installation hints found in README
- `npm install @deuz-sdk/core # the runtime`
- `npm install @deuz-sdk/react # optional: useChat, useObject, headless UI`

## worker.md contract (derived starter)
Purpose: Expose repository-supported tool/server capabilities behind a bounded worker interface.

### Input schema
```json
{
  "type": "object",
  "additionalProperties": false,
  "required": [
    "request_id",
    "operation",
    "payload"
  ],
  "properties": {
    "request_id": {
      "type": "string"
    },
    "operation": {
      "type": "string"
    },
    "payload": {
      "type": "object"
    }
  }
}
```

### Output schema
```json
{
  "type": "object",
  "additionalProperties": false,
  "required": [
    "request_id",
    "status",
    "result"
  ],
  "properties": {
    "request_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: request_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: deuz-sdk-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/deuz-sdk/

Source URL: https://github.com/Deuz-AI/Deuz-SDK