Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

nimbunimbu 搜索

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

公开资料未说明

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nimbu/cli --skill nimbu

简介

nimbu 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索筛选等研究检索场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • nimbu 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Nimbu CLI

The nimbu binary is a Go CLI for the Nimbu CMS API.

Documentation

Refer to these for Liquid template syntax, theme structure, and cloud code APIs. This skill covers the CLI tool; the docs cover the platform concepts.

Prerequisites

Install via Homebrew (brew install nimbu/tap/nimbu), Go (go install github.com/nimbu/cli/cmd/nimbu-cli@latest), or download from GitHub Releases.

Authenticate before use:

nimbu auth login          # Interactive browser OAuth — stores token in OS keychain
nimbu auth status         # Verify current credentials
nimbu auth scopes         # List granted scopes

Or set NIMBU_TOKEN env var to skip the keychain.

Site Resolution

Commands that require a site resolve it in this order:

  1. --site flag
  2. NIMBU_SITE env var
  3. default_site in ~/.config/nimbu/config.json
  4. site field in nimbu.yml (project directory)

If none is found, the command fails with a clear error.

Output Modes

FlagFormatUse case
*(default)*Human-readable tableInteractive use
--jsonJSONAlways use for agents — structured, parseable
--plainTSVPiping to cut, awk, etc.

Env overrides: NIMBU_JSON=1, NIMBU_PLAIN=1.

Agent rule: always pass --json to get structured output.

Global Flags

FlagPurpose
--site <id>Site ID or subdomain
--locale <code>Filter by locale
--fields <list>Comma-separated fields to return
--sort <field>Sort, e.g. created_at:desc
--filters key=valFilter criteria (repeatable)
--include <rels>Include related resources
--forceSkip confirmations for destructive ops
--readonlyDisable all write operations
--no-inputNever prompt; fail instead (CI mode)
--no-progressDisable live progress UI
--verboseVerbose logging
--debugHTTP request/response traces

Safety

Use these to constrain agent access:

  • NIMBU_READONLY=1 — blocks all create/update/delete/copy/push operations
  • NIMBU_ENABLE_COMMANDS=channels,pages — allowlist of permitted command groups
  • NIMBU_NO_INPUT=1 — never prompt; fail instead (CI/agent mode)
  • --dry-run — available on copy and sync commands; shows what would happen without writing
  • --force — required for delete commands; without it, deletes fail

Inline Payload Syntax

Most create and update commands accept inline assignments:

SyntaxMeaning
key=valueString value
key:=jsonTyped JSON (number, bool, object, array, null)
key=@file.txtRaw file content as string
key:=@file.jsonParse JSON from file

Dot paths for nesting: seo.title="My Page".

--file and inline assignments are mutually exclusive.

# Inline
nimbu products update sku-123 name="Wine Box" price:=29.9 seo.title="Gift box"

# File payload
nimbu pages update about --file payload.json

Command Map

Content

CommandSubcommandsNotes
channelslist, get, info, diff, copy, fieldsSchema introspection via info
channels entrieslist, get, create, update, delete, count, copyEntry CRUD within a channel
pageslist, get, create, update, delete, count, copyFullpath as identifier
menuslist, get, create, update, delete, count, copyNested tree structure
blogslist, get, create, update, delete, count, copyHas posts subcommand
blogs postslist, get, create, update, delete, countBlog post CRUD
translationslist, get, create, update, delete, count, copyLocale shorthand support
notificationslist, get, create, update, delete, count, copy, pull, pushTemplate sync
mailspull, pushAlias for notifications sync commands

Commerce

CommandSubcommandsNotes
productslist, get, create, update, delete, count, copyProduct catalog
collectionslist, get, create, update, delete, count, copyProduct collections
couponslist, get, create, update, delete, count, copyDiscount coupons
orderslist, get, update, countNo create/delete — orders are read-only except status
customerslist, get, create, update, delete, count, copyCustomer records

Infrastructure

CommandSubcommandsNotes
themeslist, get, cdn-root, pull, push, sync, diff, copyTheme development
themes layoutslist, get, create, deleteLayout CRUD
themes templateslist, get, create, deleteTemplate CRUD
themes snippetslist, get, create, deleteSnippet CRUD
themes assetslist, get, create, deleteAsset CRUD
themes fileslist, get, create, deleteGeneric file CRUD
appslist, get, config, pushCloud code management
uploadslist, get, create, delete, countFile uploads
webhookslist, get, create, update, delete, countWebhook management
redirectslist, get, create, update, delete, copyURL redirects
roleslist, get, create, update, delete, count, copyPermission roles
accountslist, countAccount listing

Operations

CommandSubcommandsNotes
siteslist, get, current, count, settings, copySite management + full-site copy
authlogin, logout, status, scopes, token, keyringCredential management
server*(run directly)*Local simulator proxy + child dev server
init*(run directly)*Bootstrap theme project with TUI
configlist, get, set, unset, banner, pathCLI configuration
functionsrunExecute cloud functions
jobsrunExecute cloud jobs
apiget, post, put, patch, deleteRaw API access
completionbash, zsh, fishShell completions

Schema Discovery for Theme Development

When working on Nimbu themes or templates, use these commands to understand channel data structures:

# List all custom fields with types, flags, references, and select options
nimbu channels fields blog --json

# Get full channel schema including ACL, ordering, and dependency graph
nimbu channels get blog --json

# Generate a TypeScript interface from channel schema (works cross-site)
nimbu channels info blog --typescript
nimbu channels info staging/blog --typescript

channels fields --json returns an array of field definitions:

  • name — field key used in templates and entry data
  • type — field type (e.g., string, text, file, date, belongs_to, select, boolean, integer, float, geo)
  • label — human-readable label
  • required, unique, localized, encrypted — field flags
  • reference — target channel slug for relationship fields (belongs_to, has_many)
  • select_options — available options for select type fields
  • hint — field description/help text

Agent tip: Always run nimbu channels fields <channel> --json before working with channel data in templates. This gives you the exact field names and types to use.

Rich Resource Contracts

Three resource types have special contracts beyond standard CRUD:

Pages

  • Identifier: fullpath (e.g., about/team), not UUID
  • pages get <fullpath> --json returns full page document with nested items
  • pages get --download-assets DIR --json downloads file editables, rewrites to attachment_path
  • pages update <fullpath> --file page.json uses replace-safe patch semantics
  • pages update inline: only title, template, published, locale — deep edits need --file

Menus

  • Identifier: slug/handle
  • menus get <slug> --json returns full nested tree
  • menus update uses replace-safe patch for nested updates
  • menus update inline: only name, handle — deep edits need --file

Channels

  • channels get <slug> --json returns schema, customizations, ACL fields
  • channels info <slug> outputs TypeScript-friendly schema definition
  • channels diff --from <site> --to <site> compares channel configs

Gotchas

  1. Parent field on pages: Set parent to the fullpath string (e.g., "archive"), NOT an object ID. The API resolves parents by path. parent_path is ignored on write.
  2. Inline update limits: pages update and menus update inline assignments only accept shallow fields. For nested/deep edits, use --file with a full JSON payload.
  3. --file vs inline: Mutually exclusive. The CLI errors if both are provided.
  4. Delete requires --force: All delete commands fail without --force.
  5. Orders are read-only: No create or delete — only list, get, update (status), count.
  6. Translations locale shorthand: Bare locale keys like nl=text are rewritten to values.nl=text. Reserved keys (key, value, values, locale, url) are not rewritten.
  7. Theme sync excludes code/ and content/: These directories are intentionally not managed by themes push/sync.
  8. Copy commands use --from/--to refs: Format is site for site-level ops, site/channel for channel-level ops.

Common Workflows

List and filter channel entries

nimbu channels entries list blog --site my-site --json --sort created_at:desc

See references/channels-and-entries.md for copy, diff, and schema workflows.

Update a page with nested content

# Export, edit locally, re-upload
nimbu pages get about/team --download-assets tmp/assets --json > page.json
# ... edit page.json ...
nimbu pages update about/team --file page.json

See references/pages-menus-content.md for pages, menus, blogs, translations, and notification sync.

Push theme changes after build

nimbu themes push --build --all

See references/themes-and-local-dev.md for push/pull/sync/diff, local dev server, and cloud code.

Copy a site between environments

nimbu sites copy --from staging-site --to production-site --dry-run --json

See references/site-migration.md for full-site and per-resource copy workflows.

Set up local development

nimbu init                # Bootstrap nimbu.yml + theme structure
nimbu server              # Start proxy + child dev server

See references/themes-and-local-dev.md for dev server configuration.

Error Handling

In --json mode, errors emit a structured envelope to stderr:

{
  "status": "error",
  "error": {
    "code": "resource.not_found",
    "message": "page not found: about/missing",
    "hint": "",
    "exit_code": 5,
    "http_status": 404,
    "retryable": false
  }
}

Exit Codes

CodeMeaning
0Success
1General error
2Usage / invalid arguments
3Authentication failure
4Authorization / scope failure
5Resource not found
6Validation error
7Rate limit exceeded (retryable)
8Network error (retryable)

Canonical Error Codes

auth.not_logged_in, auth.unauthorized, auth.forbidden, auth.scope_missing, resource.not_found, resource.conflict, request.invalid, request.validation, rate_limit.exceeded, network.timeout, network.failure, server.error.

Check retryable: true before retrying failed requests.

Pagination

List commands support:

FlagPurpose
--allFetch all pages automatically
--page NSpecific page number
--per-page NItems per page

Default behavior returns the first page. Use --all --json for complete datasets.

Reference Files

FileCovers
channels-and-entries.mdChannel CRUD, entry CRUD, schema, info, copy, diff
pages-menus-content.mdPages, menus, blogs, translations, notifications
products-orders-customers.mdProducts, orders, customers, collections, coupons
themes-and-local-dev.mdTheme sync, local dev server, cloud code apps
site-migration.mdFull-site copy, per-resource copy, cross-API migration

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.73%
按下载量换算23

Claude

29.15%
按下载量换算19

Cursor

18.4%
按下载量换算12

Gemini CLI

11.06%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills