Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

golem-shopping-ts

يحتوي golem-shopping-ts على 31 من skills المجمعة من justcoon، مع تغطية مهنية على مستوى المستودع وصفحات 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