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

miso-config味噌配置

Agent Skill

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

总安装

282

周安装

12

GitHub Stars

1

下载量

99
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

  • 适合在配置管理中定位模板与参数组合方案。miso-config 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 npx 命令从指定仓库安装,需结合原始 README 了解配置语法。
  • 安装前应检查是否涉及敏感参数或环境变量访问。
  • 建议核实来源仓库的配置示例与多环境适配能力。

SKILL.md

miso-config

Use this skill any time you need to create or modify miso.json.


miso.json Field Reference

$schema

Type: string Default: not set

IDE autocomplete URL. Always use:

"$schema": "https://misojs.dev/miso.schema.json"

packageManager

Type: boolean Default: true

true — miso wraps your package manager (npm, bun, pnpm, yarn). Detects lockfile automatically. false — simple mode. No package manager. miso run <script> resolves only from the scripts/ folder. See miso-scripting for script conventions and miso-env for env injection.


scripts

Type: string Default: "./scripts"

NOT an object. Unlike package.json, the scripts field in miso.json is a path string pointing to a folder — not a map of command names to shell strings. Scripts are files inside that folder, not inline strings.

Path to the folder containing your runnable scripts. Can be relative or absolute. Can be omitted if your scripts live in ./scripts (the default).

"scripts": "./tasks"

shell

Type: string Default: "sh"

Fallback interpreter used when a script has no shebang and no recognized extension.

"shell": "bash"

repo

Type: "single" | "mono" | "turbo" | "nx" | object Default: "single"

Controls monorepo orchestration:

  • "single" — one project, no workspace awareness
  • "mono" — miso-native orchestration; requires workspaces array in root package.json
  • "turbo" — delegates to Turborepo; parses output into TUI tabs
  • "nx" — delegates to Nx (nx run-many --target=<script>); parses output into TUI tabs
  • Object form: {"mode": "turbo", "tasks": {...}} — use when you need tasks config. mode is optional in object form (defaults to "single" if omitted). Write {"tasks": {...}} when you want task config in a standard single project.

Orchestration Override (turbo/nx mode)

When repo.mode is "turbo" or "nx", miso uses a task-by-task routing rule:

Task is listed in repo.tasks?What happens when you run miso <task>?
YesMiso takes over: launches the TUI directly with miso-native orchestration
NoMiso delegates: runs turbo run <task> (or nx run-many) as normal

This is how you make miso control a specific task instead of delegating to turbo.

Example: You use Turborepo but want miso dev to launch with miso's TUI (not turbo's output), while still using turbo for build and lint:

{
  "repo": {
    "mode": "turbo",
    "tasks": {
      "dev": {
        "concurrent": ["studio"]
      }
    }
  },
  "tui": "tabbed"
}

What happens:

  • miso dev → miso discovers workspaces, launches dev + studio in TUI tabs directly
  • miso build → delegates to turbo run build
  • miso lint → delegates to turbo run lint

To override a task without any extra config, an empty object is enough:

"tasks": {
  "dev": {}
}

See miso-tui for the full concurrent and dependsOn reference.


tui

Type: "off" | "tabbed" | "merged" | object Default: "off"

Multi-process TUI display mode:

  • "off" — standard output, no TUI
  • "tabbed" — sidebar with per-process log panes, arrow key navigation, r to restart
  • "merged" — interleaved output with color-coded process labels and filter bar
  • Object form: {"mode": "tabbed", "cleanExit": true}

See miso-tui for full TUI configuration including concurrent tasks and task ordering.


flags

Type: object — keys are command names, values are string arrays Default: {}

Persistent flags injected into specific commands. Useful for CI or project-wide defaults.

"flags": {
  "install": ["--frozen-lockfile"],
  "dev": ["--turbo"]
}

env

Type: object | array Default: not set (auto-discovery mode)

Env file paths and validation rules. When not set, miso auto-discovers .env.local.env.production.env.development.env (first found per variable).

See miso-env for full env configuration including variable types and validation.


Annotated Examples

Minimal config (simple mode project)

{
  "$schema": "https://misojs.dev/miso.schema.json",
  "packageManager": false
}

Full config (monorepo with TUI and env validation)

{
  "$schema": "https://misojs.dev/miso.schema.json",
  "packageManager": true,
  "scripts": "./scripts",
  "shell": "bash",
  "repo": {
    "mode": "turbo",
    "tasks": {
      "dev": {
        "concurrent": ["studio"]
      }
    }
  },
  "tui": "tabbed",
  "flags": {
    "install": ["--frozen-lockfile"]
  },
  "env": [
    {
      "path": ".env.local",
      "required": "all",
      "variables": {
        "DATABASE_URL": "url",
        "PORT": "port",
        "NODE_ENV": { "type": "enum", "values": ["development", "production", "test"] }
      }
    }
  ]
}

Common Mistakes

  • "package-manager" (hyphenated) — the field is "packageManager" (camelCase)
  • repo: "mono" without workspaces — miso reads workspaces from root package.json to discover workspace directories; if it's missing, mono mode won't find any workspaces
  • tui inside repotui is a top-level field, not nested under repo
  • String flags"flags": {"install": "--frozen-lockfile"} is wrong; must be an array: ["--frozen-lockfile"]
  • "scripts" as an object"scripts": {"build": "tsc"} is invalid; scripts is a path string like "./scripts". Inline script strings go in package.json. Miso discovers runnable files from the folder at that path.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.06%
按下载量换算36

Claude

30.38%
按下载量换算30

Cursor

20.18%
按下载量换算20

Gemini CLI

9.11%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills