Token导航 LogoToken导航TokenDH.com
开发external-servicegithub未标认证来源可访问许可证需确认审计通过

building-restate-services建筑重述服务

Agent Skill

building-restate-services 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

519

周安装

21

GitHub Stars

4

下载量

163
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:building-restate-services(建筑重述服务)
来源仓库:https://github.com/restatedev/skills
仓库路径:skills/building-restate-services
安装命令:
npx skills add https://github.com/restatedev/skills --skill building-restate-services
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/restatedev/skills --skill building-restate-services

简介

该技能指导 Restate 有状态服务开发,利用持久化日志实现容错与精确恢复。

  • 适用于需要事务一致性、定时任务或长时运行的业务逻辑场景。
  • 支持 TypeScript、Python、Java 与 Go SDK,通过 REST/gRPC 接口暴露服务。
  • 安装方式:通过 npx skills add 命令从 GitHub 仓库添加,需部署 Restate Server 实例。
  • building-restate-services 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Restate

Restate is a durable execution runtime. It records every step of a handler in a journal, so if the process crashes, the handler replays from the journal and resumes exactly where it left off. Services are regular applications using the Restate SDK (TypeScript, Python, Java, Go) that run behind a Restate Server (a single Rust binary on ports 8080 for ingress and 9070 for admin UI).

Detect context

Scan the project to determine the SDK and context:

  1. Detect SDK:

- package.json with @restatedev/restate-sdk -> TypeScript - requirements.txt or pyproject.toml with restate-sdk -> Python - pom.xml or build.gradle with dev.restate -> Java - go.mod with github.com/restatedev/sdk-go -> Go - If no SDK detected, check for project files to determine language, then ask the user

  1. Detect existing Restate code: Grep for @restatedev, restate-sdk, dev.restate.sdk, github.com/restatedev
  2. Detect AI frameworks: @ai-sdk/, openai-agents, google-adk, pydantic-ai
  3. Detect workflow orchestrators: temporalio, @temporalio, aws-cdk/aws-stepfunctions, etc.

Core reference (always load)

After detecting the SDK, always load the SDK reference:

  • references/<sdk>/api-and-pitfalls.md - Setup, API patterns, determinism rules, error handling, and pitfalls for the detected SDK

Context-based references (load when relevant)

ContextReference
Design a new application, choose service typesreferences/design-and-architecture.md
Convert from a workflow orchestrator or existing appreferences/translate-to-restate.md
Invoking services, interacting with invocations (cancel, attach, idempotency, sends, Kafka)references/invocation-lifecycle.md
Build AI agent with Vercel AI SDKreferences/ts/restate-vercel-ai-agents.md
Build AI agent with OpenAI Agents SDKreferences/python/restate-openai-agents-agents.md
Build AI agent with Google ADKreferences/python/restate-google-adk-agents.md
Build AI agent with Pydantic AIreferences/python/restate-pydantic-ai-agents.md
Debug errors, stuck invocations, journal mismatchesreferences/debug-applications.md
Testing, deployment, server config, Kafka, advanced topicsUse the bundled restate-docs MCP server
Code examples and templatesgithub.com/restatedev/examples, github.com/restatedev/ai-examples

Before-you-design checklist

Before designing any Restate service architecture, check:

QuestionConsult
Restate service types, stateful entities, keying, concurrency?references/design-and-architecture.md
Non-Restate orchestrator in the project?references/translate-to-restate.md
Invoking, cancelling, deduplicating, or attaching to invocations?references/invocation-lifecycle.md
Error handling, compensation, sagas?Error handling guide, Sagas guide
AI agent or LLM calls?The relevant agent integration reference

Always verify before finishing

All checks below are mandatory.

  • All side effects, external I/O, and DB calls wrapped in ctx.run()
  • No native random, time, sleep, or UUID -- use ctx helpers
  • Restate concurrency combinators only (no Promise.all, asyncio.gather/wait, CompletableFuture, goroutines + channels, select)
  • No ctx operations inside ctx.run()
  • TerminalError raised for non-retryable failures
  • Python: no bare except:
  • AI agents: set a retry policy for LLM calls
  • Virtual Objects: no deadlock cycles
  • Service registered and invoked via curl or the UI

Replay test - required on any handler logic change

Any change to handler business logic (new ctx operations, reordered steps, new ctx.run() blocks, new branches) must be covered by a Testcontainers test with always-replay enabled, and that test must pass before declaring the work done. Always-replay forces every journaled step to replay on every invocation, so non-determinism fails the test instead of failing in production on retry.

  • TypeScript: alwaysReplay: true in RestateTestEnvironment.start
  • Python: always_replay=True in restate.test_harness
  • Java / Go: RESTATE_WORKER__INVOKER__INACTIVITY_TIMEOUT=0m on the Restate container

See the Testing section of references/<sdk>/api-and-pitfalls.md for the working scaffold.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.8%
按下载量换算60

Claude

28.3%
按下载量换算46

Cursor

20.02%
按下载量换算33

Gemini CLI

10.37%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills