Skip to main content
Jeden Skill in Manus ausführen
mit einem Klick
GitHub-Repository

golem-shopping-ts

golem-shopping-ts enthält 31 gesammelte Skills von justcoon, mit Repository-Berufsabdeckung und Skill-Detailseiten auf SkillsMP.

gesammelte Skills
31
Stars
1
aktualisiert
2026-05-28
Forks
0
Berufsabdeckung
1 Berufskategorien · 100% klassifiziert
Repository-Explorer

Skills in diesem Repository

golem-add-agent-ts
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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