Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

r3bl-open-core

r3bl-open-core에는 r3bl-org에서 수집한 skills 20개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
20
Stars
475
업데이트
2026-07-05
Forks
32
직업 범위
직업 카테고리 3개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

check-code-quality
소프트웨어 품질 보증 분석가·테스터

Run comprehensive Rust code quality checks including compilation, linting, documentation, and tests. Use after completing code changes and before creating commits.

2026-07-05
remove-crate-prefix
소프트웨어 개발자

Enforce the "Clean Imports over Inline Absolute Paths" rule by removing inline crate:: prefixes and adding proper use statements.

2026-07-05
create-commit-message
소프트웨어 개발자

Rules and guidelines for creating well-formatted commit messages, including 72-char limits, scope prefixes, and trailer blocks for tasks, PR closing, and attribution.

2026-06-30
fast-string-allocations
소프트웨어 개발자

Zero-allocation string building strategies. Use when formatting strings, generating ANSI codes, or writing hot loops to avoid heap allocations and Formatter state machine overhead.

2026-06-30
run-clippy
소프트웨어 품질 보증 분석가·테스터

Run clippy linting, enforce comment punctuation rules, format code with cargo fmt, and verify module organization patterns. Use after code changes and before creating commits.

2026-06-30
write-structured-tracing
소프트웨어 개발자

Standard for writing structured tracing logs behind debug flags.

2026-06-30
review-pr
소프트웨어 품질 보증 분석가·테스터

Create a structured integration and review plan for a Pull Request

2026-06-26
organize-tests
소프트웨어 품질 보증 분석가·테스터

Organize tests by isolation requirements, adhering to PTY conventions and subprocess isolation patterns.

2026-06-25
create-pr
소프트웨어 개발자

Push local changes and create a GitHub Pull Request.

2026-06-18
fix-issue
소프트웨어 개발자

Guidelines for deeply exploring the problem space first and designing the best solution before implementing.

2026-06-18
merge-pr
소프트웨어 개발자

Workflow for rebasing and merging a local branch to main via a GitHub Pull Request.

2026-06-18
check-bounds-safety
소프트웨어 개발자

Apply type-safe bounds checking patterns using Index/Length types instead of usize. Use when working with arrays, buffers, cursors, viewports, or any code that handles indices and lengths.

2026-06-12
design-philosophy
소프트웨어 개발자

Core design principles for the codebase - cognitive load, progressive disclosure, type safety, abstraction worth. Use when designing APIs, modules, or data structures.

2026-06-12
write-documentation
소프트웨어 개발자

Write and format Rust documentation correctly. Apply proactively when writing code with rustdoc comments (//! or ///). Covers voice & tone, prose style (opening lines, explicit subjects, verb tense), structure (inverted pyramid), intra-doc links (crate:: paths, reference-style), constant conventions (binary/byte literal/decimal), and formatting (cargo rustdoc-fmt). Also use retroactively via /fix-intradoc-links, /fix-comments, or /fix-md-tables commands.

2026-06-12
analyze-log-files
네트워크·컴퓨터 시스템 관리자

Analyze log files by stripping ANSI escape sequences first. Use when asked to process, handle, read, or analyze log files that may contain terminal escape codes.

2026-06-03
analyze-performance
소프트웨어 개발자

Establish performance baselines and detect regressions using flamegraph analysis. Use when optimizing performance-critical code, investigating performance issues, or before creating commits with performance-sensitive changes.

2026-06-03
batch-refactor-with-sub-agents
소프트웨어 개발자

Use a sub-agent (like `generalist`) to perform repetitive code transformations across multiple files in a single turn.

2026-06-03
concurrency-safety
소프트웨어 개발자

Concurrency safety patterns for R3BL - Chain of Custody, Loud Lock Releases, and Ergonomic Atomics. Use when working with threads, locks, or atomics.

2026-06-03
organize-modules
소프트웨어 개발자

Apply private modules with public re-exports (barrel export) pattern for clean API design. Includes conditional visibility for docs and tests. Use when creating modules, organizing mod.rs files, or before creating commits.

2026-06-03
release-crate
소프트웨어 개발자

Publish a crate release to crates.io with changelog, git tag, and GitHub release. Use when releasing a new version of any workspace crate.

2026-06-03