Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

coding-systems编码系统

Agent Skill

coding-systems 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

376

周安装

16

GitHub Stars

4

下载量

132
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:coding-systems(编码系统)
来源仓库:https://github.com/alphaonedev/openclaw-graph
仓库路径:skills/coding-systems
安装命令:
npx skills add https://github.com/alphaonedev/openclaw-graph --skill coding-systems
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill coding-systems

简介

coding-systems 支持 Rust、Nim、Go 和 C 的系统级编程,涵盖 FFI 和内存管理。

  • 适用于操作系统开发或高性能网络服务,避免高层 Web 应用。
  • 提供直接硬件访问能力,但需手动处理内存安全和错误传播。
  • 安装前请确认目标平台是否支持所选语言工具链。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

coding-systems

Purpose

This skill equips the AI to handle systems programming using Rust, Nim, Go, and C, focusing on low-level operations, memory safety, FFI (Foreign Function Interface), and performance-critical code. It combines these languages for tasks like OS development, embedded systems, and high-throughput applications.

When to Use

Use this skill for scenarios requiring direct hardware access, memory management, or inter-language calls, such as writing kernel modules, optimizing network servers, or integrating C libraries into modern languages. Avoid for high-level web apps; prefer when performance bottlenecks demand low-level control.

Key Capabilities

  • Rust: Enforces memory safety via ownership and borrowing; supports FFI with C using extern "C" blocks.
  • Nim: Offers metaprogramming and FFI via importc pragma; compiles to C for performance.
  • Go: Provides concurrency with goroutines and channels; uses cgo for FFI to C libraries.
  • C: Enables raw memory manipulation and OS interactions; use for performance-critical kernels.
  • Specific features: Rust's unsafe blocks for pointer arithmetic; Go's sync package for thread-safe operations; Nim's templates for code generation; C's mmap for direct memory mapping.

Usage Patterns

To accomplish tasks, structure code with language-specific patterns: Use Rust for safe wrappers around C code; employ Go for scalable concurrent systems; leverage Nim for rapid prototyping of C-like code; fall back to C for hardware-level optimizations. For FFI, always define interfaces first (e.g., in C headers), then bind in target languages. Pattern: Import C headers in Rust via #[link(name = "libc")]; in Go, use // #cgo LDFLAGS: -lmylib for linking.

Common Commands/API

  • Rust: Build with cargo build --release for optimized binaries; use std::ffi::c_void for FFI pointers. API example: extern "C" fn add(a: i32, b: i32) -> i32 {a + b}
  • Nim: Compile with nim c --cc:gcc -d:release myfile.nim; FFI via proc add(a: cint, b: cint): cint {.importc: "add", header: "myheader.h".}
  • Nim code snippet: proc add(a: cint, b: cint): cint {.importc.} echo add(1, 2) # Calls external C function
  • Go: Run go build -o myapp with cgo; API: import "C" for FFI. Example: C.add(C.int(1), C.int(2))
  • Go code snippet: import "C" func main() {println(int(C.add(1, 2)))}
  • C: Compile with gcc -O3 -o myprog myfile.c for optimizations; use #include <sys/mman.h> for OS APIs.
  • Config formats: Use Cargo.toml for Rust dependencies (e.g., [dependencies] libc = "0.2"); Go's go.mod for modules; Nim's.nimble for packages.

Integration Notes

Integrate by linking languages via FFI: For Rust-C, set build.rs to generate bindings with bindgen; in Go, use cgo directives like // #include "myheader.h". If API keys are needed (e.g., for external tools), set env vars like $RUST_ANALYZER_API_KEY. For cross-language projects, use CMake for unified builds: Add add_subdirectory(rust_project) in CMakeLists.txt. Always handle ABI compatibility; e.g., ensure C functions use __attribute__((visibility("default"))) for export.

Error Handling

In Rust, use Result<T, E> for fallible operations; check with match or ?. For Nim, use exceptions with try/except; e.g., try: raise newException(ValueError, "Error") except: echo "Handled". Go errors return as second values; check with if err!= nil {return err}. C uses errno; wrap with custom error codes. General pattern: Propagate errors up the call stack and log with details, e.g., in Rust: fn safe_add(a: i32) -> Result<i32, String> {if a < 0 {Err("Negative input".to_string())} else {Ok(a + 1)}}.

Concrete Usage Examples

  1. FFI Wrapper for C Library in Rust: To call a C function for memory allocation, first define the interface: Use extern "C" {fn malloc(size: usize) -> *mut u8;}. Then, in code: let ptr = unsafe {malloc(1024)}; if ptr.is_null() {panic!("Allocation failed");}. This pattern ensures safe memory handling in performance-critical apps.
  2. Concurrent Performance Task in Go: For a high-throughput server, use goroutines: go func() {for i:= 0; i < 100; i++ {fmt.Println(i)}}(); runtime.Gosched(). Integrate with C via cgo for low-level I/O, e.g., to read from a file descriptor, ensuring non-blocking operations for real-time systems.

Graph Relationships

  • Cluster: Related to "coding" cluster for general programming skills.
  • Tags: Connected via "systems", "low-level", "performance", "coding" to other skills like "ffi-handling" or "memory-management".
  • Embedding: Links to skills with similar vectors, such as "os-programming" based on "systems programming low level memory performance ffi os c rust nim go".

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.6%
按下载量换算46

Claude

32.64%
按下载量换算43

Cursor

18.15%
按下载量换算24

Gemini CLI

9.36%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills