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

skedulo-cliskedulo CLI 搜索

Agent Skill

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

总安装

165

周安装

7

GitHub Stars

公开资料未说明

下载量

58
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

  • 它支持基于关键词、任务场景或来源线索进行信息匹配,适用于研究检索类需求。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议核实权限范围、维护状态,以及是否涉及联网、命令执行或文件读写操作。
  • 该技能适用于需要高效信息聚合的场景,但需人工核验其实际行为与项目需求是否匹配。

SKILL.md

Skedulo CLI

Core Principle

Every tenant-scoped sked command MUST include -a <alias>. No alias in context? Ask the user. No exceptions.

Rules

Always use -a <alias>

Every sked command that supports -a MUST include it.

  1. Run <command> --help to confirm -a is supported
  2. If supported, include -a <alias> — always
  3. No alias in context? ASK the user — never guess, never omit

Why: Context compaction silently drops the alias, causing deploys to the wrong tenant.

Red flags — STOP and check for alias:

ThoughtReality
"I already know which tenant"Do you? Context may have compacted. Check.
"I'll add -a next time"Add it NOW. There is no next time after a bad deploy.
"It's probably the default""Probably" has caused hours of debugging. Always specify.
"I just ran a command with -a"That was then. Check you still have it.
"This is a quick one-off"One-off commands hit tenants too. Use -a.
"This is a list command, not a deploy"List commands are tenant-scoped too. Use -a.
"I checked --help earlier"Earlier knowledge may be stale. Check again if unsure.

Proactively use --help

Run <command> --help before guessing at flags. Works at every level: sked --help, sked artifacts --help, sked artifacts function list --help. Use it to confirm -a support (see "Always use -a" rule) and discover flags like --dryRun, --json, --verbose.

Use --json for read-only inspection

Use get --json to inspect artifacts — NOT get -o which downloads files into the repo. Only use -o when you intend to modify the artifact.

Use list + --json for discovery

Query the platform instead of asking the user. Pattern: sked artifacts <type> list --json -a <alias>. Use it to get function URLs, introspect schemas, check webhooks, etc. Be self-sufficient.

For field introspection: Use list to get ALL fields on an object in one call — do NOT use get for individual fields. The correct pattern:

  1. sked artifacts custom-object list --json -a <alias> — get exact object names
  2. sked artifacts custom-field list --objectName <ExactName> --json -a <alias> — get ALL fields at once

Never guess field names or fire parallel get calls for individual fields. list returns everything you need in one request.

Note: some artifact types return "not implemented" for list — fall back to get --json with a known name, or ask the user.

Handle errors correctly

Auth errors: Run sked tenant list to check token expiry. If expired: sked tenant login web -a <alias> (-a is optional but recommended to associate the login with an alias). Don't debug command syntax when it's an auth issue.

"Not Found" errors: Usually means wrong name/casing (e.g., Projects vs Project). List first to discover exact names: sked artifacts custom-object list --json -a <alias> before querying fields.

CLI errors include stack traces — ignore the stack, read the message field for the actual error. For deeper debugging: DEBUG=*skedulo* sked <command>.

Confirm before destructive operations

Always ask the user before:

  • Any delete command (data loss, cascade effects)
  • sked package register (irreversible — name cannot be changed; does NOT need -a)

Safety: Use --dryRun (-d) on package deploys. Prefer upsert (create and update are deprecated). Deleting Lookup fields cascades to Has-many relationships.

Look up artifact schemas from the examples repo before creating them

When creating or modifying any artifact, never guess the JSON schema.

  1. Clone https://github.com/skeduloDevelopers/SkeduloCLIExamples to /tmp/SkeduloCLIExamples (or git pull if already cloned)
  2. Read the relevant example files for the artifact type you're creating
  3. Use them as your template — adapt names/values but preserve the structure

This applies to all artifact types: custom-field, custom-object, function, webhook, triggered-action, horizon-page, horizon-template, web-extension, mobile-extension, public-page, user-role.

Why: Artifact schemas vary significantly by type and subtype. Custom fields differ by field type (Picklist needs picklistValues, Lookup needs referenceFields, etc.). Functions, webhooks, and triggered actions each have unique required properties. Guessing leads to failed deploys.

Never do this instead:

  • Don't construct artifact JSON from memory or from a single example of a different type
  • Don't fall back to direct REST API calls or GraphQL mutations as a workaround
  • Don't ask the user to create artifacts manually in the UI when the CLI can do it

The examples repo is the source of truth for artifact JSON schemas. Use it.

Artifact Model

Understand what each artifact IS before choosing which to modify. See cli-reference.md for full descriptions.

Key relationships:

  • horizon-page is just a pointer (name, slug, published flag) → to change the UI, update the horizon-template it references
  • horizon-template contains the actual UI code → this is what you modify to change a page
  • function artifact is metadata + source directory → deploy the JSON file, not the directory
  • triggered-action fires on data events and calls a URL (usually a function) → discover the function URL via list first
  • webhook defines a GraphQL subscription → the query field contains the subscription logic
  • custom-object defines the schema → custom-field defines individual fields on that object
  • web-extension is a bundled UI artifact deployed into the Skedulo web app

Artifact availability varies by tenant. Not all artifact types are enabled on every tenant — some may be in alpha/beta with limited rollout. If an artifact command fails unexpectedly, the type may not be enabled on that tenant. Check a different tenant or ask the user.

Quick Reference

TaskPattern
Upsert artifactsked artifacts <type> upsert -f <file> -a <alias>
Inspect artifactsked artifacts <type> get --name <Name> --json -a <alias>
List artifactssked artifacts <type> list --json -a <alias>
Deploy packagesked package deploy local -p <path> -a <alias>
Dry-run deployadd --dryRun to deploy command
Check authsked tenant list
Re-authsked tenant login web -a <alias>

Notes

  • Singular type names: sked artifacts function NOT functions. All types are singular: function, webhook, custom-field, custom-object, horizon-page, horizon-template, triggered-action, web-extension, mobile-extension, public-page, user-role. When unsure, run sked artifacts --help.
  • Async deploys: -w controls wait time (default 900s). Check output for status.
  • Identifiers: Most use --name; horizon-page uses --slug; custom-field needs --name + --objectName.
  • Full reference: See cli-reference.md for command syntax and artifact descriptions. For complete artifact JSON schemas, clone SkeduloCLIExamples (see "Look up artifact schemas" rule).

Common Mistakes

MistakeFix
Guessing artifact JSON schemasClone the examples repo. Never construct from memory
Falling back to REST API when CLI failsRead the error message first — usually wrong name/casing or expired auth
Omitting -a <alias> after context compactionAlways include it. Every command. No exceptions
Using get -o to inspect an artifactUse get --json. -o downloads files into your repo
Using create or update commandsDeprecated. Always use upsert

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.78%
按下载量换算18

Claude

30.72%
按下载量换算18

Cursor

18.46%
按下载量换算11

Gemini CLI

10.13%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills