LogoClawIndex
CasesSkillsAbout
LogoClawIndex

ClawIndex

OpenClaw Skills & Use Case Index

ClawIndex is an ecosystem-driven index of OpenClaw skills and real-world use cases.

Index

Skills·
Cases

Meta

About·
Disclaimer·
Email·
GitHub
© 2026 ClawIndex All Rights Reserved.

Skills tagged: concurrency

Browse skills that share this tag.

  • swift-concurrency - Guidance on Swift Concurrency patterns and Swift 6 migration
    swiftconcurrencyasync-awaitactors

    ★ 4 · Updated 2026-09-23

    Provides guidance on Swift Concurrency, covering async/await patterns, actors, tasks, Sendable conformance, and Swift 6 migration.

    ⚙ Analyze Swift project settings⚙ Identify isolation boundaries⚙ Guide refactoring closures to async/await
  • effect-ts - Expert guidance for idiomatic Effect-TS code
    effect-tstypescriptfunctional-programmingerror-handling

    ★ 8 · Updated 2026-09-23

    Provides guidance for writing and reviewing Effect-TS code, covering typed errors, dependency injection, concurrency, and resource management.

    ⚙ Write idiomatic Effect-TS code⚙ Review Effect-TS code⚙ Handle typed errors and defects
  • async-python-patterns - Async Python Patterns Workflow Skill
    async-python-patternsasynciopythonconcurrency

    ★ 148 · Updated 2026-09-23

    Provides comprehensive guidance for implementing asynchronous Python applications using asyncio, concurrent programming patterns, and async/await.

    ⚙ Clarify workload characteristics and constraints⚙ Select concurrency patterns and cancellation rules⚙ Add timeouts and structured error handling
  • tw-invariant-ace - Define and enforce inductive invariants at code boundaries
    invariantsvalidationconcurrencycorrectness

    ★ 8 · Updated 2026-09-23

    Enforces inductive invariants at boundaries to turn impossible states into unrepresentable code paths with verification signals.

    ⚙ Define owned inductive invariants⚙ Construct concrete counterexample traces⚙ Encode enforcement at system boundaries
  • mongez-reinforcements-async - Async and Promise control flow utilities.
    asyncpromiseretryconcurrency

    ★ 3 · Updated 2026-09-20

    Provides Promise-based control flow utilities including sleep, retry, timeout, bounded concurrency, defer, poll, and async debounce.

    ⚙ Delay execution using sleep⚙ Retry operations with backoff⚙ Enforce promise execution timeouts
  • archproof-audit - ArchProof Architecture Evidence Audit
    architecture-auditevidence-verificationdistributed-systemsconcurrency

    ★ 0 · Updated 2026-09-20

    Audit architecture claims against repository and runtime evidence for distributed, event-driven, real-time, and AI systems.

    ⚙ Collect repository architecture evidence⚙ Audit gateway and identity security⚙ Verify Redis concurrency invariants
  • ecc-swift-concurrency-6-2 - Swift 6.2 Approachable Concurrency Patterns
    swiftconcurrencyswift-6-2mainactor

    ★ 0 · Updated 2026-09-19

    Provides patterns for Swift 6.2 concurrency, including single-threaded defaults, explicit @concurrent background offloading, and isolated conformances.

    ⚙ Migrate projects to Swift 6.2⚙ Resolve data-race compiler errors⚙ Offload work using @concurrent
  • zig-async-skill - Zig 0.16.0+ Async I/O Programming
    zigasync-iostd-ioconcurrency

    ★ 0 · Updated 2026-09-19

    Provides guides and patterns for Zig 0.16.0+ async I/O programming using the std.Io interface.

    ⚙ Spawn asynchronous tasks⚙ Spawn concurrent tasks⚙ Await future results
  • swift-concurrency - Provides guidance for writing safe concurrent Swift code.
    swiftconcurrencyasync-awaitactor

    ★ 153 · Updated 2026-09-18

    Provides expert guidance on Swift Concurrency concepts, isolation domains, async/await, actors, Sendable, and debugging compiler errors.

    ⚙ Guide async and await usage⚙ Manage Tasks and TaskGroups⚙ Implement actor isolation
  • ios - iOS and Swift HIG Review, Accessibility, and Patterns
    iosswiftswiftuiaccessibility

    ★ 0 · Updated 2026-09-17

    Provides patterns and reviews for Swift and SwiftUI development, HIG compliance, accessibility, and concurrency.

    ⚙ Audit SwiftUI code for HIG compliance⚙ Audit font usage and Dynamic Type⚙ Generate accessibility infrastructure for SwiftUI
  • agentic-jujutsu - Coordinate concurrent multi-agent repository writes
    multi-agentvcsgitconflict-resolution

    ★ 3 · Updated 2026-09-16

    Applies soft claims, worktree fan-out, and semantic 3-way merge to enable concurrent agent writes without repository lock stalls.

    ⚙ Acquire soft write claims⚙ Release active write claims⚙ List active soft claims
  • ush-concurrent-edit-coordination - Coordinate concurrent edits to prevent collisions
    gitconcurrencycode-coordinationconflict-detection

    ★ 0 · Updated 2026-09-15

    Determines whether active workstreams overlap on implementation sources, file hunks, or public contracts before coordinating edits.

    ⚙ Inspect active workstream diffs⚙ Classify source overlap types⚙ Determine edit ownership and dependencies
  • typescript-distributed-lock - TypeScript Distributed Lock
    typescriptdistributed-lockredispostgresql

    ★ 0 · Updated 2026-09-14

    Implement safe distributed locks in TypeScript using Redis, PostgreSQL advisory locks, lease renewal, and fencing tokens for multi-instance Node workers.

    ⚙ Acquire Redis locks with TTL⚙ Release Redis locks via Lua⚙ Acquire PostgreSQL advisory locks
  • review-and-fix - Deep analysis and iterative fixing of a Rust source file
    rustcode-reviewconcurrencyrefactoring

    ★ 1,799 · Updated 2026-09-14

    Deeply analyzes a specified Rust source file for logic errors, concurrency issues, and simplifications, then iteratively fixes them.

    ⚙ Read target file and context⚙ Analyze logic and lock issues⚙ Simplify redundant code and comments
  • go-patterns - Go Design Patterns and Best Practices
    godesign-patternsconcurrencyarchitecture

    ★ 0 · Updated 2026-09-14

    Provides Go design patterns for concurrency, interfaces, error handling, functional options, middleware, and project structure.

    ⚙ Implement interface-driven design⚙ Handle errors with context⚙ Apply concurrency worker pools
  • kotlin-coroutines-expert - Guide for Kotlin Coroutines and Flow Development
    kotlincoroutinesflowasynchronous-programming

    ★ 0 · Updated 2026-09-12

    Provides patterns and practices for Kotlin Coroutines and Flow, covering structured concurrency, exception handling, and testing.

    ⚙ Implement asynchronous operations in Kotlin⚙ Design reactive streams using Flow⚙ Handle coroutine exceptions and cancellations
  • better-all - Promise.all with automatic DAG dependency optimization
    promiseasyncdagtypescript

    ★ 602 · Updated 2026-09-11

    Provides Promise.all with automatic DAG-based dependency optimization and type inference for parallelizing async operations.

    ⚙ Optimize async task execution automatically⚙ Infer task return types automatically
  • python-debugging-expert - Python Debugging Expert
    pythondebuggingprofilingasyncio

    ★ 602 · Updated 2026-09-11

    Provides playbooks and guidance for Python code debugging, concurrency issues, performance profiling, and test reproduction.

    ⚙ Triage Python debugging issues⚙ Select debuggers and tracing tools⚙ Debug async and concurrency issues
  • async-python-patterns - Async Python Patterns
    pythonasyncioasyncconcurrency

    ★ 0 · Updated 2026-09-10

    Guidance for implementing asynchronous Python applications using asyncio, concurrent programming patterns, and async/await.

    ⚙ Build async web APIs⚙ Implement concurrent I/O operations⚙ Create concurrent web scrapers
  • async-python-patterns - Async Python programming patterns and guidance
    pythonasyncioconcurrencyasync-programming

    ★ 3 · Updated 2026-09-10

    Provides guidance for building asynchronous Python applications using asyncio and concurrent programming patterns.

    ⚙ Build async web APIs⚙ Implement concurrent I/O operations⚙ Create concurrent web scrapers

Scroll to load more