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

sync-cli-skillsync CLI 技能

Agent Skill

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

总安装

1,011

周安装

43

GitHub Stars

73

下载量

354
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

sync-cli-skill 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 适用于命令行工具集成、脚本自动化或终端环境配置等研究检索类任务场景。
  • 通过关键词、任务描述或来源线索触发检索,返回结构化候选信息供进一步核验。
  • 安装命令为 npx skills add https://github.com/base44/skills --skill sync-cli-skill。
  • 使用前建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。

SKILL.md

Sync CLI Skill

Synchronize the skills/base44-cli/ skill with the latest CLI source code from the Base44 CLI repository using git-based change detection.

Usage

When activated, this skill will ask for:

  1. CLI source folder path (required) - The local path to the Base44 CLI source code (must be a git repository)

How It Works

This skill uses git to efficiently detect changes:

  1. Reads the locally stored version from CLI_VERSION (e.g., v0.0.17)
  2. Compares against the CLI source repository to find changed command files
  3. Only processes commands that have actually changed

Steps

Step 1: Gather Input

Ask the user for the CLI source folder path using the AskQuestion tool if available, otherwise ask conversationally:

Required:

  • CLI source folder path (e.g., ~/projects/base44-cli or /Users/me/base44-cli)

If the user provided this in the initial prompt, use that value.

Step 2: Validate Source Folder and Discover Structure

  1. Check that the provided path exists and is a git repository (.git/ directory exists)
  2. Check for package.json with CLI-related content
  3. Discover the commands directory - look for directories containing command files:

- Common patterns: src/cli/commands/, src/commands/, commands/, lib/commands/ - Look for files with .command( or program.command patterns

  1. Identify the CLI source root - the parent directory containing both commands and shared code

Store these discovered paths for use in subsequent steps:

  • <commands-path>: Path to commands directory (e.g., src/cli/commands)
  • <cli-root>: Path to CLI source root (e.g., src/cli)

If validation fails or structure is unclear, ask the user to clarify.

Step 3: Read Local Version and Detect Changes

  1. Read the stored version from CLI_VERSION in the skills repository root (e.g., v0.0.17)
  2. Get changed command files using git in the CLI source folder: # From the CLI source folder, list command files changed since the stored version git diff --name-only <stored-version> HEAD -- <commands-path> If the stored version tag doesn't exist, fall back to: # List all command files if tag is missing git ls-files <commands-path>
  3. Get infrastructure changes (CLI source root excluding commands): # From the CLI source folder, list infra files changed since the stored version git diff --name-only <stored-version> HEAD -- <cli-root> | grep -v "<commands-path>"
  4. Present findings to the user before proceeding: Found X changed command files since vX.X.X: - <commands-path>/deploy.ts - <commands-path>/entities/push.ts - <commands-path>/auth/login.ts Found Y infrastructure changes (may affect all commands): - <cli-root>/utils/api-client.ts - <cli-root>/config/defaults.ts
  5. If no changes detected (neither commands nor infra): Report "No changes since version X" and exit

Step 4: Check Infrastructure Changes

Before processing individual commands, review any infrastructure changes that may affect all commands:

What to Look For

Review each changed non-command file and categorize by impact type:

Impact TypeWhat to look forDocumentation Action
API/Client changesBase URLs, endpoints, headers, request/response handlingMay affect multiple commands' behavior
Config/DefaultsDefault values, environment variables, config file pathsUpdate SKILL.md config section
AuthenticationToken handling, login flow, session managementUpdate auth-related references
Global optionsCLI-wide flags like --verbose, --json, --helpUpdate SKILL.md global options
Output formattingHow results are displayed, logging behaviorNote in affected command references
Types/InterfacesShared type definitionsUsually internal, but may indicate API changes
Error handlingExit codes, error messages, validationUpdate troubleshooting section
Dependenciespackage.json changesCheck for behavior-affecting updates

Note: The actual file structure varies by CLI. Discover the structure by examining the git diff output rather than assuming specific paths.

How to Handle Infra Changes

  1. Read each changed infra file to understand what changed
  2. Identify cross-cutting impacts:

- New global options → Update SKILL.md "Global Options" section - Changed defaults → Note in affected command references - Auth flow changes → Update auth-related references - New environment variables → Document in SKILL.md - API endpoint changes → May affect multiple commands

  1. Flag for SKILL.md update if the change affects:

- How users configure the CLI - Prerequisites or setup steps - Error messages users might see - Output format

Example Infrastructure Change

Changed file: (some config/defaults file)

Before:
  export const DEFAULT_TIMEOUT = 30000;

After:
  export const DEFAULT_TIMEOUT = 60000;

Impact: All commands now have 60s timeout instead of 30s
Action: Update SKILL.md "Configuration" or "Troubleshooting" section

Step 5: Process Each Changed Command

For each changed command file, perform the following steps:

Step 5a: Route Command to the Correct Skill

Commands are split across skills by concern. Before reading or updating a reference, determine which skill owns the command.

Known command routing:

CommandTarget SkillReason
logsskills/base44-troubleshooter/Troubleshooting / debugging concern
Everything elseskills/base44-cli/Project management concern

For new/unknown commands, reason about ownership based on the command's purpose:

ConcernTarget SkillExamples
Observability, debugging, diagnostics, monitoringskills/base44-troubleshooter/logs, monitor, status, health
Project setup, resource management, deployment, authskills/base44-cli/create, deploy, entities push, login

If a new command's purpose is ambiguous, read its source code and ask: "Would a developer use this to build/manage the app, or to investigate/debug it?" Route accordingly. When genuinely unclear, ask the user.

Use the target skill's references/ folder for reading and writing reference files, and update that skill's SKILL.md command table accordingly.

Step 5b: Read Existing Skill Reference

Read the corresponding reference file from the target skill's references/ folder:

skills/base44-cli/                      <- project management commands
├── SKILL.md
└── references/
    ├── auth-login.md      <- for <commands-path>/auth/login.ts
    ├── auth-logout.md
    ├── auth-whoami.md
    ├── create.md          <- for <commands-path>/create.ts
    ├── deploy.md
    ├── entities-create.md <- for <commands-path>/entities/create.ts
    ├── entities-push.md
    ├── functions-create.md
    ├── functions-deploy.md
    ├── rls-examples.md
    └── site-deploy.md

skills/base44-troubleshooter/           <- troubleshooting commands
├── SKILL.md
└── references/
    └── project-logs.md    <- for <commands-path>/logs.ts (or similar)

Mapping rule: <commands-path>/{parent}/{name}.tsreferences/{parent}-{name}.md

If no reference file exists for a new command, note it for creation in the appropriate skill.

Step 5c: Compare Source with Documentation

Compare the CLI source code with the existing skill documentation:

Extract from Source

Parse the command file to extract:

  • Command name and aliases
  • Description/help text
  • Available options and flags (name, alias, description, default, required, type)
  • Usage examples (if present)
  • Subcommands

Detect Changes

Identify differences:

Command-Level:

  1. New commands (source exists, no reference file)
  2. Changed command descriptions

Option/Argument-Level (CRITICAL): 3. New options added 4. Removed options 5. Changed option descriptions 6. Changed option defaults 7. Changed option types (e.g., string to boolean) 8. Changed required status 9. Changed option aliases (e.g., -f to -F) 10. Option converted to positional argument (e.g., create -n my-appcreate my-app) 11. Positional argument converted to option (e.g., create my-appcreate -n my-app)

Detecting Option ↔ Positional Changes:

Look for these patterns in Commander.js:

  • Named option: .option('-n, --name <value>', 'description') or .requiredOption(...)
  • Positional argument: .argument('<name>', 'description') or in command definition .command('create <name>')

When an option disappears but a positional argument with similar semantics appears (or vice versa), flag this as a breaking change that affects how users invoke the command.

Document the Comparison

Command: deploy (<commands-path>/deploy.ts)

Source options:
  --force (-f): Force deployment [boolean, default: false]
  --env <name>: Target environment [string, required]

Documented options (references/deploy.md):
  --force (-f): Force deploy without confirmation [boolean, default: false]
  --env <name>: Environment name [string, optional]

Changes detected:
  - --force: description changed
  - --env: required status changed (required vs optional)
Command: create (<commands-path>/create.ts)

Source (current):
  Positional: <name> - The app name [required]
  Options: --template (-t): Template to use [string, optional]

Documented (references/create.md):
  Options:
    -n, --name <name>: The app name [string, required]
    --template (-t): Template to use [string, optional]

Changes detected:
  - BREAKING: --name (-n) option converted to positional argument <name>
    Old syntax: npx base44 create -n my-app
    New syntax: npx base44 create my-app

Step 5d: Update Reference File

Update or create references/{command-name}.md with the following format:

# base44 {command}

{Description from source}

## Syntax

npx base44 {command} [options]


## Options

| Option | Description | Required |
| --- | --- | --- |
| `-o, --option <value>` | {description} | {yes/no} |

## Examples

{example usage from source}


## Notes

{Any important behavioral notes}

Step 6: Update Main Skill Files (if needed)

After processing all changed commands, update the SKILL.md of each affected skill:

For skills/base44-cli/SKILL.md (project management commands):

  1. Update the Available Commands tables if commands were added/removed
  2. Update Quick Start if workflow changed
  3. Update Common Workflows sections if relevant

For skills/base44-troubleshooter/SKILL.md (troubleshooting commands):

  1. Update the Available Commands table if troubleshooting commands were added/removed
  2. Update the Troubleshooting Flow if command behavior changed

General rules:

  • Keep the existing structure and formatting of each skill
  • Do NOT change the frontmatter description unless explicitly asked

Step 7: Update CLI_VERSION and Skill Frontmatter

After successfully updating all changed commands:

  1. Get the current version/commit from the CLI source:
   # Get latest tag, or HEAD commit if no tags
   git describe --tags --always
  1. Update CLI_VERSION in the skills repository root with the new version (e.g., v0.0.47)
  2. Update metadata.sourcePackage in skills/base44-cli/SKILL.md frontmatter. Set name to base44 (the npm package being synced) and version to the new version without the v prefix (e.g., 0.0.47). Example: metadata: sourcePackage: name: base44 version: 0.0.47 This allows the Base44 CLI to detect when installed skills are out of date.

Step 8: Present Summary

After all updates, present a summary to the user:

## Sync Summary

### Version Updated
- Previous: v0.0.17
- Current: v0.0.20

### Changed Command Files Processed
- <commands-path>/deploy.ts
- <commands-path>/entities/push.ts

### Infrastructure Changes Reviewed
- (list infra files from git diff output)
- Example: config.ts (timeout increased to 60s)
- Example: api-client.ts (no user-facing changes)

### Files Updated
- references/deploy.md (updated options)
- references/entities-push.md (updated description)
- SKILL.md (updated command table, added timeout note)
- CLI_VERSION (v0.0.17 → v0.0.20)
- skills/base44-cli/SKILL.md frontmatter metadata.sourcePackage.version (0.0.17 → 0.0.20)

### Breaking Changes (highlight prominently)
- `create`: `-n, --name` option converted to positional argument
  - Old: `npx base44 create -n my-app`
  - New: `npx base44 create my-app`

### Option Changes
- `deploy --env`: now required (was optional)
- `entities push --dry-run`: default changed from true to false

### New Commands
- (none)

### Removed Commands
- (none)

### Manual Review Recommended
- [List any changes that need verification]

Important Notes

  • Git-based detection: This skill relies on git tags/commits to detect changes. Ensure the CLI source folder is a valid git repository.
  • Preserve existing content: Don't remove detailed explanations, examples, or warnings unless they're outdated
  • Keep formatting consistent: Match the existing style of SKILL.md and reference files
  • Maintain progressive disclosure: Keep detailed docs in references, summaries in SKILL.md
  • Flag uncertainties: If source code is unclear, flag it for manual review
  • Respect RLS/FLS docs: The entities-create.md and rls-examples.md contain hand-written security documentation - update carefully

Troubleshooting

IssueSolution
Tag not found in CLI repoUse git tag -l to list available tags, or fall back to comparing with a commit hash
Infra changes not detectedCheck if shared code is in non-standard directories; adjust the git diff paths
Unsure if infra change affects usersLook for exports used by command files; if internal-only, note but skip documentation
Can't find command filesTry searching for .command( or program.command patterns
Options not detectedLook for .option( patterns in commander.js files
Positional args not detectedLook for .argument( or <argName> in .command('cmd <argName>') patterns
Option → positional change missedCompare old options list with new arguments list; if an option disappeared and a similar argument appeared, it's likely a conversion
Missing descriptionsCheck for description: properties or .description( calls
Subcommand structureCommands like entities push may be in entities/push.ts
Changed args not detectedCompare each option property: name, alias, description, default, required, type
No changes detected but expectedVerify the stored version in CLI_VERSION matches a valid git tag/commit

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.86%
按下载量换算120

Claude

29.87%
按下载量换算106

Cursor

17.14%
按下载量换算61

Gemini CLI

9.22%
按下载量换算33

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills