Skip to main content
Ejecuta cualquier Skill en Manus
con un clic
Repositorio de GitHub

golem-shopping-ts

golem-shopping-ts contiene 31 skills recopiladas de justcoon, con cobertura ocupacional por repositorio y páginas de detalle dentro del sitio.

skills recopiladas
31
Stars
1
actualizado
2026-05-28
Forks
0
Cobertura ocupacional
1 categorías ocupacionales · 100% clasificado
explorador de repositorios

Skills en este repositorio

golem-add-agent-ts
Desarrolladores de software

Adding a new TypeScript agent to a Golem component. Use when the user asks to create, add, or define a new agent type, implement an agent class, or add agent methods in a TypeScript Golem project.

2026-05-28
golem-add-http-endpoint-ts
Desarrolladores de software

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.

2026-05-28
golem-add-llm-ts
Desarrolladores de software

Adding LLM and AI capabilities to a TypeScript Golem agent. Use when the user wants to add LLM chat, embeddings, or any AI provider integration to a TypeScript agent.

2026-05-28
golem-add-secret-ts
Desarrolladores de software

Adding secrets to TypeScript Golem agents. Use when the user asks to add secrets, store API keys, manage sensitive config values, or use Secret<T> in TypeScript agents.

2026-05-28
golem-call-from-external-ts
Desarrolladores de software

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.

2026-05-28
golem-configure-durability-ts
Desarrolladores de software

Choosing between durable and ephemeral agents in a TypeScript Golem project. Use when the user asks about agent durability modes, making an agent stateless, or configuring agent persistence.

2026-05-28
golem-custom-snapshot-ts
Desarrolladores de software

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.

2026-05-28
golem-enable-otlp-ts
Desarrolladores de software

Enabling the OpenTelemetry (OTLP) plugin for a TypeScript Golem agent — exporting traces, logs, and metrics to an OTLP collector, adding custom spans with the invocation context API or node:diagnostics_channel.

2026-05-28
golem-http-params-ts
Desarrolladores de software

Mapping HTTP request elements to TypeScript 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.

2026-05-28
golem-invoke-agent-ts
Desarrolladores de software

Invoking a TypeScript Golem agent method from the CLI. Use when asked to call, invoke, or run a method on a deployed agent using golem agent invoke.

2026-05-28
golem-make-http-request-ts
Desarrolladores de software

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.

2026-05-28
golem-recurring-task-ts
Desarrolladores de software

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.

2026-05-28
golem-add-config-ts
Desarrolladores de software

Adding typed configuration to a TypeScript Golem agent. Use when the user asks to add config, settings, or parameters to a TypeScript agent that can be set via golem.yaml or CLI.

2026-05-07
golem-add-cors-ts
Desarrolladores de software

Configuring CORS for TypeScript HTTP endpoints. Use when the user asks to enable CORS, allow cross-origin requests, or configure allowed origins for HTTP endpoints.

2026-05-07
golem-add-http-auth-ts
Desarrolladores de software

Enabling authentication on TypeScript HTTP endpoints. Use when the user asks to add auth, require authentication, use Principal, or protect HTTP endpoints.

2026-05-07
golem-add-ignite-ts
Desarrolladores de software

Using golem:rdbms/ignite2 from a TypeScript Golem agent. Use when the user asks to connect to Apache Ignite 2, run SQL over Ignite, or use Ignite from TypeScript agent code.

2026-05-07
golem-add-mysql-ts
Desarrolladores de software

Using golem:rdbms/mysql from a TypeScript Golem agent. Use when the user asks to connect to MySQL, run SQL, or use MySQL from TypeScript agent code.

2026-05-07
golem-add-npm-package
Desarrolladores de software

Add a new npm package dependency to a TypeScript Golem project. Use when the user asks to add a library, package, or dependency.

2026-05-07
golem-add-postgres-ts
Desarrolladores de software

Using golem:rdbms/postgres from a TypeScript Golem agent. Use when the user asks to connect to PostgreSQL, run SQL, or use PostgreSQL from TypeScript agent code.

2026-05-07
golem-add-transactions-ts
Desarrolladores de software

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.

2026-05-07
golem-add-webhook-ts
Desarrolladores de software

Using webhooks in a TypeScript 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.

2026-05-07
golem-annotate-agent-ts
Desarrolladores de software

Adding prompt and description annotations to TypeScript agents and their methods. Use when the user asks to add descriptions, prompts, or documentation metadata to agent classes or methods for AI/LLM discovery.

2026-05-07
golem-call-another-agent-ts
Desarrolladores de software

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.

2026-05-07
golem-file-io-ts
Desarrolladores de software

Reading and writing files from a TypeScript Golem agent. Use when the user asks to read files, write files, or do filesystem operations from agent code in TypeScript.

2026-05-07
golem-fire-and-forget-ts
Desarrolladores de software

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.

2026-05-07
golem-multi-instance-agent-ts
Desarrolladores de software

Using phantom agents in TypeScript to create multiple agent instances with the same constructor parameters. Use when the user needs multiple distinct agents sharing constructor values, or asks about phantom agents, phantom IDs, getPhantom/newPhantom, or multi-instance agents in TypeScript.

2026-05-07
golem-parallel-workers-ts
Desarrolladores de software

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.

2026-05-07
golem-quota-ts
Desarrolladores de software

Adding resource quotas to a TypeScript Golem agent. Use when the user asks about rate limiting, resource quotas, quota tokens, acquireQuotaToken, withReservation, throttling API calls, limiting concurrency, capacity limits, or splitting tokens between agents.

2026-05-07
golem-schedule-future-call-ts
Desarrolladores de software

Scheduling a future agent invocation in a TypeScript Golem project. Use when the user asks about delayed invocations, scheduling calls for later, or timed agent execution.

2026-05-07
golem-stateless-agent-ts
Desarrolladores de software

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.

2026-05-07
golem-wait-for-external-input-ts
Desarrolladores de software

Waiting for external input using Golem promises in a TypeScript Golem project. Use when the user asks about promises, waiting for external events, human-in-the-loop workflows, pausing an agent until an external signal, or suspending execution until data arrives from outside.

2026-05-07