Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

coding-julia编码朱莉娅

Agent Skill

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

总安装

399

周安装

16

GitHub Stars

4

下载量

129
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

coding-julia 利用多重分派与元编程实现高性能科学计算与 GPU 加速任务。

  • 适用于数值模拟、机器学习与大数据处理,集成 CUDA.jl 进行并行运算。
  • 支持类型稳定代码生成与包管理器 Pkg,提升原型开发速度与执行效率。
  • 使用前请安装 Julia 1.9+ 并配置 CUDA 驱动,确保硬件支持 GPU 计算。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

coding-julia

Purpose

This skill equips the AI to handle Julia programming tasks, focusing on high-performance scientific computing, data analysis, and GPU acceleration using features like multiple dispatch and metaprogramming.

When to Use

Use this skill for numerical simulations, data science workflows, GPU-accelerated computations, or when you need efficient type systems and package management. Apply it in scenarios requiring fast prototyping, such as machine learning models or large-scale data processing, especially with libraries like CUDA.jl.

Key Capabilities

  • Multiple dispatch: Define functions that behave differently based on argument types, e.g., for optimized numerical operations.
  • Type system: Leverage parametric types and unions for type-safe code, reducing errors in scientific applications.
  • Metaprogramming: Use macros to generate code at runtime, like @time for performance profiling.
  • Pkg: Manage dependencies with a built-in package manager for easy installation and versioning.
  • Scientific computing: Integrate with libraries for linear algebra (e.g., LinearAlgebra.jl) and optimization.
  • GPU support: Utilize CUDA.jl for parallel computing on NVIDIA GPUs, enabling high-throughput tasks.

Usage Patterns

To accomplish tasks, invoke Julia via the REPL or scripts. For interactive sessions, start with julia in the terminal. Use project environments for isolation: create one with julia --project=. and activate via using Pkg; Pkg.activate("."). For metaprogramming, define macros to automate repetitive code. When handling data, load packages first, e.g., using DataFrames for tabular data, then perform operations in a loop or function. Always specify types for performance, like function compute(x::Float64)... end.

Common Commands/API

  • Package management: Use using Pkg; Pkg.add("CUDA") to install CUDA.jl; remove with Pkg.rm("CUDA").
  • REPL commands: Enter interactive mode with julia, then use ?function_name for help; exit with Ctrl+D.
  • CLI flags: Run scripts with julia --project=env_name script.jl to use a specific environment; add -O3 for optimization.
  • API examples: For multiple dispatch, write: function add(a::Int, b::Int) return a + b end; add(1, 2) # Returns 3.
  • Code snippets: Matrix operations: using LinearAlgebra; A = rand(3,3); eigenvalues = eigen(A).values.
  • Config formats: Edit Project.toml for dependencies, e.g., add [deps] CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"; use Manifest.toml for exact versions.

Integration Notes

Integrate Julia into projects by embedding it in Jupyter notebooks via IJulia.jl: first, install with using Pkg; Pkg.add("IJulia"), then launch with julia -i -e 'using IJulia; notebook()' from the terminal. For external tools, link Julia with C libraries using ccall, e.g., ccall((:function_name, "libname"), ReturnType, (ArgTypes,), args...). If using GPU, ensure CUDA drivers are installed and set the environment variable for paths, like $CUDA_PATH=/usr/local/cuda. For web services, pass API keys via env vars, e.g., ENV["API_KEY"] = $SERVICE_API_KEY before making requests with HTTP.jl.

Error Handling

To handle errors, use try-catch blocks: try; risky_operation(); catch e; println("Error: ", e) end. Check assertions with @assert condition "Message", which throws an error if false. For package issues, run Pkg.status() to verify dependencies; resolve conflicts by updating with Pkg.update(). In GPU code, check CUDA errors via CUDA.device_synchronize() after kernel launches. Always log errors for debugging, e.g., use Logging.jl: using Logging; @info "Starting computation".

Usage Examples

  1. Matrix Multiplication with Multiple Dispatch: To compute matrix products efficiently, use: function multiply(A::Matrix, B::Matrix) return A * B end; A = rand(1000,1000); result = multiply(A, A) # Handles large arrays via dispatch.
  2. GPU-Accelerated Computation: For parallel summing on GPU, first add CUDA.jl: using Pkg; Pkg.add("CUDA"); using CUDA; d_a = CuArray([1,2,3]); result = sum(d_a) # Offloads to GPU for speed.

Graph Relationships

  • Related to: coding-python (shares scientific computing tools like NumPy equivalents), coding-r (common in data science pipelines).
  • Linked via tags: julia (direct match), scientific (connects to data-science skills), data-science (overlaps with coding-r and coding-python), coding (cluster relation to all coding-* skills).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.83%
按下载量换算45

Claude

28.89%
按下载量换算37

Cursor

18.72%
按下载量换算24

Gemini CLI

8.21%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills