Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

golem-shopping-ts

golem-shopping-ts 收录了来自 justcoon 的 31 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
31
Stars
1
更新
2026-05-28
Forks
0
职业覆盖
1 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

golem-add-agent-ts
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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