Token导航 LogoToken导航TokenDH.com
开发规范需要联网github未标认证来源可访问clear审计未展示

numscript-guidelines数字指南

Agent Skill

numscript-guidelines 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 Codex、Claude、Cursor、Gemini CLI 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

734

周安装

30

GitHub Stars

公开资料未说明

下载量

235
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add direktly/agent-skills --skill "numscript-guidelines"

简介

numscript-guidelines 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 Codex、Claude、Cursor、Gemini CLI 中需要维护前端项目、生成组件或检查界面实现时使用。

  • 适用于发现并安装 AI 代理的技能。
  • 通过 github 安装,安装命令为 npx skills add direktly/agent-skills --skill "numscript-guidelines"。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
numscript-guidelines
description
Numscript is a Domain-Specific Language (DSL) designed to help you model complex financial transactions, replacing complex and error-prone custom code with easy-to-read, declarative scripts.

Overview

Numscript is a Domain-Specific Language (DSL) designed to help you model complex financial transactions, replacing complex and error-prone custom code with easy-to-read, declarative scripts.

Keywords: finance, accounting, transactions, modeling, scripting, numscript, dsl


Financial transactions

We define a financial transaction as a series of discrete value movements between abstract accounts. Each movement represents transfer of value from one account to another, with an associated amount and asset denomination.

Assets being transferred can represent any kind of value, from traditional currencies like USD or JPY to custom tokens or commodities.

Accounts involved in a transaction can represent anything, from a bank account to a voucher, a virtual wallet or an order that has yet to be paid out.

Design principles

Readability

The intent of a Numscript program should always be clear and easy to understand. Numscript programs should be readable by both developers and non-technical financial users, providing a shared, executable definition of money movements.

Correctness

Monetary computations in Numscript should always yield correct results, avoiding common currency rounding errors and accidental money creation or destruction. Execution is atomic, ensuring that either all modeled transactions are committed or none.

Finiteness

Numscript programs are deterministic, always terminating with a predictable output. This ensures that the behavior of Numscript programs can be reliably predicted and controlled.

These principles are the guiding light behind Numscript, and they are reflected in the design of the language itself. By using Numscript, you can model complex financial transactions in a way that is clear, accurate, and predictable

Example

Here is a simple transaction example of what a Numscript transaction can look like. We use multiple send statements, moving USD through a series of accounts, and splitting the final amount between a driver, a charity, and platform fees.

  send [USD/2 599] (
    source = @world
    destination = @payments:001
  )

  send [USD/2 599] (
    source = @payments:001
    destination = @rides:0234
  )

  send [USD/2 599] (
    source = @rides:0234
    destination = {
      85% to @drivers:042
      remaining to {
        10% to @charity
        remaining to @platform:fees
      }
    }
  )

Executed by the Numscript interpreter, the above script will result in the following transaction:

{
  "postings": [
      {
          "source": "world",
          "destination": "payments:001",
          "amount": 599,
          "asset": "USD/2"
      },
      {
          "source": "payments:001",
          "destination": "rides:0234",
          "amount": 599,
          "asset": "USD/2"
      },
      {
          "source": "rides:0234",
          "destination": "drivers:042",
          "amount": 510,
          "asset": "USD/2"
      },
      {
          "source": "rides:0234",
          "destination": "charity",
          "amount": 9,
          "asset": "USD/2"
      },
      {
          "source": "rides:0234",
          "destination": "platform:fees",
          "amount": 80,
          "asset": "USD/2"
      }
  ]
}

CLI

Install (CLI)

You can install the numscript cli with one of the following ways:

Using curl

For Mac and Unix:

curl -sSL https://numscript.io/install | sh

Using npm

For Node.js:

npm install -g numscript

Using golang toolchain

For Go:

go get github.com/direktly/numscript

Check

You can use the numscript check command to run static analysis on a numscript program. The static analysis includes parsing errors, wrong variables or types usage, as well as more advanced checks on numscript constructs.

You can use it this way:

numscript check my-file.num

The command will exit with an error status code if there is at least one error or warning.

Run

You can use the CLI to run local scripts (mostly intended for local prototyping).

For example, given this script:

vars {
  monetary $amt  
}

send $amt (
  source = @alice
  destination = @world
)

And this inputs file (which has to have the same name of the numscript file, plus the .inputs.json suffix):

{
  "variables": {
    "amt": "USD/2 100"
  },
  "balances": {
    "alice": { "USD/2": 9999 }
  }
}

You can run the file using:

numscript run my-script.num

You’ll see the postings:

Postings:
| Source | Destination | Asset | Amount |
| alice  | world       | USD/2 | 100    |

Test

You can use the numscript test to check that the specs given in a numscript specs format file are valid for a given numscript.

For example:

numscript test src/domain/numscript

This will look into all the src/domain/numscript folder to find all the <file>.num that have a corresponding <file>.num.specs.json specs file


Quick Reference

Full documentation: @reference

  • Program Structure (how a script is composed)
  • Send (postings, * balance sends — includes examples)
  • Sources (single, multiple, capped sources — includes examples)
  • Destinations (allocations, caps, nested blocks — includes examples)
  • Variables (vars block + JSON injection — includes examples)
  • UMN (safe monetary notation + examples table)
  • Rounding (remainder distribution behavior — includes examples)
  • Overdraft (missing funds and negative balances)
  • Save (saving intermediate amounts — includes examples)
  • Metadata (account and tx metadata helpers)
  • Numscript Specs Format (JSON test specs — includes examples)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

windsurf

26.62%
按下载量换算63

OpenCode

23.34%
按下载量换算55

Codex

17.96%
按下载量换算42

Claude Code

14.5%
按下载量换算34

Antigravity

8.34%
按下载量换算20

Gemini CLI

3.63%
按下载量换算9

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills