Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计异常

akashakash 命令行

Agent Skill

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

总安装

269

周安装

11

GitHub Stars

3

下载量

87
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/akash-network/akash-skill --skill akash

简介

akash 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 适用于 Akash Network 相关操作,包括 SDL 生成、部署与管理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和是否触发联网或文件读写。
  • 建议在使用前检查维护状态,避免依赖不稳定或已废弃的技能实现。
  • akash 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Akash Network Skill

Comprehensive skill for working with the Akash Network - the decentralized cloud computing marketplace.

Capabilities

This skill covers all aspects of the Akash Network:

AreaDescription
SDL GenerationCreate valid Stack Definition Language configurations
DeploymentsDeploy via CLI, Console API, or SDKs
Provider OperationsSet up and manage Akash providers
Node OperationsRun full nodes and validators
SDK IntegrationTypeScript and Go SDK usage

Critical Rules

NEVER use :latest or omit image tags. Always specify explicit version tags for reproducible deployments.

# CORRECT
image: nginx:1.25.3
image: node:20-alpine
image: postgres:16

# WRONG - will cause deployment issues
image: nginx:latest
image: nginx          # implies :latest

Quick Reference

SDL Structure

Every SDL file has four required sections:

version: "2.0"  # or "2.1" for IP endpoints

services:       # Container definitions
profiles:       # Compute resources & placement
deployment:     # Service-to-profile mapping

Optional section for IP endpoints:

endpoints:      # IP lease endpoints (requires version 2.1)

Minimal SDL Template

version: "2.0"

services:
  web:
    image: nginx:1.25.3
    expose:
      - port: 80
        as: 80
        to:
          - global: true

profiles:
  compute:
    web:
      resources:
        cpu:
          units: 0.5
        memory:
          size: 512Mi
        storage:
          size: 1Gi
  placement:
    dcloud:
      pricing:
        web:
          denom: uakt
          amount: 1000

deployment:
  web:
    dcloud:
      profile: web
      count: 1

Documentation Structure

Core Concepts

  • @overview.md - Akash Network introduction and architecture
  • @terminology.md - Key terms (lease, bid, dseq, gseq, oseq)
  • @pricing.md - Payment with uakt, USDC, IBC denoms

SDL Configuration

  • @sdl/schema-overview.md - Version requirements and SDL structure
  • @sdl/services.md - Service configuration (image, expose, env, credentials)
  • @sdl/compute-resources.md - CPU, memory, storage, and GPU specifications
  • @sdl/placement-pricing.md - Provider selection and pricing (uakt/USDC)
  • @sdl/deployment.md - Service-to-profile mapping
  • @sdl/endpoints.md - IP endpoint configuration (v2.1)
  • @sdl/validation-rules.md - All constraints and validation rules

SDL Examples

  • @sdl/examples/web-app.md - Simple web deployment
  • @sdl/examples/wordpress-db.md - Multi-service with persistent storage
  • @sdl/examples/gpu-workload.md - GPU deployment with NVIDIA
  • @sdl/examples/ip-lease.md - IP endpoint configuration

Deployment Methods

  • @deploy/overview.md - Comparison of deployment options
  • @deploy/cli/ - Akash CLI installation and usage
  • @deploy/console-api/ - Console API for programmatic deployments
  • @deploy/certificates/ - Authentication methods (JWT, mTLS)

SDK Documentation

  • @sdk/overview.md - SDK comparison and selection
  • @sdk/typescript/ - TypeScript SDK for web and Node.js
  • @sdk/go/ - Go SDK for backend services

AuthZ (Delegated Permissions)

  • @authz/ - Fee grants and deployment authorization

Provider Operations

  • @provider/overview.md - Provider requirements and setup
  • @provider/setup/ - Kubernetes and provider installation
  • @provider/configuration/ - Attributes, pricing, bid engine
  • @provider/operations/ - Monitoring and troubleshooting

Node Operations

  • @node/overview.md - Running Akash nodes
  • @node/full-node/ - Full node setup and state sync
  • @node/validator/ - Validator operations and security

Reference

  • @reference/storage-classes.md - beta2, beta3, ram storage
  • @reference/gpu-models.md - Supported NVIDIA GPUs
  • @reference/ibc-denoms.md - Payment denominations
  • @reference/rpc-endpoints.md - Public RPC endpoints

Common Patterns

Environment Variables

services:
  app:
    env:
      - "DATABASE_URL=postgres://..."
      - "NODE_ENV=production"

Persistent Storage

profiles:
  compute:
    app:
      resources:
        storage:
          - size: 10Gi
            attributes:
              persistent: true
              class: beta2

GPU Workloads

profiles:
  compute:
    ml:
      resources:
        gpu:
          units: 1
          attributes:
            vendor:
              nvidia:
                - model: a100

Payment Options

  • uakt: Native Akash Token (e.g., amount: 1000)
  • USDC: Via IBC denom (e.g., denom: ibc/170C677610AC31DF0904FFE09CD3B5C657492170E7E52372E48756B71E56F2F1)

Additional Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.13%
按下载量换算31

Claude

28.93%
按下载量换算25

Cursor

17.58%
按下载量换算15

Gemini CLI

8.84%
按下载量换算8

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills