Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

threadthread 开发

Agent Skill

thread 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,239

周安装

268

GitHub Stars

公开资料未说明

下载量

2,187
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:thread(thread 开发)
来源仓库:https://github.com/openlang-cn/thread
安装命令:
openclaw skills install thread
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install thread

简介

提供多语言线程编程指南与并发模式代码示例。thread 属于开发类 Skill,可作为该场景下的辅助能力补充。

  • 适合 OpenClaw 中需要优化程序性能或多任务处理的场景。
  • 覆盖同步机制、线程池设计及常见陷阱规避策略。
  • 安装命令为标准 clawhub 指令,便于集成到现有工作流。
  • 示例代码需结合具体运行时环境调试,不可直接照搬生产使用。

SKILL.md

name
thread
description
Helper for multi-threading and concurrency: when to use threads vs processes vs async, synchronization (locks, queues), thread pools, and language-specific APIs. Use when the user asks about threads, threading, concurrency, race conditions, locks, mutex, thread pool, or parallel execution.

Thread Skill — How to Work

Use this skill when the user asks about threads or concurrency: starting threads, thread pools, locks/mutex, race conditions, thread-safe code, or choosing between threads / processes / async.

Your Workflow

  1. Clarify context: Identify language/runtime (Python, Java, C#, Node.js, Go, etc.) and what they want (I/O-bound vs CPU-bound, parallelism vs concurrency).
  2. Choose the right tool: Prefer the language’s recommended approach (e.g. async in Node/Python for I/O; threads or processes for CPU; see reference/concepts.md).
  3. Give the right level of detail:

- Quick answer: Use the Quick Reference below and reply with a minimal example in their language. - Patterns and pitfalls: Point to or quote reference/patterns.md (locks, queues, thread pool, shared state). - Language API: Point to reference/languages.md or write a short snippet following that reference. - Templates: Use or adapt code in assets/ when the user wants a starter or copy-paste pattern.

Quick Reference

GoalPreferAvoid
I/O-bound (network, disk)Async (async/await, asyncio, Promise) or thread poolMany blocking threads
CPU-bound (compute)Processes / process pool, or native threads (Java, Go, C#)Many threads in Python (GIL)
Shared mutable stateLocks (mutex), thread-safe collections, or avoid sharingNaked shared variables
Producer–consumerQueue (thread-safe)Busy-wait / ad-hoc signaling
Run N tasks in parallelThread pool or process poolManually creating N threads
ConceptOne-liner
Race conditionTwo threads read/write same data without synchronization; fix with lock or immutable design.
DeadlockTwo (or more) threads wait for each other’s lock; fix by consistent lock order or timeouts.
GIL (Python)Only one thread runs Python bytecode at a time; use processes or C extensions for CPU-bound.

Where to Look

NeedLocation
When to use threads vs processes vs asyncreference/concepts.md
Locks, queues, thread pool, shared state patternsreference/patterns.md
Python / Java / C# / Node / Go API quick refreference/languages.md
Starter code / templatesassets/

Safety and Best Practices

  • Do not suggest shared mutable state without synchronization (lock, queue, or thread-safe structure).
  • Prefer higher-level constructs: thread pool, queue, async, instead of raw threads where they fit.
  • For Python CPU-bound work, suggest multiprocessing or clarify GIL limits; for I/O-bound, suggest threading or asyncio as appropriate.
  • When the user reports deadlock or race, point to reference/patterns.md and suggest minimal repro + lock discipline or queue-based design.

Assets

  • assets/python-thread-starter.py — Minimal Python threading + lock example.
  • assets/python-thread-pool.py — Thread pool (e.g. concurrent.futures) example.

Add or reference other language templates in assets/ when the user asks for a specific runtime.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

77.56%
按下载量换算1,696

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills