Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

knock-cliknock CLI 搜索

Agent Skill

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

总安装

1,758

周安装

74

GitHub Stars

公开资料未说明

下载量

616
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • knock-cli 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Knock CLI skill

This skill provides comprehensive guidelines for working with the Knock CLI to manage workflows, templates, and other notification resources.

Overview

The Knock CLI skill includes detailed rule sets covering:

  1. CLI installation and authentication - How to install and authenticate with the Knock CLI
  2. Knock directory structure - Understanding the knock directory layout and configuration
  3. CLI commands reference - Pull, push, and resource management commands
  4. Workflow templates - Structures, patterns, and best practices for workflows and templates
  5. Guides and message types - Working with in-app guides for lifecycle messaging and message types as their schema
  6. Partials - Reusable template building blocks for email design systems

How to use this skill

For initial setup

When setting up a new project with Knock:

  1. Start with installation and authentication (rules/cli-installation-authentication.md)

- Verify the CLI is installed - Authenticate with a service token or dashboard account - Initialize the project with knock init

  1. Understand the directory structure (rules/knock-directory-structure.md)

- Learn the knock.json configuration - Understand resource organization

For managing resources

When working with Knock resources:

  1. Use the CLI commands reference (rules/cli-commands-reference.md)

- Pull resources from Knock to your local project - Push changes back to Knock - Work with specific resource types

  1. Follow workflow and template guidelines (rules/workflow-templates.md)

- Understand template modes and structures - Avoid common mistakes with file paths and variables - Follow best practices for workflow modifications

For managing guides and message types

When working with in-app guides (banners, modals, announcements):

  1. Start with guides and message types (rules/guides-and-message-types.md)

- Understand that guides are separate from workflows (lifecycle messaging vs notifications) - Message types define the schema; guides reference them via schema_key and schema_variant_key - Use built-in types (banner, modal, card) when possible; create custom message types when needed

  1. Discover before creating

- Run knock message-type list to see available message type keys - Run knock guide list to see existing guides - Use exact keys from output when creating new guides

For working with partials

When building reusable email components (callouts, quote blocks, comment cards):

  1. Start with partials (rules/partials.md)

- Understand partial file structure and partial.json schema - Define input_schema for block editor fields (same format as message type variant fields) - Use visual_block_enabled: true for partials that appear in the email visual block editor

  1. Create and push

- Run knock partial new -k <key> -n "Name" -t html --force to scaffold - Add input_schema and edit content; validate and push with knock partial push <key>

For modifying workflows and templates

When making changes to workflows or templates:

  1. Always read before writing - Understand existing structure before modifying
  2. Use visual blocks for new emails - Always default to visual blocks mode; only use HTML mode if explicitly requested
  3. Use correct variable namespaces - data for trigger payload, vars for environment variables
  4. Verify file path references - Paths are relative to the file containing the reference
  5. Push after modifying - Local file changes are not synced to Knock until you push. Run knock workflow push <key> (or the equivalent for other resource types) for changes to take effect.

Rule files reference

  • rules/cli-installation-authentication.md - Installation and authentication setup
  • rules/knock-directory-structure.md - Directory structure and configuration
  • rules/cli-commands-reference.md - CLI commands for resource management
  • rules/workflow-templates.md - Workflow and template structures and best practices
  • rules/guides-and-message-types.md - Guides and message types for lifecycle messaging
  • rules/partials.md - Partials and reusable template building blocks

Quick reference

Common commands

# Initialize a new project (interactive; use --knock-dir to skip prompts)
knock init --knock-dir=./knock

# Pull all resources from Knock (--force skips confirmation prompts)
knock pull --all --force

# Pull a specific workflow
knock workflow pull <workflow-key> --force

# Push all resources to Knock (push never prompts)
knock push --all

# Push a specific workflow
knock workflow push <workflow-key>

# Push a specific email layout
knock email-layout push <layout-key>

# List channels (discover valid channel_key values before creating workflows)
knock channel list

# Guide and message type commands
knock message-type list          # Discover message type keys before creating guides
knock guide list                 # List existing guides
knock guide push <guide-key>     # Push a guide after modifying
knock message-type push <key>    # Push a message type after modifying

# Partial commands (email design system building blocks)
knock partial list               # List existing partials
knock partial new -k <key> -n "Name" -t html --force   # Create a new partial
knock partial pull <key> --force # Pull a partial from Knock
knock partial push <key>         # Push a partial after modifying
knock partial validate <key>     # Validate a partial locally

Key concepts

  • knockDir: The directory where Knock resources are stored (configured in knock.json)
  • Resource types: workflows, email-layouts, guides, message-types, translations, partials, commits
  • Guides vs workflows: Guides are for lifecycle messaging (banners, modals); workflows are for notifications
  • Template modes: Visual blocks (default for new emails) vs HTML (only when explicitly requested)
  • Variable namespaces: data (trigger payload), vars (environment variables), recipient, actor, tenant

Important patterns

  1. Use --force on commands with prompts - Many CLI commands (pull, commit, promote, activate) display interactive confirmation prompts. Always pass --force to skip them in automated/agent contexts.
  2. Push after every change - Local edits stay local until pushed. No push = no update in Knock.
  3. File path references use @ suffix: "content@": "visual_blocks/1.content.md"
  4. Paths are relative to containing file: Don't double the step directory
  5. Always use data. for trigger payload values, not vars.
  6. Read existing files before modifying to preserve structure
  7. Discover channel keys before creating workflows - Run knock channel list to get valid channel_key values
  8. Discover message type keys before creating guides - Run knock message-type list to get valid message type keys

Best practices summary

  1. Pull before editing - Sync latest changes before making modifications
  2. Push after modifying - Local changes are not persisted to Knock until explicitly pushed
  3. Read before writing - Understand existing structure to avoid data loss
  4. Use correct namespaces - data for dynamic payload, vars for environment constants
  5. Visual blocks by default - Use visual blocks for new emails; preserve existing mode when editing
  6. Verify paths - File references are relative to the containing file
  7. Test changes - Validate workflows after pushing changes

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.66%
按下载量换算226

Claude

30.67%
按下载量换算189

Cursor

16.55%
按下载量换算102

Gemini CLI

8.44%
按下载量换算52

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills