← all publishers

golemcloud

@golemcloud source repo

281 published skills · page 1 of 3

  1. Moonbit Proof · golemcloud bundle
    Use when writing or refactoring proof-carrying code in MoonBit, especially for Why3-backed specifications, abstraction functions, representation invariants, proof assertions, recursive verified data structures, or reducing trusted proof bridges.
    0
    installs
  2. Moonbit C Binding · golemcloud bundle
    Guide for writing MoonBit bindings to C libraries using native FFI. Use when adding extern "c" declarations, writing C stubs with moonbit.h, configuring native-stub and link.native in moon.pkg, choosing
    0
    installs
  3. Moonbit Refactoring · golemcloud bundle
    Refactor MoonBit code to be idiomatic: shrink public APIs, convert functions to methods, use pattern matching with views, add loop invariants, and ensure test coverage without regressions. Use when updating MoonBit packages or refactoring MoonBit APIs, modules, or tests.
    0
    installs
  4. Golem Build 2 · golemcloud
    Building a Golem application. Use when asked to build a Golem project, compile components to WASM, or troubleshoot build errors.
    0
    installs
  5. Golem New Project 2 · golemcloud
    Creating a new Golem application project. Use when scaffolding a new Golem project with golem new, selecting a language template, and setting up the initial project structure.
    0
    installs
  6. Golem Manage Plugins 2 · golemcloud
    Managing Golem plugins — listing available plugins, installing and configuring plugins via golem.yaml or CLI, and understanding built-in plugins like the OTLP exporter.
    0
    installs
  7. Golem Local Dev Server 2 · golemcloud
    Starting, configuring, and debugging the local Golem development server with `golem server`. Use when asked to start, stop, clean, or configure the local Golem server, or when you need to enable debug logs, find a useful tracing target, or diagnose runtime behavior of a deployed agent (e.g. status-code retry not firing, semantic trap retry decisions, durability events).
    0
    installs
  8. Golem Invoke Agent Rust 2 · golemcloud
    Invoking a Rust Golem agent method from the CLI. Use when asked to call, invoke, or run a method on a deployed agent using golem agent invoke.
    0
    installs
  9. Golem Troubleshoot Build 2 · golemcloud
    Troubleshooting Golem build failures and debugging manifest file (golem.yaml) configuration. Use when a build fails, when environment variables or config values are not applied as expected, when diagnosing why a manifest property has the wrong value, or when using `golem component manifest-trace` to inspect how golem.yaml layers are resolved.
    0
    installs
  10. Golem Custom Snapshot Rust 2 · golemcloud
    Enabling snapshot-based recovery and implementing custom snapshot save/load functions for Rust agents. Use when adding manual update support, custom state serialization, or — equally importantly — when a long-running agent's oplog is growing large and recovery/replay is becoming slow (heartbeats, polling loops, recurring tasks, frequent state changes). Snapshotting compacts the oplog and lets recovery start from the latest snapshot instead of replaying full history.
    0
    installs
  11. Golem Debug Agent History 2 · golemcloud
    Querying the operation log. Use when dumping or searching the oplog, or debugging agent behavior from its recorded history.
    0
    installs
  12. Golem Custom Snapshot Moonbit 2 · golemcloud
    Enabling snapshot-based recovery and implementing custom snapshot save/load functions for MoonBit agents. Use when adding manual update support, custom state serialization, or — equally importantly — when a long-running agent's oplog is growing large and recovery/replay is becoming slow (heartbeats, polling loops, recurring tasks, frequent state changes). Snapshotting compacts the oplog and lets recovery start from the latest snapshot instead of replaying full history.
    0
    installs
  13. Finalizing Pr · golemcloud
    Runs build, clippy, formatting, and lint checks across all targets before a PR. Use when asked to finalize, prepare, or clean up before submitting a pull request.
    0
    installs
  14. Testing Library · golemcloud
    Tests a 3rd-party npm library against the wasm-rquickjs runtime. Use when asked to test an npm package, check library compatibility, or pick the next untested library from the tracker.
    0
    installs
  15. Skeleton Development · golemcloud
    Guides development workflow for the embedded skeleton crate. Use when modifying files under crates/wasm-rquickjs/skeleton/, working on JavaScript runtime APIs, or troubleshooting skeleton build issues.
    0
    installs
  16. Adding Builtin Module · golemcloud
    Scaffolds and registers a new Node.js-compatible built-in module in the skeleton. Use when asked to add a new node:X module, implement a new built-in, or create a new native+JS module pair.
    0
    installs
  17. Fixing Node Compat Test · golemcloud
    Fixes failing Node.js compatibility tests in the node_compat suite. Use when asked to make a node_compat test pass, unskip a test, fix a test-crypto/test-path/test-* failure, or implement missing Node.js API behavior to satisfy a vendored test.
    0
    installs
  18. Regenerating Goldenfiles · golemcloud
    Regenerates DTS goldenfiles after d.ts generation logic changes. Use when dts tests fail due to expected output changes, when asked to update goldenfiles, or after modifying the d.ts generator.
    0
    installs
  19. Cleaning Up Builtin Module · golemcloud
    Cleans up and refactors a Node.js-compatible built-in module for improved code quality. Use when asked to clean up, simplify, refactor, or improve the coding style of an existing built-in module (e.g., node:buffer, node:path, node:crypto).
    0
    installs
  20. Golem Mark Read Only TS · golemcloud
    Marking TypeScript agent methods as read-only for a side-effect-free guarantee and result caching. Use when the user wants a cacheable query method, a method that must not write to the oplog, or HTTP GET endpoints that emit cache headers.
    0
    installs
  21. Golem Recurring Task TS · golemcloud
    Implementing a recurring (cron-like) task in a TypeScript Golem agent by self-scheduling future invocations. Use when the user asks about periodic tasks, recurring jobs, cron-like scheduling, polling loops, heartbeats, or self-scheduling agents.
    0
    installs
  22. Golem Retry Policies TS · golemcloud
    Configuring semantic retry policies for a TypeScript Golem agent. Use when the user asks about retry policies, retry strategies, exponential backoff, error handling retries, transient error recovery, retry predicates, withRetryPolicy, NamedPolicy, Policy composition, jitter, countBox, timeBox, andThen, or customizing how failures are retried.
    0
    installs
  23. Golem Schedule Agent TS · golemcloud
    Scheduling a future invocation on a TypeScript Golem agent. Use when asked to schedule, delay, or plan a future agent method invocation using golem agent invoke --trigger --schedule-at.
    0
    installs
  24. Golem Manage Plugins · golemcloud
    Managing Golem plugins — listing available plugins, installing and configuring plugins via golem.yaml or CLI, and understanding built-in plugins like the OTLP exporter.
    0
    installs
  25. Golem Add LLM Effect · golemcloud
    Adding provider-backed LLM text generation to an Effect-based Golem agent with effect/unstable/ai and an Effect AI provider. Use when an @golemcloud/effect-golem project needs a non-streaming language-model request or OpenAI-compatible provider integration.
    0
    installs
  26. Golem File Io Effect · golemcloud
    Reading and writing files from Effect Golem agents with wasm-rquickjs Node filesystem modules, including provisioned Initial File System paths and large files. Use when an Effect agent must read, write, list, or checksum filesystem data.
    0
    installs
  27. Golem Logging Effect · golemcloud
    Adding structured logging and tracing spans to an Effect-based Golem agent. Use when adding log messages, log levels, Effect.log*, annotations, error causes, spans, or streamed agent output with @golemcloud/effect-golem.
    0
    installs
  28. Golem Quota Moonbit · golemcloud
    Adding resource quotas to a MoonBit Golem agent. Use when the user asks about rate limiting, resource quotas, quota tokens, QuotaToken, with_reservation, throttling API calls, limiting concurrency, capacity limits, or splitting tokens between agents.
    0
    installs
  29. Golem Add Webhook Rust · golemcloud
    Using webhooks in a Rust Golem agent. Use when the user asks to create webhooks, receive webhook callbacks, integrate with webhook-driven external APIs, or generate temporary callback URLs for external services.
    0
    installs
  30. Golem Enable Otlp Rust · golemcloud
    Enabling the OpenTelemetry (OTLP) plugin for a Rust Golem agent — exporting traces, logs, and metrics to an OTLP collector, adding custom spans with the invocation context API.
    0
    installs
  31. Golem HTTP Params Rust · golemcloud
    Mapping HTTP request elements to Rust agent parameters. Use when the user asks about path variables, query parameters, header mapping, request body mapping, supported parameter types, or response type mapping for HTTP endpoints.
    0
    installs
  32. Golem Add Agent Scala · golemcloud
    Adding a new Scala agent to a Golem component. Use when the user asks to create, add, or define a new agent type, implement an agent trait, or add agent methods in a Scala Golem project.
    0
    installs
  33. Golem Add Mysql Scala · golemcloud
    Using MySQL from a Scala Golem agent through golem.host.Rdbms.Mysql. Use when the user asks to connect to MySQL, run SQL, or use MySQL from Scala agent code.
    0
    installs
  34. Golem Custom Snapshot TS · golemcloud
    Enabling snapshot-based recovery and implementing custom snapshot save/load functions for TypeScript agents. Use when adding manual update support, custom state serialization, or — equally importantly — when a long-running agent's oplog is growing large and recovery/replay is becoming slow (heartbeats, polling loops, recurring tasks, frequent state changes). Snapshotting compacts the oplog and lets recovery start from the latest snapshot instead of replaying full history.
    0
    installs
  35. Golem Fire And Forget TS · golemcloud
    Triggering an agent invocation without waiting for the result in a TypeScript Golem project. Use when the user asks about fire-and-forget calls, async triggers, or enqueuing agent work.
    0
    installs
  36. Golem Stateless Agent TS · golemcloud
    Creating ephemeral (stateless) agents in a TypeScript Golem project. Use when the user wants a stateless agent, a fresh instance per invocation, no shared state between calls, or a request-handler style agent.
    0
    installs
  37. Golem Redeploy Agents · golemcloud
    Redeploying existing agents by deleting and recreating them. Use when asked to redeploy agents, reset agent state while keeping the same identity, or force agents to start fresh with the latest component version.
    0
    installs
  38. Golem View Agent Logs · golemcloud
    Viewing agent logs and output. Use when streaming agent stdout/stderr/log channels or understanding how to observe agent output at runtime.
    0
    installs
  39. Golem Add Cors Effect · golemcloud
    Configuring CORS allowed-origin patterns for Effect-based Golem HTTP endpoints. Use when enabling cross-origin requests or adding mount-level or endpoint-level CORS in an @golemcloud/effect-golem agent.
    0
    installs
  40. Golem Add Postgres Rust · golemcloud
    Using golem:rdbms/postgres from a Rust Golem agent. Use when the user asks to connect to PostgreSQL, run SQL, execute a Postgres transaction, or use PostgreSQL from Rust agent code.
    0
    installs
  41. Golem Atomic Block Rust · golemcloud
    Using atomic blocks, idempotency, and oplog management in a Rust Golem project. Use when the user asks about atomically, idempotence mode, oplog commit, or idempotency keys.
    0
    installs
  42. Golem Invoke Agent Rust · golemcloud
    Invoking a Rust Golem agent method from the CLI. Use when asked to call, invoke, or run a method on a deployed agent using golem agent invoke.
    0
    installs
  43. Golem Add Config Scala · golemcloud
    Adding typed configuration to Scala Golem agents. Use when the user asks to add config, configuration, settings, or environment-specific parameters to an agent.
    0
    installs
  44. Golem Add Ignite Scala · golemcloud
    Using Apache Ignite from a Scala Golem agent through golem.host.Rdbms.Ignite. Use when the user asks to connect to Apache Ignite 2, run SQL over Ignite, or use Ignite from Scala agent code.
    0
    installs
  45. Golem Add Secret Scala · golemcloud
    Adding secrets to Scala Golem agents. Use when the user asks to add secret values, API keys, passwords, or sensitive configuration to a Scala Golem agent.
    0
    installs
  46. Golem Add Transactions TS · golemcloud
    Adding saga-pattern transactions with compensation to a TypeScript Golem agent. Use when the user asks about transactions, sagas, compensation, rollback, or multi-step operations that need undo logic.
    0
    installs
  47. Golem Agent Reflection TS · golemcloud
    Discovering and calling Golem agents through runtime reflection in TypeScript. Use when agent types or methods are selected dynamically, schemas must be inspected at runtime, or only a ParsedAgentId is available.
    0
    installs
  48. Golem Interactive Repl TS · golemcloud
    Using the Golem REPL for interactive testing and scripting of agents. Use when asked to test agents interactively, run a REPL, or execute test scripts against deployed agents.
    0
    installs
  49. Golem Parallel Workers TS · golemcloud
    Fan out work to multiple parallel agents and collect results in a TypeScript Golem project. Use when the user asks about parallel execution, fan-out/fan-in, spawning child agents for parallel work, forking, or aggregating results from multiple agents.
    0
    installs
  50. Investigating Executor Performance · golemcloud
    Investigating worker-executor performance by running executor tests with OTLP tracing enabled and analyzing trace data from Jaeger. Use when diagnosing slow tests, understanding executor call flows, or profiling span durations.
    0
    installs
  51. Golem Agent Reflection · golemcloud
    Choosing Golem agent reflection levels and identity lookup behavior across SDKs. Use when agent types or methods are discovered dynamically, schemas are inspected at runtime, or an environment-scoped agent identity must be resolved.
    0
    installs
  52. Golem Local Dev Server · golemcloud
    Starting, configuring, and debugging the local Golem development server with `golem server`. Use when asked to start, stop, clean, or configure the local Golem server, or when you need to enable debug logs, find a useful tracing target, or diagnose runtime behavior of a deployed agent (e.g. status-code retry not firing, semantic trap retry decisions, durability events).
    0
    installs
  53. Golem Undo Agent State · golemcloud
    Reverting agent state by undoing operations. Use when reverting invocations, rolling back agent state, or recovering from errors by undoing recorded operations.
    0
    installs
  54. Golem View Agent Files · golemcloud
    Listing files in an agent's virtual filesystem. Use when browsing or inspecting files stored by a running agent instance.
    0
    installs
  55. Golem Add Agent Effect · golemcloud
    Adding an Effect-based agent to a Golem component. Use when creating or defining an agent type, adding agent methods, schemas, durable state, or Effect implementations in an @golemcloud/effect-golem project.
    0
    installs
  56. Golem Add Mysql Effect · golemcloud
    Uses MySQL from Effect-based Golem agents through @golemcloud/effect-golem/mysql. Use when connecting to MySQL, running SQL, or adding transactional MySQL operations to an Effect agent.
    0
    installs
  57. Golem Add LLM Moonbit · golemcloud
    Adding LLM and AI capabilities to a MoonBit Golem agent. Use when the user wants to add LLM chat, embeddings, or any AI provider integration to a MoonBit agent.
    0
    installs
  58. Golem File Io Moonbit · golemcloud
    Reading and writing files from MoonBit Golem agent code. Use when the user asks to read files, write files, or access the filesystem from a MoonBit agent.
    0
    installs
  59. Golem Logging Moonbit · golemcloud
    Adding logging to a MoonBit Golem agent. Use when the user asks about logging, log messages, log levels, wasi:logging, @logging, or printing debug/info/error output from a MoonBit agent.
    0
    installs
  60. Golem Add HTTP Auth Rust · golemcloud
    Enabling authentication on Rust HTTP endpoints. Use when the user asks to add auth, require authentication, or protect HTTP endpoints.
    0
    installs
  61. Golem Trigger Agent Rust · golemcloud
    Triggering a fire-and-forget invocation on a Rust Golem agent. Use when asked to trigger, enqueue, or fire-and-forget an agent method invocation using golem agent invoke --trigger.
    0
    installs
  62. Golem Add Webhook Scala · golemcloud
    Using webhooks in a Scala Golem agent. Use when the user asks to create webhooks, receive webhook callbacks, integrate with webhook-driven external APIs, or generate temporary callback URLs for external services.
    0
    installs
  63. Golem Enable Otlp Scala · golemcloud
    Enabling the OpenTelemetry (OTLP) plugin for a Scala Golem agent — exporting traces, logs, and metrics to an OTLP collector, adding custom spans with the invocation context API.
    0
    installs
  64. Golem HTTP Params Scala · golemcloud
    Mapping HTTP request elements to Scala agent parameters. Use when the user asks about path variables, query parameters, header mapping, request body mapping, supported parameter types, or response type mapping for HTTP endpoints.
    0
    installs
  65. Golem Add HTTP Endpoint TS · golemcloud
    Exposing a TypeScript Golem agent over HTTP. Use when the user asks to add HTTP endpoints, mount an agent to a URL path, or expose agent methods as a REST API.
    0
    installs
  66. Golem Make HTTP Request TS · golemcloud
    Making outgoing HTTP requests from a TypeScript Golem agent. Use when the user asks to call an external API, make HTTP requests, use fetch, or send HTTP requests from agent code.
    0
    installs
  67. Investigating Benchmark Performance · golemcloud
    Investigating benchmark performance by running Golem benchmarks with OTLP tracing enabled and analyzing trace data from Jaeger. Use when diagnosing slow benchmarks, understanding benchmark call flows, or profiling span durations during benchmark runs.
    0
    installs
  68. Golem Add Initial Files · golemcloud
    Adding initial files to Golem agent filesystems via the `files:` section in `golem.yaml`. Use when provisioning local or remote files into an agent's virtual filesystem, setting read-only / read-write permissions, or configuring file mounts at the component, agent, template, or preset level.
    0
    installs
  69. Golem Add Config Effect · golemcloud
    Adding typed configuration to an Effect-based Golem agent. Use when an @golemcloud/effect-golem agent needs settings or parameters supplied through golem.yaml, the CLI, or RPC overrides.
    0
    installs
  70. Golem Add Ignite Effect · golemcloud
    Uses Apache Ignite 2 from an Effect-based Golem agent through @golemcloud/effect-golem/ignite2. Use when connecting to Ignite, running Ignite SQL, or adding transactional database operations to an Effect agent.
    0
    installs
  71. Golem Add Secret Effect · golemcloud
    Adding secrets to Effect-based Golem agents. Use when an @golemcloud/effect-golem agent needs API keys, passwords, tokens, or other sensitive typed configuration without exposing plaintext in Effect values or logs.
    0
    installs
  72. Golem Add Cors Moonbit · golemcloud
    Configuring CORS allowed origins for HTTP endpoints in MoonBit Golem agents. Use when the user asks to enable CORS, allow cross-origin requests, or configure allowed origins.
    0
    installs
  73. Golem Annotate Agent Rust · golemcloud
    Adding prompt and description annotations to Rust agent methods. Use when the user asks to add descriptions, prompts, or documentation metadata to agent methods for AI/LLM discovery.
    0
    installs
  74. Golem Mark Read Only Rust · golemcloud
    Marking Rust agent methods as read-only for a side-effect-free guarantee and result caching. Use when the user wants a cacheable query method, a method that must not write to the oplog, or HTTP GET endpoints that emit cache headers.
    0
    installs
  75. Golem Recurring Task Rust · golemcloud
    Implementing a recurring (cron-like) task in a Rust Golem agent by self-scheduling future invocations. Use when the user asks about periodic tasks, recurring jobs, cron-like scheduling, polling loops, heartbeats, or self-scheduling agents.
    0
    installs
  76. Golem Retry Policies Rust · golemcloud
    Configuring semantic retry policies for a Rust Golem agent. Use when the user asks about retry policies, retry strategies, exponential backoff, error handling retries, transient error recovery, retry predicates, withRetryPolicy, with_named_policy, NamedPolicy, Policy composition, jitter, countBox, timeBox, andThen, or customizing how failures are retried.
    0
    installs
  77. Golem Schedule Agent Rust · golemcloud
    Scheduling a future invocation on a Rust Golem agent. Use when asked to schedule, delay, or plan a future agent method invocation using golem agent invoke --trigger --schedule-at.
    0
    installs
  78. Golem Add Postgres Scala · golemcloud
    Using PostgreSQL from a Scala Golem agent through golem.host.Rdbms.Postgres. Use when the user asks to connect to PostgreSQL, run SQL, or use Postgres from Scala agent code.
    0
    installs
  79. Golem Atomic Block Scala · golemcloud
    Using atomic blocks, idempotency, checkpoints, and oplog management in a Scala Golem project. Use when the user asks about atomically, idempotence mode, oplog commit, checkpoints, or idempotency keys.
    0
    installs
  80. Golem Invoke Agent Scala · golemcloud
    Invoking a Scala Golem agent method from the CLI. Use when asked to call, invoke, or run a method on a deployed agent using golem agent invoke.
    0
    installs
  81. Golem Call Another Agent TS · golemcloud
    Calling another agent and awaiting the result in a TypeScript Golem project. Use when the user asks about agent-to-agent RPC, calling remote agents, or inter-component communication.
    0
    installs
  82. Golem Call From External TS · golemcloud
    Calling Golem agents from external TypeScript/Node.js applications using generated bridge SDKs. Use when the user wants to invoke agents from outside the Golem platform, from a Node.js server, script, or any TypeScript application.
    0
    installs
  83. Golem Deployment Version · golemcloud
    Configuring the deployment logical version in the Golem Application Manifest (golem.yaml): the version: source (git tag, git commit hash, static string, or env var), tuning tagPattern/hashFallback/staticFallback/allowDirty, per-environment version overrides, and the versionCheck uniqueness policy. Use when setting up or changing how deploy versions are computed, comparing environments by version, or fixing version-related deploy errors.
    0
    installs
  84. Golem Get Agent Metadata · golemcloud
    Checking agent metadata and status. Use when inspecting an agent's state, component revision, environment variables, update history, or current status.
    0
    installs
  85. Golem Troubleshoot Build · golemcloud
    Troubleshooting Golem build failures and debugging manifest file (golem.yaml) configuration. Use when a build fails, when environment variables or config values are not applied as expected, when diagnosing why a manifest property has the wrong value, or when using `golem component manifest-trace` to inspect how golem.yaml layers are resolved.
    0
    installs
  86. Golem Add Webhook Effect · golemcloud
    Using one-shot webhooks in an Effect-based Golem agent. Use when an @golemcloud/effect-golem agent must create a public callback URL, durably await an external POST, decode its body, or customize its webhook path.
    0
    installs
  87. Golem Enable Otlp Effect · golemcloud
    Enabling the built-in OpenTelemetry (OTLP) exporter for Effect-based Golem agents. Use when exporting traces, logs, and metrics or adding Effect spans and structured log annotations.
    0
    installs
  88. Golem HTTP Params Effect · golemcloud
    Mapping HTTP path, query, header, and body values to Effect Golem agent parameters and mapping method results to responses. Use when defining request bindings, optional parameters, JSON bodies, response schemas, or unstructured HTTP inputs with @golemcloud/effect-golem.
    0
    installs
  89. Golem Add Agent Moonbit · golemcloud
    Adding a new MoonBit agent to a Golem component. Use when the user asks to create, add, or define a new agent type in a MoonBit Golem project.
    0
    installs
  90. Golem Add Mysql Moonbit · golemcloud
    Using golem:rdbms/mysql from a MoonBit Golem agent. Use when the user asks to connect to MySQL, run SQL, or use MySQL from MoonBit agent code.
    0
    installs
  91. Golem Custom Snapshot Rust · golemcloud
    Enabling snapshot-based recovery and implementing custom snapshot save/load functions for Rust agents. Use when adding manual update support, custom state serialization, or — equally importantly — when a long-running agent's oplog is growing large and recovery/replay is becoming slow (heartbeats, polling loops, recurring tasks, frequent state changes). Snapshotting compacts the oplog and lets recovery start from the latest snapshot instead of replaying full history.
    0
    installs
  92. Golem Fire And Forget Rust · golemcloud
    Triggering an agent invocation without waiting for the result in a Rust Golem project. Use when the user asks about fire-and-forget calls, async triggers, or enqueuing agent work.
    0
    installs
  93. Golem Stateless Agent Rust · golemcloud
    Creating ephemeral (stateless) agents in a Rust Golem project. Use when the user wants a stateless agent, a fresh instance per invocation, no shared state between calls, or a request-handler style agent.
    0
    installs
  94. Golem Add HTTP Auth Scala · golemcloud
    Enabling authentication on Scala HTTP endpoints. Use when the user asks to add auth, require authentication, or protect HTTP endpoints.
    0
    installs
  95. Golem Trigger Agent Scala · golemcloud
    Triggering a fire-and-forget invocation on a Scala Golem agent. Use when asked to trigger, enqueue, or fire-and-forget an agent method invocation using golem agent invoke --trigger.
    0
    installs
  96. Golem Cloud Account Setup · golemcloud
    Setting up a Golem Cloud account from scratch. Use when creating a Golem Cloud account, authenticating with Golem Cloud via the CLI, setting up a cloud profile, or deploying to Golem Cloud for the first time.
    0
    installs
  97. Golem Debug Agent History · golemcloud
    Querying the operation log. Use when dumping or searching the oplog, or debugging agent behavior from its recorded history.
    0
    installs
  98. Golem Test Crash Recovery · golemcloud
    Simulating a crash on an agent for testing crash recovery. Use when testing durable execution, verifying state recovery after failures, or validating that an agent correctly resumes from its operation log.
    0
    installs
  99. Golem Add Postgres Effect · golemcloud
    Using PostgreSQL from an Effect-based Golem agent through @golemcloud/effect-golem/postgres. Use when connecting to PostgreSQL, running SQL, or adding PostgreSQL transactions to an Effect Golem application.
    0
    installs
  100. Golem Atomic Block Effect · golemcloud
    Using atomic regions and durability controls in Effect-based Golem agents. Use when an @golemcloud/effect-golem project needs whole-region replay, Durability.atomically, persistence or idempotence modes, oplog replication, idempotency keys, or scoped retry policies.
    0
    installs