kikakkz/wait-agent

Agent mux terminal.

21Stars on the repository
60Mods indexed here, across every type
4d agoLast push, which is what freshness is scored on
noneNo LICENSE: all rights reserved, so bodies are not copied

coding-guidelines

01

kikakkz/wait-agent

Skill Claude CodeCodex

Guidance for Rust code style and best practices, including naming, formatting, comments, linting, and code review.

21 4d ago A 86 tokens

core-actionbook

02

kikakkz/wait-agent

Skill Claude CodeCodex

Internal support skill for actionbook MCP selectors used by Rust documentation research workflows. Use only when another rust-skills workflow explicitly requests actionbook-backed selectors.

21 4d ago A 34 tokens

core-agent-browser

03

kikakkz/wait-agent

Skill Claude CodeCodex

Internal support skill for agent-browser CLI workflows used by rust-learner, docs-researcher, and crate-researcher. Use only when browser automation is explicitly required.

21 4d ago A 39 tokens

core-dynamic-skills

04

kikakkz/wait-agent

Skill Claude CodeCodex

Internal command support for dynamic Rust crate skill management. Use only when explicitly invoked by /sync-crate-skills, /clean-crate-skills, or /update-crate-skill.

21 4d ago D 44 tokens

core-fix-skill-docs

05

kikakkz/wait-agent

Skill Claude CodeCodex

Internal maintenance support for checking and fixing generated Rust skill documentation references. Use only when explicitly invoked by /fix-skill-docs.

21 4d ago B 34 tokens

domain-cli

06

kikakkz/wait-agent

Skill Claude CodeCodex

A set of guidance for building command-line tools, which are programs operated by typing commands in a terminal.

21 4d ago A 73 tokens

domain-cloud-native

07

kikakkz/wait-agent

Skill Claude CodeCodex

A set of guidance for building cloud-native applications, which run as services in containers or cloud environments.

21 4d ago A 59 tokens

domain-embedded

08

kikakkz/wait-agent

Skill Claude CodeCodex

A set of guidance for developing embedded Rust software, such as firmware running directly on a microcontroller without a full operating system.

21 4d ago A 91 tokens

domain-fintech

09

kikakkz/wait-agent

Skill Claude CodeCodex

A set of guidance for building financial software, such as trading, payment, currency, and accounting systems.

21 4d ago A 52 tokens

domain-iot

10

kikakkz/wait-agent

Skill Claude CodeCodex

A guide for building Internet of Things (IoT) applications, which connect software to physical devices such as sensors, appliances, and machines.

21 4d ago A 59 tokens

domain-ml

11

kikakkz/wait-agent

Skill Claude CodeCodex

A set of guidance for building machine-learning and artificial-intelligence applications in Rust. Machine learning uses data and models to make predictions or other decisions.

21 4d ago A 61 tokens

domain-web

12

kikakkz/wait-agent

Skill Claude CodeCodex

A set of guidance for building web services, which are programs that communicate over the internet through requests and responses.

21 4d ago A 87 tokens

m01-ownership

13

kikakkz/wait-agent

Skill Claude CodeCodex

A Rust troubleshooting guide for ownership, borrowing, and lifetimes—the rules that control when values can be used and how long references remain valid.

21 4d ago A 96 tokens

m02-resource

14

kikakkz/wait-agent

Skill Claude CodeCodex

A guide to Rust smart pointers, which control ownership of values stored on the heap or shared between parts of a program. It covers `Box`, `Rc`, `Arc`, `Weak`, `RefCell`, and `Cell`.

21 4d ago A 74 tokens

m03-mutability

15

kikakkz/wait-agent

Skill Claude CodeCodex

A guide to changing values safely in Rust, including the rules for mutable and immutable references. It covers tools such as `Cell`, `RefCell`, `Mutex`, and `RwLock` for controlled changes.

21 4d ago A 74 tokens

m04-zero-cost

16

kikakkz/wait-agent

Skill Claude CodeCodex

A guide to Rust generics and traits, which let code work with different types while sharing rules and behavior. It explains static dispatch, dynamic dispatch, and how Rust chooses concrete implementations.

21 4d ago A 78 tokens

m05-type-driven

17

kikakkz/wait-agent

Skill Claude CodeCodex

A guide to designing Rust types so that invalid combinations are rejected by the compiler. It covers type-state patterns, newtypes, marker traits, builders, and compile-time validation.

21 4d ago A 60 tokens

m06-error-handling

18

kikakkz/wait-agent

Skill Claude CodeCodex

A guide to handling operations that may fail in Rust with `Result` and `Option`, rather than silently ignoring problems. It covers error propagation, panics, and custom errors made with tools such as `anyhow` and `thiserror`.

21 4d ago A 61 tokens

m07-concurrency

19

kikakkz/wait-agent

Skill Claude CodeCodex

A guide to running work at the same time in Rust, either on threads or through async tasks. It covers shared data, channels, locks, atomics, futures, and common problems such as races and deadlocks.

21 4d ago A 75 tokens

m09-domain

20

kikakkz/wait-agent

Skill Claude CodeCodex

A guide to modeling a business area in Rust, including its entities, value objects, aggregates, repositories, and rules. Domain-driven design is an approach that keeps software concepts close to the business concepts they represent.

21 4d ago A 55 tokens

m10-performance

21

kikakkz/wait-agent

Skill Claude CodeCodex

A guide to finding and improving slow Rust code. It covers benchmarks, profiling, memory allocation, CPU caches, SIMD, and tools such as Criterion and flamegraphs.

21 4d ago A 49 tokens

m11-ecosystem

22

kikakkz/wait-agent

Skill Claude CodeCodex

Use when integrating crates or ecosystem questions. Keywords: E0425, E0433, E0603, crate, cargo, dependency, feature flag, workspace, which crate to use, using external C libraries, creating Python extensions, PyO3, wasm, WebAssembly, bindgen, cbindgen, napi-rs, cannot find, private, crate recommendation, best crate…

21 4d ago A 110 tokens

m12-lifecycle

23

kikakkz/wait-agent

Skill Claude CodeCodex

Use when designing resource lifecycles. Keywords: RAII, Drop, resource lifecycle, connection pool, lazy initialization, connection pool design, resource cleanup patterns, cleanup, scope, OnceCell, Lazy, oncecell, OnceLock, transaction, session management, when is Drop called, cleanup on error, guard pattern, scope…

21 4d ago A 94 tokens

m13-domain-error

24

kikakkz/wait-agent

Skill Claude CodeCodex

Use when designing domain error handling. Keywords: domain error, error categorization, recovery strategy, retry, fallback, domain error hierarchy, user-facing vs internal errors, error code design, circuit breaker, graceful degradation, resilience, error context, backoff, retry with backoff, error recovery, transient…

21 4d ago A 95 tokens