Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

miso-scripting味噌脚本

Agent Skill

miso-scripting 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

291

周安装

12

GitHub Stars

1

下载量

95
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ekkolyth/miso --skill miso-scripting

简介

miso-scripting 用于查找、检索和筛选相关信息。

  • 适合在自动化脚本中定位常用模式与函数封装方案。miso-scripting 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 npx 命令从指定仓库安装,需结合原始 README 了解模块结构。
  • 安装前应检查是否涉及外部进程调用或文件系统操作。
  • 建议核实来源仓库的脚本维护状态与错误处理机制。

SKILL.md

miso-scripting

Use this skill any time you need to create, organize, name, or debug scripts in a miso scripts/ folder.


Scripts Folder

By default, miso looks for scripts in ./scripts relative to miso.json. Override with the scripts field:

{ "scripts": "./tasks" }

Run miso scripts to list all discovered scripts in the current project.


Extension-Based Interpreter Dispatch

Miso selects the interpreter based on file extension:

ExtensionInterpreter
.shsh
.bashbash
.zshzsh
.js, .mjsnode
.tsts-node
.pypython3
.rbruby
.plperl
.lualua
.phpphp

Never add a shebang. Miso selects the interpreter from the file extension — the extension is how you control which interpreter runs your script. If a script does start with #!, that interpreter takes precedence, but this should never be necessary in miso.

The shell field in miso.json sets the fallback interpreter for scripts with no recognized extension and no shebang.

Shell scripts get -e by default. Miso automatically passes -e (exit on error) to sh, bash, zsh, and other shell interpreters. You do not need set -e (or set -euo pipefail) at the top of your scripts — miso handles this for you.


Invocation

miso <scriptname>       # runs scripts/<scriptname>.<ext>
miso build/docs         # runs scripts/build/docs.<ext>  (subdirectory)
miso <scriptname> --arg # passes --arg to the script

You don't need miso run — unlike npm, miso resolves scripts via miso <name> directly. miso run is supported for muscle memory but is not the intended form.


Resolution Order

When you run miso <command>, miso checks in this order:

  1. scripts/ folder (script file match)
  2. package.json scripts block
  3. Passthrough to the package manager

A script file in the scripts/ folder overrides a same-named package.json script. A scripts/install.sh file, for example, replaces miso install.


Subdirectory Organization

Scripts can be organized in subdirectories:

scripts/
  build/
    docs.sh
    api.sh
  test/
    unit.sh
    e2e.sh

Invoke with path syntax: miso build/docs, miso test/e2e.


Workspace-Scoped Scripts (Monorepos)

In a monorepo (repo: "mono"), run a script in a specific workspace using the @workspace/script syntax:

miso @api/build           # run "build" in the workspace identified as "api"
miso @myorg/api/test      # run "test" in the workspace with package name "@myorg/api"
miso @packages/web/dev    # run "dev" in the workspace at path "packages/web"
miso @api/test:unit       # run "test:unit" (colons are fine in script names)

The workspace identifier can be any of:

  • Directory basenameapi for a workspace at packages/api
  • Relative path from rootpackages/api
  • Package name — the name field in the workspace's package.json (e.g. @myorg/api)

If the identifier matches more than one workspace, miso will error and list the conflicting paths.

Miso resolves the script from that workspace's own scripts/ folder first, then falls back to its package.json scripts.


Common Mistakes

  • Missing file extensionscripts/build won't be discovered; must be scripts/build.sh (or another supported extension)
  • Using miso run scriptname — in miso, the correct form is miso scriptname (no run subcommand needed)
  • Adding chmod +x to scripts — never needed; miso always invokes the interpreter directly and passes the script as an argument, so the script file itself never needs to be executable
  • Adding set -e or set -euo pipefail — not needed; miso automatically passes -e to shell interpreters, so scripts already exit on error without any boilerplate
  • Adding a shebang — never needed; use the file extension to control which interpreter runs the script

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.25%
按下载量换算33

Claude

34.16%
按下载量换算32

Cursor

18.87%
按下载量换算18

Gemini CLI

9.49%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/ekkolyth/miso --skill miso-scripting 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills